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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-shorthand-expected.txt

Issue 23111004: Re-land "[css3-text] Implement text-decoration property shorthand" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased after Alexis' function name changes in CSSComputedStyleDeclaration.cpp Created 7 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 Test to make sure text-decoration property is backwards compatible with CSS 2.1 and CSS 3 shorthand.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 Initial values:
7 PASS e.style.getPropertyCSSValue('text-decoration') is null
8 PASS computedStyle.getPropertyCSSValue('text-decoration').cssText is 'none solid rgb(0, 0, 0)'
9 PASS checkComputedStyleValue() is true
10
11 CSS2.1 backwards compatibility ("text-decoration: underline overline line-throug h blink;"):
12 PASS e.style.getPropertyCSSValue('text-decoration-line').cssText is 'underline o verline line-through blink'
13 PASS computedStyle.getPropertyCSSValue('text-decoration-line').cssText is 'under line overline line-through'
14 PASS computedStyle.getPropertyCSSValue('text-decoration').cssText is 'underline overline line-through solid rgb(0, 0, 0)'
15 PASS checkComputedStyleValue() is true
16
17 CSS3 Shorthand ("text-decoration: underline overline line-through blink dashed r ed;"):
18 PASS computedStyle.getPropertyCSSValue('text-decoration').cssText is 'underline overline line-through dashed rgb(255, 0, 0)'
19 PASS computedStyle.getPropertyCSSValue('text-decoration-line').cssText is 'under line overline line-through'
20 PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'dash ed'
21 PASS computedStyle.getPropertyCSSValue('text-decoration-color').cssText is 'rgb( 255, 0, 0)'
22 PASS checkComputedStyleValue() is true
23
24 Omitting text decoration line resets to its initial value "none" ("text-decorati on: navy dotted;"):
25 PASS computedStyle.getPropertyCSSValue('text-decoration').cssText is 'none dotte d rgb(0, 0, 128)'
26 PASS computedStyle.getPropertyCSSValue('text-decoration-line').cssText is 'none'
27 PASS computedStyle.getPropertyCSSValue('text-decoration-style').cssText is 'dott ed'
28 PASS computedStyle.getPropertyCSSValue('text-decoration-color').cssText is 'rgb( 0, 0, 128)'
29 PASS checkComputedStyleValue() is true
30
31 PASS successfullyParsed is true
32
33 TEST COMPLETE
34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698