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

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

Issue 216803002: Implement all shorthand property. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed ASSERT_NOT_REACH in linux_blink_dbg Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #target1 { display: initial; color: green; background: initial; }
6
7 #parent { color: green; }
8 #target2 { display: inherit; color: inherit; background: inherit; }
9
10 #target3 { display: initial; color: green; background: initial; }
11
12 #target4 { display: initial; color: initial; background: initial; }
13
14 #target5 { display: initial; color: green; background: initial; }
15
16 #target6 { display: initial; color: initial; background: initial; }
17
18 #target7 { display: initial; direction: rtl; }
19
20 #target8 { display: initial; direction: rtl; }
21
22 #parent9 { color: green; }
23 #target9 { display: initial; color: inherit; }
24 </style>
25 </head>
26 <body>
27 <div id='target1'>green color, no background-color</div>
28
29 <div id='parent'>
30 <div id='target2'>green color, no background-color</div>
31 </div>
32
33 <div id='target3'>green color</div>
34
35 <div id='target4'>not red color</div>
36
37 <div id='target5'>green color, no background-color</div>
38
39 <div id='target6'>not red color</div>
40
41 <div id='target7'>direction is rtl</div>
42
43 <div id='target8'>direction is rtl</div>
44
45 <div id='parent9'>
46 <div id='target9'>green color</div>
47 </div>
48 </body>
49 </html>
50
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698