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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify-inherited-expected.txt

Issue 17155007: [CSS3] Parsing the property, text-justify. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parsingTextJustify
Patch Set: Created 7 years, 5 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
OLDNEW
(Empty)
1 This test checks that the value of text-justify is properly inherited to the chi ld.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 Value of ancestor is 'auto':
7 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe xt is 'auto'
8 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'auto'
9
10 Value of ancestor is 'none':
11 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe xt is 'none'
12 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'none'
13
14 Value of ancestor is 'inter-word':
15 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe xt is 'inter-word'
16 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'inter-word'
17
18 Value of ancestor is 'distribute':
19 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe xt is 'distribute'
20 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'distribute'
21
22 Value of ancestor is 'inter-word, while child is 'distribute':
23 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe xt is 'inter-word'
24 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'distribute'
25
26 Value of ancestor is 'none, while child is 'distribute':
27 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe xt is 'none'
28 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'distribute'
29
30 PASS successfullyParsed is true
31
32 TEST COMPLETE
33 hello world
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698