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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/object-sizing-zero-intrinsic-width-height.html

Issue 1587023002: SVG with zero intrinsic size should be respected always (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added TODO Created 4 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/custom/object-sizing-zero-intrinsic-width-height-expected.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 <html>
3 <style>
4 object {
5 background: red;
6 }
7 </style>
8 <body style="margin: 0px; padding: 0px;">
9 <!--There should not be any red rectangle visible. -->
10 <object data="data:image/svg+xml,
11 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/ xlink' width='0' height='0'>
12 <rect width='50' height='50' fill='red'/>
13 </svg>
14 "></object>
15 <object data="data:image/svg+xml,
16 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/ xlink' width='50' height='0'>
17 <rect width='50' height='50' fill='red'/>
18 </svg>
19 "></object>
20 <object data="data:image/svg+xml,
21 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/ xlink' width='0' height='50'>
22 <rect width='50' height='50' fill='red'/>
23 </svg>
24 "></object>
25 <object data="data:image/svg+xml,
26 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/ xlink' width='0'>
27 <rect width='50' height='50' fill='red'/>
28 </svg>
29 "></object>
30 <object data="data:image/svg+xml,
31 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/ xlink' height='0'>
32 <rect width='50' height='50' fill='red'/>
33 </svg>
34 "></object>
35 </body>
36 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/custom/object-sizing-zero-intrinsic-width-height-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698