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

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

Issue 224723023: Implements hanging property for text-indent from CSS3 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update description Created 6 years, 8 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
1 This test checks that the value of text-indent is properly inherited to the chil d. 1 This test checks that the value of text-indent is properly inherited to the chil d.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Value of ancestor is '10px': 6 Value of ancestor is '10px':
7 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px' 7 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px'
8 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px' 8 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px'
9 9
10 Value of ancestor is '10px each-line': 10 Value of ancestor is '10px each-line':
11 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px each-line' 11 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px each-line'
12 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px eac h-line' 12 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px eac h-line'
13 13
14 Value of ancestor is '10px hanging':
15 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px hanging'
16 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px han ging'
17
18 Value of ancestor is '10px each-line hanging':
19 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px each-line hanging'
20 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px eac h-line hanging'
21
14 Value of ancestor is '10px each-line', while child is '10px': 22 Value of ancestor is '10px each-line', while child is '10px':
15 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px each-line' 23 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px each-line'
16 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px' 24 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px'
17 25
26 Value of ancestor is '10px hanging', while child is '10px':
27 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px hanging'
28 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px'
29
30 Value of ancestor is '10px each-line hanging', while child is '10px':
31 PASS window.getComputedStyle(ancestor).getPropertyValue('text-indent') is '10px each-line hanging'
32 PASS window.getComputedStyle(child).getPropertyValue('text-indent') is '10px'
33
18 PASS successfullyParsed is true 34 PASS successfullyParsed is true
19 35
20 TEST COMPLETE 36 TEST COMPLETE
21 37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698