Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(433)

Unified Diff: LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt

Issue 14576017: Implement CSS3TextDecorations runtime flag in favor of CSS3_TEXT (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed updated on text-underline-position for now (to be discussed & re-added later) Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt
diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt b/LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt
index 3e76af4690193c26177c567b75ea1fe839d9789d..bad687c6ad692249e1a918bd73245e2cb8d1d23a 100644
--- a/LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt
+++ b/LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt
@@ -1,94 +1,94 @@
-Test to make sure -webkit-text-decoration-style property returns CSSPrimitiveValue properly.
+Test to make sure text-decoration-style property returns CSSPrimitiveValue properly.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Ancestor should not inherit 'dashed' value from parent (fallback to initial 'solid' value):
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style') is null
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'solid'
-PASS computedStyle.webkitTextDecorationStyle is 'solid'
+PASS e.style.getPropertyCSSValue('text-decoration-style') is null
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'solid'
+PASS computedStyle.textDecorationStyle is 'solid'
Parent should cointain 'dashed':
-PASS e.style.webkitTextDecorationStyle is 'dashed'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'dashed'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'dashed'
-PASS computedStyle.webkitTextDecorationStyle is 'dashed'
+PASS e.style.textDecorationStyle is 'dashed'
+PASS e.style.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS e.style.getPropertyCSSValue('text-decoration-style').cssText is 'dashed'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'dashed'
+PASS computedStyle.textDecorationStyle is 'dashed'
JavaScript setter tests for valid, initial, invalid and blank values:
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style') is null
+PASS e.style.getPropertyCSSValue('text-decoration-style') is null
Valid value 'solid':
-PASS e.style.webkitTextDecorationStyle is 'solid'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'solid'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'solid'
-PASS computedStyle.webkitTextDecorationStyle is 'solid'
+PASS e.style.textDecorationStyle is 'solid'
+PASS e.style.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS e.style.getPropertyCSSValue('text-decoration-style').cssText is 'solid'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'solid'
+PASS computedStyle.textDecorationStyle is 'solid'
Valid value 'double':
-PASS e.style.webkitTextDecorationStyle is 'double'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'double'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'double'
-PASS computedStyle.webkitTextDecorationStyle is 'double'
+PASS e.style.textDecorationStyle is 'double'
+PASS e.style.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS e.style.getPropertyCSSValue('text-decoration-style').cssText is 'double'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'double'
+PASS computedStyle.textDecorationStyle is 'double'
Valid value 'dotted':
-PASS e.style.webkitTextDecorationStyle is 'dotted'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'dotted'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'dotted'
-PASS computedStyle.webkitTextDecorationStyle is 'dotted'
+PASS e.style.textDecorationStyle is 'dotted'
+PASS e.style.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS e.style.getPropertyCSSValue('text-decoration-style').cssText is 'dotted'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'dotted'
+PASS computedStyle.textDecorationStyle is 'dotted'
Valid value 'dashed':
-PASS e.style.webkitTextDecorationStyle is 'dashed'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'dashed'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'dashed'
-PASS computedStyle.webkitTextDecorationStyle is 'dashed'
+PASS e.style.textDecorationStyle is 'dashed'
+PASS e.style.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS e.style.getPropertyCSSValue('text-decoration-style').cssText is 'dashed'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'dashed'
+PASS computedStyle.textDecorationStyle is 'dashed'
Valid value 'wavy':
-PASS e.style.webkitTextDecorationStyle is 'wavy'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'wavy'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'wavy'
-PASS computedStyle.webkitTextDecorationStyle is 'wavy'
+PASS e.style.textDecorationStyle is 'wavy'
+PASS e.style.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS e.style.getPropertyCSSValue('text-decoration-style').cssText is 'wavy'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'wavy'
+PASS computedStyle.textDecorationStyle is 'wavy'
Initial value:
-PASS e.style.webkitTextDecorationStyle is 'initial'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSValue]'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'initial'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'solid'
-PASS computedStyle.webkitTextDecorationStyle is 'solid'
+PASS e.style.textDecorationStyle is 'initial'
+PASS e.style.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSValue]'
+PASS e.style.getPropertyCSSValue('text-decoration-style').cssText is 'initial'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'solid'
+PASS computedStyle.textDecorationStyle is 'solid'
Invalid value (this property accepts one value at a time only):
-PASS e.style.webkitTextDecorationStyle is 'initial'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSValue]'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'initial'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'solid'
-PASS computedStyle.webkitTextDecorationStyle is 'solid'
+PASS e.style.textDecorationStyle is 'initial'
+PASS e.style.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSValue]'
+PASS e.style.getPropertyCSSValue('text-decoration-style').cssText is 'initial'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'solid'
+PASS computedStyle.textDecorationStyle is 'solid'
Invalid value (ie. 'unknown'):
-PASS e.style.webkitTextDecorationStyle is 'initial'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSValue]'
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'initial'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'solid'
-PASS computedStyle.webkitTextDecorationStyle is 'solid'
+PASS e.style.textDecorationStyle is 'initial'
+PASS e.style.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSValue]'
+PASS e.style.getPropertyCSSValue('text-decoration-style').cssText is 'initial'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'solid'
+PASS computedStyle.textDecorationStyle is 'solid'
Empty value (resets the property):
-PASS e.style.getPropertyCSSValue('-webkit-text-decoration-style') is null
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').toString() is '[object CSSPrimitiveValue]'
-PASS computedStyle.getPropertyCSSValue('-webkit-text-decoration-style').cssText is 'solid'
-PASS computedStyle.webkitTextDecorationStyle is 'solid'
+PASS e.style.getPropertyCSSValue('text-decoration-style') is null
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').toString() is '[object CSSPrimitiveValue]'
+PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'solid'
+PASS computedStyle.textDecorationStyle is 'solid'
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698