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

Side by Side Diff: LayoutTests/svg/css/display.html

Issue 379463002: Display property as specified on svg elements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/svg/css/display-computed.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 svg {
4 width: 20px;
5 height: 20px;
6 background: green;
7 }
8
9 .table { display: table }
10
11 #t1 { display: inline }
12 #t2 { display: block; }
13 #t3 { display: inline-block; }
14 #t4 { display: inline-table; }
15 #t5 { display: table; }
16 #t6 { display: table-cell; }
17 </style>
18 <svg id="t1"></svg>
19 <svg id="t2"></svg>
20 <svg id="t3"></svg>
21 <svg id="t4"></svg>
22 <svg id="t5"></svg>
23 <div class="table">
24 &nbsp;
25 <svg id="t6"></svg>
26 </div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/css/display-computed.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698