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

Side by Side Diff: LayoutTests/fast/css/all-shorthand-expected.html

Issue 335733003: Added layout tests for all shorthand property. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 <!DOCTYPE html>
2 <style>
3 #target1 { color: red; background-color: currentColor; }
4 #target1 { color: green; }
5
6 #parent { color: green; }
7 #target2 { color: red; background-color: currentColor; }
8
9 #target3 { color: green !important; }
10
11 #target4 { color: red !important; }
12 #target4 { background-color: red; }
13
14 #target5 { background-color: red; }
15 #target5 { color: green !important; }
16
17 #target6 { color: red !important; }
18
19 #target7 { direction: rtl; }
20
21 #target8 { direction: rtl !important; }
22
23 #parent9 { color: green; }
24 </style>
25 <div id='target1'>green color, green background-color</div>
26
27 <div id='parent'>
28 <div id='target2'>red color, red background-color</div>
29 </div>
30
31 <div id='target3'>green color</div>
32
33 <div id='target4'>red color, red background-color</div>
34
35 <div id='target5'>green color, red background-color</div>
36
37 <div id='target6'>red color</div>
38
39 <div id='target7'>direction is rtl</div>
40
41 <div id='target8'>direction is rtl</div>
42
43 <div id='parent9'>
44 <div id='target9'>green color</div>
45 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698