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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/animated-filter-svg-element.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 @keyframes blur-animation { 4 @keyframes blur-animation {
5 from { 5 from {
6 filter: blur(10px); 6 filter: blur(10px);
7 } to { 7 } to {
8 filter: blur(10px); 8 filter: blur(10px);
9 } 9 }
10 } 10 }
11 11
12 #root, #child { 12 #root, #child {
13 display: block;
13 animation: blur-animation 1s infinite; 14 animation: blur-animation 1s infinite;
14 } 15 }
15 </style> 16 </style>
16 17
17 <svg id="root"> 18 <svg id="root" height="100">
18 <rect fill="blue" x="0" y="0" height="100" width="100" /> 19 <rect fill="blue" x="0" y="0" height="100" width="100" />
19 </svg> 20 </svg>
20 21
21 <svg> 22 <svg>
22 <rect id="child" fill="blue" x="0" y="0" height="100" width="100" /> 23 <rect id="child" fill="blue" x="0" y="0" height="100" width="100" />
23 </svg> 24 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698