From: <rb...@us...> - 2018-06-14 10:28:20
|
Revision: 15306 http://sourceforge.net/p/htmlunit/code/15306 Author: rbri Date: 2018-06-14 10:28:08 +0000 (Thu, 14 Jun 2018) Log Message: ----------- more ff60 expectations Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributesIterableTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributesIterableTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributesIterableTest.java 2018-06-14 10:15:57 UTC (rev 15305) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributesIterableTest.java 2018-06-14 10:28:08 UTC (rev 15306) @@ -316,6 +316,16 @@ * @throws Exception if an error occurs */ @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _BACKGROUND_POSITION_X_() throws Exception { + test("background-position-x"); + } + + /** + * @throws Exception if an error occurs + */ + @Test @Alerts("true") public void _BACKGROUND_POSITION_Y() throws Exception { test("backgroundPositionY"); @@ -325,6 +335,16 @@ * @throws Exception if an error occurs */ @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _BACKGROUND_POSITION_Y_() throws Exception { + test("background-position-y"); + } + + /** + * @throws Exception if an error occurs + */ + @Test @Alerts(DEFAULT = "true", IE = "false") public void _BLOCK_SIZE() throws Exception { @@ -344,6 +364,36 @@ * @throws Exception if an error occurs */ @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _CARET_COLOR() throws Exception { + test("caretColor"); + } + + /** + * @throws Exception if an error occurs + */ + @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _COLOR_ADJUST() throws Exception { + test("colorAdjust"); + } + + /** + * @throws Exception if an error occurs + */ + @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _COLOR_ADJUST_() throws Exception { + test("color-adjust"); + } + + /** + * @throws Exception if an error occurs + */ + @Test @Alerts("true") public void _COLUMN_COUNT() throws Exception { test("columnCount"); @@ -353,6 +403,16 @@ * @throws Exception if an error occurs */ @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _COLUMN_COUNT_() throws Exception { + test("column-count"); + } + + /** + * @throws Exception if an error occurs + */ + @Test @Alerts("true") public void _COLUMN_FILL() throws Exception { test("columnFill"); @@ -362,6 +422,16 @@ * @throws Exception if an error occurs */ @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _COLUMN_FILL_() throws Exception { + test("column-fill"); + } + + /** + * @throws Exception if an error occurs + */ + @Test @Alerts("true") public void _COLUMN_GAP() throws Exception { test("columnGap"); @@ -371,6 +441,16 @@ * @throws Exception if an error occurs */ @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _COLUMN_GAP_() throws Exception { + test("column-gap"); + } + + /** + * @throws Exception if an error occurs + */ + @Test @Alerts("true") public void _COLUMN_RULE() throws Exception { test("columnRule"); @@ -380,6 +460,16 @@ * @throws Exception if an error occurs */ @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _COLUMN_RULE_() throws Exception { + test("column-rule"); + } + + /** + * @throws Exception if an error occurs + */ + @Test @Alerts("true") public void _COLUMN_RULE_COLOR() throws Exception { test("columnRuleColor"); @@ -389,6 +479,16 @@ * @throws Exception if an error occurs */ @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _COLUMN_RULE_COLOR_() throws Exception { + test("column-rule-color"); + } + + /** + * @throws Exception if an error occurs + */ + @Test @Alerts("true") public void _COLUMN_RULE_STYLE() throws Exception { test("columnRuleStyle"); @@ -398,6 +498,16 @@ * @throws Exception if an error occurs */ @Test + @Alerts(DEFAULT = "false", + FF60 = "true") + public void _COLUMN_RULE_STYLE_() throws Exception { + test("column-rule-style"); + } + + /** + * @throws Exception if an error occurs + */ + @Test @Alerts("true") public void _COLUMN_RULE_WIDTH() throws Exception { test("columnRuleWidth"); |