Skip to content

Commit 90846ba

Browse files
committed
build the correct error
1 parent 874e470 commit 90846ba

File tree

5 files changed

+110
-101
lines changed

5 files changed

+110
-101
lines changed

src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14989,8 +14989,8 @@ public void pointerEvent2() throws Exception {
1498914989
EDGE = "constructor(),deltaMode[GCE],deltaX[GCE],deltaY[GCE],deltaZ[GCE],DOM_DELTA_LINE[E],"
1499014990
+ "DOM_DELTA_PAGE[E],DOM_DELTA_PIXEL[E],wheelDelta[GCE],wheelDeltaX[GCE],"
1499114991
+ "wheelDeltaY[GCE]",
14992-
FF = "NotSupportedError",
14993-
FF_ESR = "NotSupportedError")
14992+
FF = "NotSupportedError/DOMException",
14993+
FF_ESR = "NotSupportedError/DOMException")
1499414994
@HtmlUnitNYI(CHROME = "constructor(),DOM_DELTA_LINE[E],DOM_DELTA_PAGE[E],DOM_DELTA_PIXEL[E]",
1499514995
EDGE = "constructor(),DOM_DELTA_LINE[E],DOM_DELTA_PAGE[E],DOM_DELTA_PIXEL[E]")
1499614996
public void wheelEvent() throws Exception {
@@ -15391,10 +15391,10 @@ public void slot() throws Exception {
1539115391
+ "scrollingElement[GCE],selectedStyleSheetSet[GSCE],styleSheets[GCE],styleSheetSets[GCE],"
1539215392
+ "timeline[GCE],title[GSCE],URL[GCE],visibilityState[GCE],vlinkColor[GSCE],write(),"
1539315393
+ "writeln()")
15394-
@HtmlUnitNYI(CHROME = "InternalError",
15395-
EDGE = "InternalError",
15396-
FF_ESR = "InternalError",
15397-
FF = "InternalError")
15394+
@HtmlUnitNYI(CHROME = "InternalError/InternalError",
15395+
EDGE = "InternalError/InternalError",
15396+
FF_ESR = "InternalError/InternalError",
15397+
FF = "InternalError/InternalError")
1539815398
public void document() throws Exception {
1539915399
testString("", "new Document()");
1540015400
}

src/test/java/org/htmlunit/general/ElementOwnPropertySymbolsTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2269,8 +2269,8 @@ public void pointerEvent2() throws Exception {
22692269
*/
22702270
@Test
22712271
@Alerts(DEFAULT = "Symbol(Symbol.toStringTag) [C] [WheelEvent]",
2272-
FF = "NotSupportedError",
2273-
FF_ESR = "NotSupportedError")
2272+
FF = "NotSupportedError/DOMException",
2273+
FF_ESR = "NotSupportedError/DOMException")
22742274
public void wheelEvent() throws Exception {
22752275
testString("", "document.createEvent('WheelEvent')");
22762276
}
@@ -2394,10 +2394,10 @@ public void slot() throws Exception {
23942394
FF_ESR = "Symbol(Symbol.toStringTag) [C] [Document],"
23952395
+ "Symbol(Symbol.unscopables) [C] [{\"fullscreen\":true,\"prepend\":true,"
23962396
+ "\"append\":true,\"replaceChildren\":true}]")
2397-
@HtmlUnitNYI(CHROME = "InternalError",
2398-
EDGE = "InternalError",
2399-
FF = "InternalError",
2400-
FF_ESR = "InternalError")
2397+
@HtmlUnitNYI(CHROME = "InternalError/InternalError",
2398+
EDGE = "InternalError/InternalError",
2399+
FF = "InternalError/InternalError",
2400+
FF_ESR = "InternalError/InternalError")
24012401
public void document() throws Exception {
24022402
testString("", "new Document()");
24032403
}

0 commit comments

Comments
 (0)