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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/wicd/rightsizing-grid-expected.html

Issue 1542563002: Rewrite LayoutTest svg/wicd/rightsizing-grid as a reftest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add note about test inspiration Created 4 years, 12 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 <title>SVG grid with percentage width</title>
3 <style type="text/css">
4 body { width: 240px; }
5 </style>
6 <h1>SVG grid with percentage width</h1>
7 <p>
8 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 320">
9 <rect width="120" height="40" fill="salmon"/>
10 <rect x="120" width="120" height="40" fill="purple"/>
11
12 <rect y="40" width="80" height="140" fill="rosybrown"/>
13 <rect y="40" x="80" width="80" height="80" fill="pink"/>
14 <rect y="120" x="80" width="80" height="60" fill="yellow"/>
15 <rect y="40" x="160" width="80" height="80" fill="darkcyan"/>
16 <rect y="120" x="160" width="80" height="60" fill="darkgoldenrod"/>
17
18 <rect y="180" width="120" height="40" fill="peachpuff"/>
19 <rect y="180" x="120" width="120" height="40" fill="mistyrose"/>
20
21 <rect y="220" width="30" height="60" fill="lightblue"/>
22 <rect y="220" x="30" width="90" height="60" fill="orange"/>
23 <rect y="220" x="120" width="60" height="60" fill="grey"/>
24 <rect y="220" x="180" width="60" height="60" fill="lightgoldenrodyellow" />
25
26 <rect y="280" width="120" height="40" fill="lightgrey"/>
27 <rect y="280" x="120" width="90" height="40" fill="green"/>
28 <rect y="280" x="210" width="30" height="40" fill="plum"/>
29 </svg>
30 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698