From: <rb...@us...> - 2017-06-08 07:27:32
|
Revision: 14577 http://sourceforge.net/p/htmlunit/code/14577 Author: rbri Date: 2017-06-08 07:27:29 +0000 (Thu, 08 Jun 2017) Log Message: ----------- re tested with real browsers and fixed Modified Paths: -------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributes.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributesIterableTest.java Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributes.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributes.java 2017-06-08 05:21:42 UTC (rev 14576) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributes.java 2017-06-08 07:27:29 UTC (rev 14577) @@ -2399,19 +2399,19 @@ PIXEL_WIDTH("pixelWidth", "pixel-width", ie("").setIteratable(false)), /** The style property {@code placeContent}. */ - PLACE_CONTENT("placeContent", "place-content", chrome("normal normal"), ff52up("").setIteratable(false)), + PLACE_CONTENT("placeContent", "place-content", chrome("normal normal"), ff52up("")), /** The style property {@code place-content}. */ PLACE_CONTENT_("place-content", "place-content", ff52up("")), /** The style property {@code placeItems}. */ - PLACE_ITEMS("placeItems", "place-items", chrome("normal normal"), ff52up("").setIteratable(false)), + PLACE_ITEMS("placeItems", "place-items", chrome("normal normal"), ff52up("")), /** The style property {@code place-items}. */ PLACE_ITEMS_("place-items", "place-items", ff52up("")), /** The style property {@code placeSelf}. */ - PLACE_SELF("placeSelf", "place-self", chrome("normal normal"), ff52up("").setIteratable(false)), + PLACE_SELF("placeSelf", "place-self", chrome("normal normal"), ff52up("")), /** The style property {@code place-self}. */ PLACE_SELF_("place-self", "place-self", ff52up("")), 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 2017-06-08 05:21:42 UTC (rev 14576) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributesIterableTest.java 2017-06-08 07:27:29 UTC (rev 14577) @@ -748,8 +748,9 @@ * @throws Exception if an error occurs */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts(DEFAULT = "true", + FF45 = "false", + IE = "false") public void _PLACE_CONTENT() throws Exception { test("placeContent"); } @@ -758,8 +759,9 @@ * @throws Exception if an error occurs */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts(DEFAULT = "true", + FF45 = "false", + IE = "false") public void _PLACE_ITEMS() throws Exception { test("placeItems"); } @@ -768,8 +770,9 @@ * @throws Exception if an error occurs */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts(DEFAULT = "true", + FF45 = "false", + IE = "false") public void _PLACE_SELF() throws Exception { test("placeSelf"); } |