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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/object-sizing-zero-intrinsic-width-height-expected.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: Align with review comments Created 4 years, 11 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body style="margin: 0px; padding: 0px;">
4 <!--There should not be any red rectangle visible. -->
davve 2016/01/20 07:54:22 Not sure why you have all these SVGs that's not su
Shanmuga Pandi 2016/01/20 13:41:40 Ah. My intention of this file is just as the outpu
davve 2016/01/20 16:05:19 If you just want an empty file '<!DOCTYPE html>' w
Shanmuga Pandi 2016/01/28 11:21:57 Done.
5 <svg width='0' height='0'>
6 <rect width='50' height='50' fill='red'/>
7 </svg>
8
9 <svg width='50' height='0'>
10 <rect width='50' height='50' fill='red'/>
11 </svg>
12
13 <svg width='0' height='50'>
14 <rect width='50' height='50' fill='red'/>
15 </svg>
16 </body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698