Skip to content

Commit c199135

Browse files
committed
minot fix and docu for last changes
1 parent 46dd40a commit c199135

2 files changed

Lines changed: 14 additions & 8 deletions

File tree

src/changes/changes.xml

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

99
<body>
1010
<release version="5.0.0" date="April 01, 2026" description="jdk17, Bugfixes">
11+
<action type="add" dev="RhinoTeam">
12+
Add delete support to DOMStringMap.
13+
</action>
14+
<action type="update" dev="RhinoTeam">
15+
Remove direct dependency to ScriptableObject from DOMStringMap and improve get/set impl.
16+
</action>
1117
<action type="add" dev="RhinoTeam">
1218
core-js: migrate NativeDate away from IdScriptable.
1319
</action>

src/test/java/org/htmlunit/javascript/host/dom/DOMStringMapTest.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ public void get() throws Exception {
5757
@Alerts({"heho", "ReferenceError", "world is not defined",
5858
"ReferenceError", "World is not defined"})
5959
@HtmlUnitNYI(
60-
CHROME = {"heho", "ReferenceError", "\"world\" is not defined",
61-
"ReferenceError", "\"World\" is not defined"},
62-
EDGE = {"heho", "ReferenceError", "\"world\" is not defined",
63-
"ReferenceError", "\"World\" is not defined"},
64-
FF = {"heho", "ReferenceError", "\"world\" is not defined",
65-
"ReferenceError", "\"World\" is not defined"},
66-
FF_ESR = {"heho", "ReferenceError", "\"world\" is not defined",
67-
"ReferenceError", "\"World\" is not defined"})
60+
CHROME = {"heho", "ReferenceError", "\"world\" is not defined.",
61+
"ReferenceError", "\"World\" is not defined."},
62+
EDGE = {"heho", "ReferenceError", "\"world\" is not defined.",
63+
"ReferenceError", "\"World\" is not defined."},
64+
FF = {"heho", "ReferenceError", "\"world\" is not defined.",
65+
"ReferenceError", "\"World\" is not defined."},
66+
FF_ESR = {"heho", "ReferenceError", "\"world\" is not defined.",
67+
"ReferenceError", "\"World\" is not defined."})
6868
public void getInvalidName() throws Exception {
6969
final String html = DOCTYPE_HTML
7070
+ "<html><head>\n"

0 commit comments

Comments
 (0)