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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/filters/svg-element-invalid-filter-expected.html

Issue 2349743003: Don't treat shorthand filters as errors on SVG content (Closed)
Patch Set: Fix animation test Created 4 years, 3 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
1 <!doctype html> 1 <!doctype html>
2 2
3 <style> 3 <style>
4 svg { 4 svg {
5 width: 100px; 5 width: 100px;
6 height: 100px; 6 height: 100px;
7 margin: 1px; 7 margin: 1px;
8 } 8 }
9 9
10 #test-root { 10 #test-root {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 </svg> 53 </svg>
54 </p> 54 </p>
55 55
56 <p id="test-child"> 56 <p id="test-child">
57 57
58 <!-- SVG child element: the first filter is valid, the rest are not. --> 58 <!-- SVG child element: the first filter is valid, the rest are not. -->
59 59
60 <svg viewBox="0 0 50 50"> 60 <svg viewBox="0 0 50 50">
61 <rect fill="lime" x="0" y="0" height="50" width="50"/> 61 <rect fill="lime" x="0" y="0" height="50" width="50"/>
62 </svg> 62 </svg>
63
64 <svg viewBox="0 0 50 50">
65 <rect fill="lime" x="0" y="0" height="50" width="50"/>
66 </svg>
67
68 <svg viewBox="0 0 50 50">
69 <rect fill="lime" x="0" y="0" height="50" width="50"/>
70 </svg>
63 </p> 71 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698