From: <rb...@us...> - 2018-06-15 12:04:43
|
Revision: 15311 http://sourceforge.net/p/htmlunit/code/15311 Author: rbri Date: 2018-06-15 12:04:36 +0000 (Fri, 15 Jun 2018) Log Message: ----------- more ff60 expectations Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration3Test.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclarationTest.java trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.FF60.txt trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.FF60.txt Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration3Test.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration3Test.java 2018-06-15 11:46:56 UTC (rev 15310) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration3Test.java 2018-06-15 12:04:36 UTC (rev 15311) @@ -64,7 +64,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "url(\"myImage.png\")", "repeat", "0% 0%", "scroll"}, - CHROME = {"initial", "url(\"myImage.png\")", "initial", "initial", "initial"}) + CHROME = {"initial", "url(\"myImage.png\")", "initial", "initial", "initial"}, + FF60 = {"rgba(0, 0, 0, 0)", "url(\"myImage.png\")", "repeat", "0% 0%", "scroll"}) public void backgroundImage() throws Exception { background("url(myImage.png)"); } @@ -74,7 +75,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat-x", "0% 0%", "scroll"}, - CHROME = {"initial", "initial", "repeat-x", "initial", "initial"}) + CHROME = {"initial", "initial", "repeat-x", "initial", "initial"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat-x", "0% 0%", "scroll"}) public void backgroundRepeat() throws Exception { background("repeat-x"); } @@ -84,7 +86,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "20px 100%", "scroll"}, - CHROME = {"initial", "initial", "initial", "20px 100%", "initial"}) + CHROME = {"initial", "initial", "initial", "20px 100%", "initial"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "20px 100%", "scroll"}) public void backgroundPosition() throws Exception { background("20px 100%"); } @@ -94,7 +97,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "right bottom", "scroll"}, - CHROME = {"initial", "initial", "initial", "right bottom", "initial"}) + CHROME = {"initial", "initial", "initial", "right bottom", "initial"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "right bottom", "scroll"}) public void backgroundPosition2() throws Exception { background("bottom right"); } @@ -104,7 +108,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "10em bottom", "scroll"}, - CHROME = {"initial", "initial", "initial", "10em bottom", "initial"}) + CHROME = {"initial", "initial", "initial", "10em bottom", "initial"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "10em bottom", "scroll"}) public void backgroundPosition3() throws Exception { background("10em bottom"); } @@ -115,6 +120,7 @@ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "10em center", "scroll"}, CHROME = {"initial", "initial", "initial", "10em center", "initial"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "10em center", "scroll"}, IE = {"transparent", "none", "repeat", "10em", "scroll"}) public void backgroundPosition4() throws Exception { background("10em center"); @@ -125,7 +131,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "0% 0%", "fixed"}, - CHROME = {"initial", "initial", "initial", "initial", "fixed"}) + CHROME = {"initial", "initial", "initial", "initial", "fixed"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 0%", "fixed"}) public void backgroundAttachment() throws Exception { background("fixed"); } @@ -183,7 +190,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "0% 0%", "scroll"}, - CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 0%", "scroll"}) + CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 0%", "scroll"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 0%", "scroll"}) public void backgroundCssEmpty() throws Exception { backgroundCss(""); } @@ -211,7 +219,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "url(\"http://localhost:12345/myImage.png\")", "repeat", "0% 0%", "scroll"}, - CHROME = {"rgba(0, 0, 0, 0)", "url(\"http://localhost:12345/myImage.png\")", "repeat", "0% 0%", "scroll"}) + CHROME = {"rgba(0, 0, 0, 0)", "url(\"http://localhost:12345/myImage.png\")", "repeat", "0% 0%", "scroll"}, + FF60 = {"rgba(0, 0, 0, 0)", "url(\"http://localhost:12345/myImage.png\")", "repeat", "0% 0%", "scroll"}) public void backgroundCssImage() throws Exception { backgroundCss("url(myImage.png)"); } @@ -221,7 +230,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat-x", "0% 0%", "scroll"}, - CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat-x", "0% 0%", "scroll"}) + CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat-x", "0% 0%", "scroll"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat-x", "0% 0%", "scroll"}) public void backgroundCssRepeat() throws Exception { backgroundCss("repeat-x"); } @@ -231,7 +241,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "20px 100%", "scroll"}, - CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "20px 100%", "scroll"}) + CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "20px 100%", "scroll"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "20px 100%", "scroll"}) public void backgroundCssPosition() throws Exception { backgroundCss("20px 100%"); } @@ -241,7 +252,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "100% 100%", "scroll"}, - CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "100% 100%", "scroll"}) + CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "100% 100%", "scroll"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "100% 100%", "scroll"}) public void backgroundCssPosition2() throws Exception { backgroundCss("bottom right"); } @@ -251,7 +263,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "0% 100%", "scroll"}, - CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 100%", "scroll"}) + CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 100%", "scroll"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 100%", "scroll"}) public void backgroundCssPosition3() throws Exception { backgroundCss("left bottom"); } @@ -262,6 +275,7 @@ @Test @Alerts(FF = {"transparent", "none", "repeat", "50% 0%", "scroll"}, CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "50% 0%", "scroll"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "50% 0%", "scroll"}, IE = {"transparent", "none", "repeat", "top", "scroll"}) public void backgroundCssPosition4() throws Exception { backgroundCss("top center"); @@ -272,7 +286,8 @@ */ @Test @Alerts(DEFAULT = {"transparent", "none", "repeat", "0% 0%", "fixed"}, - CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 0%", "fixed"}) + CHROME = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 0%", "fixed"}, + FF60 = {"rgba(0, 0, 0, 0)", "none", "repeat", "0% 0%", "fixed"}) public void backgroundCssAttachment() throws Exception { backgroundCss("fixed"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclarationTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclarationTest.java 2018-06-15 11:46:56 UTC (rev 15310) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclarationTest.java 2018-06-15 12:04:36 UTC (rev 15311) @@ -938,6 +938,7 @@ @Test @Alerts(DEFAULT = {"block", "rgb(0, 0, 0)", "inline", "rgb(0, 0, 0)"}, CHROME = {"", "", "inline", "rgb(0, 0, 0)"}, + FF60 = {"inline", "rgb(0, 0, 0)", "inline", "rgb(0, 0, 0)"}, IE = {"inline", "rgb(0, 0, 0)", "inline", "rgb(0, 0, 0)"}) public void displayDefault() throws Exception { final String html = "<html>\n" @@ -2378,7 +2379,7 @@ */ @Test @Alerts(DEFAULT = {"black", "pink", "color: pink;", "color: pink;"}, - FF = {"BLACK", "pink", "color: pink;", "color: pink;"}) + FF52 = {"BLACK", "pink", "color: pink;", "color: pink;"}) public void caseInsensitive() throws Exception { final String html = "<html><head><title>First</title><script>\n" Modified: trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.FF60.txt =================================================================== --- trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.FF60.txt 2018-06-15 11:46:56 UTC (rev 15310) +++ trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.FF60.txt 2018-06-15 12:04:36 UTC (rev 15311) @@ -10,19 +10,15 @@ MozAppearance MozBackfaceVisibility MozBinding -MozBorderBottomColors MozBorderEnd MozBorderEndColor MozBorderEndStyle MozBorderEndWidth MozBorderImage -MozBorderLeftColors -MozBorderRightColors MozBorderStart MozBorderStartColor MozBorderStartStyle MozBorderStartWidth -MozBorderTopColors MozBoxAlign MozBoxDirection MozBoxFlex @@ -59,7 +55,6 @@ MozPerspectiveOrigin MozStackSizing MozTabSize -MozTextAlignLast MozTextSizeAdjust MozTransform MozTransformOrigin @@ -74,6 +69,72 @@ MozUserModify MozUserSelect MozWindowDragging +WebkitAlignContent +WebkitAlignItems +WebkitAlignSelf +WebkitAnimation +WebkitAnimationDelay +WebkitAnimationDirection +WebkitAnimationDuration +WebkitAnimationFillMode +WebkitAnimationIterationCount +WebkitAnimationName +WebkitAnimationPlayState +WebkitAnimationTimingFunction +WebkitBackfaceVisibility +WebkitBackgroundClip +WebkitBackgroundOrigin +WebkitBackgroundSize +WebkitBorderBottomLeftRadius +WebkitBorderBottomRightRadius +WebkitBorderImage +WebkitBorderRadius +WebkitBorderTopLeftRadius +WebkitBorderTopRightRadius +WebkitBoxAlign +WebkitBoxDirection +WebkitBoxFlex +WebkitBoxOrdinalGroup +WebkitBoxOrient +WebkitBoxPack +WebkitBoxShadow +WebkitBoxSizing +WebkitFilter +WebkitFlex +WebkitFlexBasis +WebkitFlexDirection +WebkitFlexFlow +WebkitFlexGrow +WebkitFlexShrink +WebkitFlexWrap +WebkitJustifyContent +WebkitMask +WebkitMaskClip +WebkitMaskComposite +WebkitMaskImage +WebkitMaskOrigin +WebkitMaskPosition +WebkitMaskPositionX +WebkitMaskPositionY +WebkitMaskRepeat +WebkitMaskSize +WebkitOrder +WebkitPerspective +WebkitPerspectiveOrigin +WebkitTextFillColor +WebkitTextSizeAdjust +WebkitTextStroke +WebkitTextStrokeColor +WebkitTextStrokeWidth +WebkitTransform +WebkitTransformOrigin +WebkitTransformStyle +WebkitTransition +WebkitTransitionDelay +WebkitTransitionDuration +WebkitTransitionProperty +WebkitTransitionTimingFunction +WebkitUserSelect alignContent alignItems alignSelf @@ -97,6 +158,8 @@ backgroundImage backgroundOrigin backgroundPosition +backgroundPositionX +backgroundPositionY backgroundRepeat backgroundSize blockSize @@ -154,13 +217,24 @@ boxShadow boxSizing captionSide +caretColor clear clip clipPath clipRule color +colorAdjust colorInterpolation colorInterpolationFilters +columnCount +columnFill +columnGap +columnRule +columnRuleColor +columnRuleStyle +columnRuleWidth +columnWidth +columns content counterIncrement counterReset @@ -203,6 +277,24 @@ fontVariantNumeric fontVariantPosition fontWeight +grid +gridArea +gridAutoColumns +gridAutoFlow +gridAutoRows +gridColumn +gridColumnEnd +gridColumnGap +gridColumnStart +gridGap +gridRow +gridRowEnd +gridRowGap +gridRowStart +gridTemplate +gridTemplateAreas +gridTemplateColumns +gridTemplateRows height hyphens imageOrientation @@ -234,9 +326,18 @@ marker markerEnd markerMid -markerOffset markerStart mask +maskClip +maskComposite +maskImage +maskMode +maskOrigin +maskPosition +maskPositionX +maskPositionY +maskRepeat +maskSize maskType maxBlockSize maxHeight @@ -261,8 +362,12 @@ outlineStyle outlineWidth overflow +overflowWrap overflowX overflowY +overscrollBehavior +overscrollBehaviorX +overscrollBehaviorY padding paddingBlockEnd paddingBlockStart @@ -278,6 +383,9 @@ paintOrder perspective perspectiveOrigin +placeContent +placeItems +placeSelf pointerEvents position quotes @@ -306,12 +414,19 @@ strokeWidth tableLayout textAlign +textAlignLast textAnchor +textCombineUpright textDecoration textDecorationColor textDecorationLine textDecorationStyle +textEmphasis +textEmphasisColor +textEmphasisPosition +textEmphasisStyle textIndent +textJustify textOrientation textOverflow textRendering @@ -318,7 +433,9 @@ textShadow textTransform top +touchAction transform +transformBox transformOrigin transformStyle transition @@ -330,6 +447,72 @@ vectorEffect verticalAlign visibility +webkitAlignContent +webkitAlignItems +webkitAlignSelf +webkitAnimation +webkitAnimationDelay +webkitAnimationDirection +webkitAnimationDuration +webkitAnimationFillMode +webkitAnimationIterationCount +webkitAnimationName +webkitAnimationPlayState +webkitAnimationTimingFunction +webkitBackfaceVisibility +webkitBackgroundClip +webkitBackgroundOrigin +webkitBackgroundSize +webkitBorderBottomLeftRadius +webkitBorderBottomRightRadius +webkitBorderImage +webkitBorderRadius +webkitBorderTopLeftRadius +webkitBorderTopRightRadius +webkitBoxAlign +webkitBoxDirection +webkitBoxFlex +webkitBoxOrdinalGroup +webkitBoxOrient +webkitBoxPack +webkitBoxShadow +webkitBoxSizing +webkitFilter +webkitFlex +webkitFlexBasis +webkitFlexDirection +webkitFlexFlow +webkitFlexGrow +webkitFlexShrink +webkitFlexWrap +webkitJustifyContent +webkitMask +webkitMaskClip +webkitMaskComposite +webkitMaskImage +webkitMaskOrigin +webkitMaskPosition +webkitMaskPositionX +webkitMaskPositionY +webkitMaskRepeat +webkitMaskSize +webkitOrder +webkitPerspective +webkitPerspectiveOrigin +webkitTextFillColor +webkitTextSizeAdjust +webkitTextStroke +webkitTextStrokeColor +webkitTextStrokeWidth +webkitTransform +webkitTransformOrigin +webkitTransformStyle +webkitTransition +webkitTransitionDelay +webkitTransitionDuration +webkitTransitionProperty +webkitTransitionTimingFunction +webkitUserSelect whiteSpace width willChange Modified: trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.FF60.txt =================================================================== --- trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.FF60.txt 2018-06-15 11:46:56 UTC (rev 15310) +++ trunk/htmlunit/src/test/resources/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.FF60.txt 2018-06-15 12:04:36 UTC (rev 15311) @@ -10,19 +10,15 @@ MozAppearance MozBackfaceVisibility MozBinding -MozBorderBottomColors MozBorderEnd MozBorderEndColor MozBorderEndStyle MozBorderEndWidth MozBorderImage -MozBorderLeftColors -MozBorderRightColors MozBorderStart MozBorderStartColor MozBorderStartStyle MozBorderStartWidth -MozBorderTopColors MozBoxAlign MozBoxDirection MozBoxFlex @@ -59,7 +55,6 @@ MozPerspectiveOrigin MozStackSizing MozTabSize -MozTextAlignLast MozTextSizeAdjust MozTransform MozTransformOrigin @@ -74,6 +69,72 @@ MozUserModify MozUserSelect MozWindowDragging +WebkitAlignContent +WebkitAlignItems +WebkitAlignSelf +WebkitAnimation +WebkitAnimationDelay +WebkitAnimationDirection +WebkitAnimationDuration +WebkitAnimationFillMode +WebkitAnimationIterationCount +WebkitAnimationName +WebkitAnimationPlayState +WebkitAnimationTimingFunction +WebkitBackfaceVisibility +WebkitBackgroundClip +WebkitBackgroundOrigin +WebkitBackgroundSize +WebkitBorderBottomLeftRadius +WebkitBorderBottomRightRadius +WebkitBorderImage +WebkitBorderRadius +WebkitBorderTopLeftRadius +WebkitBorderTopRightRadius +WebkitBoxAlign +WebkitBoxDirection +WebkitBoxFlex +WebkitBoxOrdinalGroup +WebkitBoxOrient +WebkitBoxPack +WebkitBoxShadow +WebkitBoxSizing +WebkitFilter +WebkitFlex +WebkitFlexBasis +WebkitFlexDirection +WebkitFlexFlow +WebkitFlexGrow +WebkitFlexShrink +WebkitFlexWrap +WebkitJustifyContent +WebkitMask +WebkitMaskClip +WebkitMaskComposite +WebkitMaskImage +WebkitMaskOrigin +WebkitMaskPosition +WebkitMaskPositionX +WebkitMaskPositionY +WebkitMaskRepeat +WebkitMaskSize +WebkitOrder +WebkitPerspective +WebkitPerspectiveOrigin +WebkitTextFillColor +WebkitTextSizeAdjust +WebkitTextStroke +WebkitTextStrokeColor +WebkitTextStrokeWidth +WebkitTransform +WebkitTransformOrigin +WebkitTransformStyle +WebkitTransition +WebkitTransitionDelay +WebkitTransitionDuration +WebkitTransitionProperty +WebkitTransitionTimingFunction +WebkitUserSelect alignContent alignItems alignSelf @@ -96,6 +157,8 @@ backgroundImage backgroundOrigin backgroundPosition +backgroundPositionX +backgroundPositionY backgroundRepeat backgroundSize blockSize @@ -153,13 +216,24 @@ boxShadow boxSizing captionSide +caretColor clear clip clipPath clipRule color +colorAdjust colorInterpolation colorInterpolationFilters +columnCount +columnFill +columnGap +columnRule +columnRuleColor +columnRuleStyle +columnRuleWidth +columnWidth +columns content counterIncrement counterReset @@ -202,6 +276,24 @@ fontVariantNumeric fontVariantPosition fontWeight +grid +gridArea +gridAutoColumns +gridAutoFlow +gridAutoRows +gridColumn +gridColumnEnd +gridColumnGap +gridColumnStart +gridGap +gridRow +gridRowEnd +gridRowGap +gridRowStart +gridTemplate +gridTemplateAreas +gridTemplateColumns +gridTemplateRows height hyphens imageOrientation @@ -232,9 +324,18 @@ marker markerEnd markerMid -markerOffset markerStart mask +maskClip +maskComposite +maskImage +maskMode +maskOrigin +maskPosition +maskPositionX +maskPositionY +maskRepeat +maskSize maskType maxBlockSize maxHeight @@ -259,8 +360,12 @@ outlineStyle outlineWidth overflow +overflowWrap overflowX overflowY +overscrollBehavior +overscrollBehaviorX +overscrollBehaviorY padding paddingBlockEnd paddingBlockStart @@ -276,6 +381,9 @@ paintOrder perspective perspectiveOrigin +placeContent +placeItems +placeSelf pointerEvents position quotes @@ -304,12 +412,19 @@ strokeWidth tableLayout textAlign +textAlignLast textAnchor +textCombineUpright textDecoration textDecorationColor textDecorationLine textDecorationStyle +textEmphasis +textEmphasisColor +textEmphasisPosition +textEmphasisStyle textIndent +textJustify textOrientation textOverflow textRendering @@ -316,7 +431,9 @@ textShadow textTransform top +touchAction transform +transformBox transformOrigin transformStyle transition @@ -328,6 +445,72 @@ vectorEffect verticalAlign visibility +webkitAlignContent +webkitAlignItems +webkitAlignSelf +webkitAnimation +webkitAnimationDelay +webkitAnimationDirection +webkitAnimationDuration +webkitAnimationFillMode +webkitAnimationIterationCount +webkitAnimationName +webkitAnimationPlayState +webkitAnimationTimingFunction +webkitBackfaceVisibility +webkitBackgroundClip +webkitBackgroundOrigin +webkitBackgroundSize +webkitBorderBottomLeftRadius +webkitBorderBottomRightRadius +webkitBorderImage +webkitBorderRadius +webkitBorderTopLeftRadius +webkitBorderTopRightRadius +webkitBoxAlign +webkitBoxDirection +webkitBoxFlex +webkitBoxOrdinalGroup +webkitBoxOrient +webkitBoxPack +webkitBoxShadow +webkitBoxSizing +webkitFilter +webkitFlex +webkitFlexBasis +webkitFlexDirection +webkitFlexFlow +webkitFlexGrow +webkitFlexShrink +webkitFlexWrap +webkitJustifyContent +webkitMask +webkitMaskClip +webkitMaskComposite +webkitMaskImage +webkitMaskOrigin +webkitMaskPosition +webkitMaskPositionX +webkitMaskPositionY +webkitMaskRepeat +webkitMaskSize +webkitOrder +webkitPerspective +webkitPerspectiveOrigin +webkitTextFillColor +webkitTextSizeAdjust +webkitTextStroke +webkitTextStrokeColor +webkitTextStrokeWidth +webkitTransform +webkitTransformOrigin +webkitTransformStyle +webkitTransition +webkitTransitionDelay +webkitTransitionDuration +webkitTransitionProperty +webkitTransitionTimingFunction +webkitUserSelect whiteSpace width willChange |