Skip to content

Commit 4fe9000

Browse files
committed
FF 144
1 parent c575cf2 commit 4fe9000

File tree

1 file changed

+19
-9
lines changed

1 file changed

+19
-9
lines changed

src/test/java/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.java

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ public void fontSizeEM() throws Exception {
11661166
* @throws Exception if an error occurs
11671167
*/
11681168
@Test
1169-
@Alerts(DEFAULT = "4.05px",
1169+
@Alerts(DEFAULT = "4.03333px",
11701170
CHROME = "3.726px",
11711171
EDGE = "3.78px")
11721172
@HtmlUnitNYI(CHROME = "1px",
@@ -1930,7 +1930,10 @@ public void offsetHeight_setting_height_quirks() throws Exception {
19301930
* @throws Exception if the test fails
19311931
*/
19321932
@Test
1933-
@Alerts({"true", "false"})
1933+
@Alerts(DEFAULT = {"true", "false"},
1934+
FF = {"true", "true"},
1935+
FF_ESR = {"true", "true"})
1936+
@HtmlUnitNYI(FF = {"true", "false"}, FF_ESR = {"true", "false"})
19341937
public void scrollbarWidth() throws Exception {
19351938
final String html = DOCTYPE_HTML
19361939
+ "<html><head><script>\n"
@@ -1955,7 +1958,10 @@ public void scrollbarWidth() throws Exception {
19551958
* @throws Exception if the test fails
19561959
*/
19571960
@Test
1958-
@Alerts({"true", "false"})
1961+
@Alerts(DEFAULT = {"true", "false"},
1962+
FF = {"true", "true"},
1963+
FF_ESR = {"true", "true"})
1964+
@HtmlUnitNYI(FF = {"true", "false"}, FF_ESR = {"true", "false"})
19591965
public void scrollbarWidthOverflowY() throws Exception {
19601966
final String html = DOCTYPE_HTML
19611967
+ "<html><head><script>\n"
@@ -1980,7 +1986,10 @@ public void scrollbarWidthOverflowY() throws Exception {
19801986
* @throws Exception if the test fails
19811987
*/
19821988
@Test
1983-
@Alerts({"true", "false"})
1989+
@Alerts(DEFAULT = {"true", "false"},
1990+
FF = {"true", "true"},
1991+
FF_ESR = {"true", "true"})
1992+
@HtmlUnitNYI(FF = {"true", "false"}, FF_ESR = {"true", "false"})
19841993
public void scrollbarHeight() throws Exception {
19851994
final String html = DOCTYPE_HTML
19861995
+ "<html><head><script>\n"
@@ -2005,7 +2014,10 @@ public void scrollbarHeight() throws Exception {
20052014
* @throws Exception if the test fails
20062015
*/
20072016
@Test
2008-
@Alerts({"true", "false"})
2017+
@Alerts(DEFAULT = {"true", "false"},
2018+
FF = {"true", "true"},
2019+
FF_ESR = {"true", "true"})
2020+
@HtmlUnitNYI(FF = {"true", "false"}, FF_ESR = {"true", "false"})
20092021
public void scrollbarHeightOverflowX() throws Exception {
20102022
final String html = DOCTYPE_HTML
20112023
+ "<html><head><script>\n"
@@ -2661,13 +2673,11 @@ public void heightManyLines() throws Exception {
26612673
* @throws Exception if an error occurs
26622674
*/
26632675
@Test
2664-
@Alerts(DEFAULT = "0 17",
2676+
@Alerts(DEFAULT = "0 0",
26652677
CHROME = "0 15",
26662678
EDGE = "0 15")
26672679
@HtmlUnitNYI(CHROME = "0 0",
2668-
EDGE = "0 0",
2669-
FF = "0 0",
2670-
FF_ESR = "0 0")
2680+
EDGE = "0 0")
26712681
public void iFrameInnerWidth() throws Exception {
26722682
final String html = DOCTYPE_HTML
26732683
+ "<html><head>\n"

0 commit comments

Comments
 (0)