Skip to content

Commit 499b672

Browse files
committed
document last changes and migrate the test to webdriver test case
1 parent 10aa7e6 commit 499b672

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

src/changes/changes.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
<body>
1010
<release version="5.0.0" date="April 01, 2026" description="jdk17, Bugfixes">
11+
<action type="add" dev="Lai Quang Duong">
12+
FileReader: fire ProgressEvent and add missing event handlers
13+
</action>
1114
<action type="fix" dev="Lai Quang Duong">
1215
HtmlInputElement's of type email/url/date/time have to fire the input event.
1316
</action>

src/main/java/org/htmlunit/javascript/host/event/ProgressEvent.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* @author Ahmed Ashour
2727
* @author Ronald Brill
2828
* @author Thorsten Wendelmuth
29+
* @author Lai Quang Duong
2930
*/
3031
@JsxClass
3132
public class ProgressEvent extends Event {

src/main/java/org/htmlunit/javascript/host/file/FileReader.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
*
4747
* @author Ahmed Ashour
4848
* @author Ronald Brill
49+
* @author Lai Quang Duong
4950
*/
5051
@JsxClass
5152
public class FileReader extends EventTarget {

src/test/java/org/htmlunit/javascript/host/file/FileReaderTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
*
3131
* @author Ronald Brill
3232
* @author Ahmed Ashour
33+
* @author Lai Quang Duong
3334
*/
3435
public class FileReaderTest extends WebDriverTestCase {
3536

0 commit comments

Comments
 (0)