Skip to content

Commit ec04855

Browse files
committed
Chrome/Edge 135, FF 137
1 parent 0938f8a commit ec04855

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@ public void svg() throws Exception {
13791379
* @throws Exception if the test fails
13801380
*/
13811381
@Test
1382-
@Alerts({"3", "2", "2", "3", "3", "2"})
1382+
@Alerts({"1", "0", "1", "1", "0", "1"})
13831383
public void table() throws Exception {
13841384
loadPageVerifyTitle2(test("table"));
13851385
}

src/test/java/org/htmlunit/javascript/host/html/HTMLElement2Test.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ public void offsetTopAndLeft_Nothing() throws Exception {
328328
* @throws Exception if an error occurs
329329
*/
330330
@Test
331-
@Alerts({"50", "50"})
331+
@Alerts({"8", "8"})
332332
public void offsetTopAndLeft_AbsolutelyPositioned() throws Exception {
333333
final String html = DOCTYPE_HTML
334334
+ "<html>\n"
@@ -558,7 +558,9 @@ public void offsetTopAndLeftWithRelativePosition() throws Exception {
558558
* @throws Exception if an error occurs
559559
*/
560560
@Test
561-
@Alerts({"30px", "46", "55px", "71", "71", "0", "0", "0", "0"})
561+
@Alerts(DEFAULT = {"", "1240", "", "34", "34", "0", "0", "0", "0"},
562+
EDGE = {"", "1232", "", "34", "34", "0", "0", "0", "0"},
563+
FF_ESR = {"", "1244", "", "34", "34", "0", "0", "0", "0"})
562564
public void offsetWidthAndHeight() throws Exception {
563565
final String html = DOCTYPE_HTML
564566
+ "<html><head>\n"

0 commit comments

Comments
 (0)