From: <rb...@us...> - 2018-01-27 14:26:58
|
Revision: 15096 http://sourceforge.net/p/htmlunit/code/15096 Author: rbri Date: 2018-01-27 14:26:56 +0000 (Sat, 27 Jan 2018) Log Message: ----------- chrome 64 Modified Paths: -------------- trunk/htmlunit/src/changes/changes.xml trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributes.java trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.Chrome.txt trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.Chrome.txt trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Chrome.txt trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.notAttached.Chrome.txt Modified: trunk/htmlunit/src/changes/changes.xml =================================================================== --- trunk/htmlunit/src/changes/changes.xml 2018-01-27 14:10:40 UTC (rev 15095) +++ trunk/htmlunit/src/changes/changes.xml 2018-01-27 14:26:56 UTC (rev 15096) @@ -7,7 +7,7 @@ </properties> <body> - <release version="2.30" date="xx, 2018" description="Bugfixes, URLSearchParams implemented, start adding support of user defined iterators"> + <release version="2.30" date="xx, 2018" description="Bugfixes, URLSearchParams implemented, start adding support of user defined iterators, CHROME 64"> <action type="fix" dev="rbri" due-to="Frank Danek"> Fix some problem to be able to run our test suite with edge. </action> 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 2018-01-27 14:10:40 UTC (rev 15095) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/StyleAttributes.java 2018-01-27 14:26:56 UTC (rev 15096) @@ -2728,8 +2728,8 @@ TEXT_DECORATION_OVERLINE("textDecorationOverline", "text-decoration-overline", ie("false").setIteratable(false)), - /** The style property {@code textDecorationSkip}. */ - TEXT_DECORATION_SKIP("textDecorationSkip", "text-decoration-sskip", chrome("objects")), + /** The style property {@code textDecorationSkipInk}. */ + TEXT_DECORATION_SKIP("textDecorationSkipInk", "text-decoration-skip-ink", chrome("auto")), /** The style property {@code textDecorationStyle}. */ TEXT_DECORATION_STYLE("textDecorationStyle", "text-decoration-style", chrome("solid"), ff("solid")), @@ -2831,6 +2831,9 @@ /** The style property {@code transform}. */ TRANSFORM("transform", "transform", ff("none"), ie("none"), chrome("none")), + /** The style property {@code transformBox}. */ + TRANSFORM_BOX("transformBox", "transform-box", chrome("view-box")), + /** The style property {@code transformOrigin}. */ TRANSFORM_ORIGIN("transformOrigin", "transform-origin", ffBelow52("705px 172.5px"), ff52up("625px 172.5px"), ie("620px 163.2px"), chrome("456.5px 161px")), @@ -3046,8 +3049,7 @@ ff52up("visible")), /** The style property {@code webkitBackgroundClip}. */ - WEBKIT_BACKGROUND_CLIP("webkitBackgroundClip", "webkit-background-clip", - chrome("border-box"), ff52up("border-box")), + WEBKIT_BACKGROUND_CLIP("webkitBackgroundClip", "webkit-background-clip", ff52up("border-box")), /** The style property {@code WebkitBackgroundClip}. */ WEBKIT_BACKGROUND_CLIP_("WebkitBackgroundClip", "webkit-background-clip", @@ -3058,8 +3060,7 @@ ff52up("border-box")), /** The style property {@code webkitBackgroundOrigin}. */ - WEBKIT_BACKGROUND_ORIGIN("webkitBackgroundOrigin", "webkit-background-origin", - chrome("padding-box"), ff52up("padding-box")), + WEBKIT_BACKGROUND_ORIGIN("webkitBackgroundOrigin", "webkit-background-origin", ff52up("padding-box")), /** The style property {@code WebkitBackgroundOrigin}. */ WEBKIT_BACKGROUND_ORIGIN_("WebkitBackgroundOrigin", "webkit-background-origin", Modified: trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.Chrome.txt =================================================================== --- trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.Chrome.txt 2018-01-27 14:10:40 UTC (rev 15095) +++ trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.Chrome.txt 2018-01-27 14:26:56 UTC (rev 15096) @@ -263,7 +263,7 @@ textDecoration textDecorationColor textDecorationLine -textDecorationSkip +textDecorationSkipInk textDecorationStyle textIndent textOrientation @@ -276,6 +276,7 @@ top touchAction transform +transformBox transformOrigin transformStyle transition @@ -292,8 +293,6 @@ visibility webkitAppRegion webkitAppearance -webkitBackgroundClip -webkitBackgroundOrigin webkitBorderAfter webkitBorderAfterColor webkitBorderAfterStyle Modified: trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.Chrome.txt =================================================================== --- trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.Chrome.txt 2018-01-27 14:10:40 UTC (rev 15095) +++ trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.Chrome.txt 2018-01-27 14:26:56 UTC (rev 15096) @@ -262,7 +262,7 @@ textDecoration textDecorationColor textDecorationLine -textDecorationSkip +textDecorationSkipInk textDecorationStyle textIndent textOrientation @@ -275,6 +275,7 @@ top touchAction transform +transformBox transformOrigin transformStyle transition @@ -291,8 +292,6 @@ visibility webkitAppRegion webkitAppearance -webkitBackgroundClip -webkitBackgroundOrigin webkitBorderAfter webkitBorderAfterColor webkitBorderAfterStyle Modified: trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Chrome.txt =================================================================== --- trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Chrome.txt 2018-01-27 14:10:40 UTC (rev 15095) +++ trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Chrome.txt 2018-01-27 14:26:56 UTC (rev 15096) @@ -262,7 +262,7 @@ textDecoration=:none solid rgb(0, 0, 0) textDecorationColor=:rgb(0, 0, 0) textDecorationLine=:none -textDecorationSkip=:objects +textDecorationSkipInk=:auto textDecorationStyle=:solid textIndent=:0px textOrientation=:mixed @@ -275,6 +275,7 @@ top=:auto touchAction=:auto transform=:none +transformBox=:view-box transformOrigin=:456.5px 161px transformStyle=:flat transition=:all 0s ease 0s @@ -291,8 +292,6 @@ visibility=:visible webkitAppRegion=:no-drag webkitAppearance=:none -webkitBackgroundClip=:border-box -webkitBackgroundOrigin=:padding-box webkitBorderAfter=:0px none rgb(0, 0, 0) webkitBorderAfterColor=:rgb(0, 0, 0) webkitBorderAfterStyle=:none Modified: trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.notAttached.Chrome.txt =================================================================== --- trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.notAttached.Chrome.txt 2018-01-27 14:10:40 UTC (rev 15095) +++ trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.notAttached.Chrome.txt 2018-01-27 14:26:56 UTC (rev 15096) @@ -262,7 +262,7 @@ textDecoration=: textDecorationColor=: textDecorationLine=: -textDecorationSkip=: +textDecorationSkipInk=: textDecorationStyle=: textIndent=: textOrientation=: @@ -275,6 +275,7 @@ top=: touchAction=: transform=: +transformBox=: transformOrigin=: transformStyle=: transition=: @@ -291,8 +292,6 @@ visibility=: webkitAppRegion=: webkitAppearance=: -webkitBackgroundClip=: -webkitBackgroundOrigin=: webkitBorderAfter=: webkitBorderAfterColor=: webkitBorderAfterStyle=: |