Skip to content

Commit 7ec6d5a

Browse files
committed
Chrome/Edge 141, Firefox 143, FirefoxESR 140
1 parent e3802cf commit 7ec6d5a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,6 @@ public void dontReloadHashBang2() throws Exception {
598598
*/
599599
@Test
600600
@Alerts({"click", "href", "click", "doubleClick", "href"})
601-
@BuggyWebDriver(FF_ESR = {"click", "click", "doubleClick", "href", "href"})
602601
@HtmlUnitNYI(CHROME = {"click", "href", "click", "href", "doubleClick"},
603602
EDGE = {"click", "href", "click", "href", "doubleClick"},
604603
FF = {"click", "href", "click", "href", "doubleClick"},

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public void contentTypeOgm() throws Exception {
202202
@Test
203203
@Alerts(DEFAULT = {"CONTENT_TYPE:audio/ogg", "charset"},
204204
FF = {"CONTENT_TYPE:application/ogg", "charset"},
205-
FF_ESR = {"CONTENT_TYPE:video/ogg", "charset"})
205+
FF_ESR = {"CONTENT_TYPE:application/ogg", "charset"})
206206
public void contentTypeOgg() throws Exception {
207207
contentType("ogg");
208208
}

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3795,6 +3795,7 @@ public void documentElementBoundingClientRect() throws Exception {
37953795
@Test
37963796
@Alerts(DEFAULT = {"0", "0", "621", "1256"},
37973797
EDGE = {"0", "0", "630", "1248"},
3798+
FF = {"0", "0", "8", "1256"},
37983799
FF_ESR = {"0", "0", "8", "1256"})
37993800
@HtmlUnitNYI(CHROME = {"0", "0", "613", "1256"},
38003801
EDGE = {"0", "0", "613", "1256"},
@@ -3849,6 +3850,7 @@ public void documentElementOffset() throws Exception {
38493850
@Test
38503851
@Alerts(DEFAULT = {"0", "0", "621", "1256"},
38513852
EDGE = {"0", "0", "630", "1248"},
3853+
FF = {"0", "0", "8", "1256"},
38523854
FF_ESR = {"0", "0", "8", "1256"})
38533855
@HtmlUnitNYI(CHROME = {"0", "0", "613", "1256"},
38543856
EDGE = {"0", "0", "613", "1256"},
@@ -3877,6 +3879,7 @@ public void documentElementOffsetQuirks() throws Exception {
38773879
@Test
38783880
@Alerts(DEFAULT = {"0", "0", "621", "1256"},
38793881
EDGE = {"0", "0", "630", "1248"},
3882+
FF = {"0", "0", "675", "1256"},
38803883
FF_ESR = {"0", "0", "675", "1256"})
38813884
@HtmlUnitNYI(CHROME = {"0", "0", "605", "1256"},
38823885
EDGE = {"0", "0", "605", "1256"},
@@ -3904,6 +3907,7 @@ public void documentElementClientWidthHeight() throws Exception {
39043907
@Test
39053908
@Alerts(DEFAULT = {"0", "0", "621", "1256"},
39063909
EDGE = {"0", "0", "630", "1248"},
3910+
FF = {"0", "0", "8", "1256"},
39073911
FF_ESR = {"0", "0", "8", "1256"})
39083912
@HtmlUnitNYI(CHROME = {"0", "0", "605", "1256"},
39093913
EDGE = {"0", "0", "605", "1256"},

0 commit comments

Comments
 (0)