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

Side by Side Diff: LayoutTests/svg/custom/cross-referenced-resources.html

Issue 23785014: [SVG] Resources should be laid out in dependecy order. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: text-layout-crash.html needs image result update. Created 7 years, 2 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 <body>
4 <!-- Test for https://code.google.com/p/chromium/issues/detail?id=282925.
5 Passes if it displays two green rects and doesn't crash in debug mode -->
6 <svg width="200" height="200" filter="url(#f2)" xmlns="http://www.w3.org/2000/ svg">
7 <filter height="150%" id="f1">
8 <feOffset dy="30"/>
9 </filter>
10 <rect id="r1" width="100" height="100" fill="green"/>
11 </svg>
12 <svg width="200" height="200" filter="url(#f1)" xmlns="http://www.w3.org/2000 /svg">
13 <filter width="150%" id="f2">
14 <feOffset dx="30"/>
15 </filter>
16 <rect id="r2" width="100" height="100" fill="green"/>
17 </svg>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698