Skip to content

Commit d68d518

Browse files
committed
document last fix
1 parent 05ca314 commit d68d518

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

src/changes/changes.xml

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

99
<body>
1010
<release version="5.0.0" date="April 31, 2026" description="jdk17, Bugfixes">
11+
<action type="update" dev="rbri">
12+
cssparser: support for unicode characters in keywords removed, this is not used in real world
13+
and the parser is much simpler without
14+
</action>
1115
<action type="update" dev="Lai Quang Duong">
1216
core-js: Make NativeDate.toLocaleString() behave more like real browsers.
1317
</action>

src/main/java/org/htmlunit/html/DomNode.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
* @author Ronald Brill
7878
* @author Chuck Dumont
7979
* @author Frank Danek
80+
* @author Lai Quang Duong
8081
*/
8182
public abstract class DomNode implements Cloneable, Serializable, Node {
8283

src/test/java/org/htmlunit/html/DomNode2Test.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* @author Chris Erskine
2525
* @author Ahmed Ashour
2626
* @author Ronald Brill
27+
* @author Lai Quang Duong
2728
*/
2829
public class DomNode2Test extends WebDriverTestCase {
2930

@@ -34,7 +35,7 @@ public class DomNode2Test extends WebDriverTestCase {
3435
*/
3536
@Test
3637
@Alerts({"HierarchyRequestError/DOMException", "0"})
37-
public void appendChild_recursive() throws Exception {
38+
public void apendChild_recursive() throws Exception {
3839
final String html = DOCTYPE_HTML
3940
+ "<html><head>\n"
4041
+ "<script>\n"

0 commit comments

Comments
 (0)