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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/web-animations/element-animate-keyframe-value-warning.html

Issue 2976613002: Move Web Animations API tests to subdirectory (Closed)
Patch Set: Created 3 years, 5 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 <div id="target"></div> 1 <div id="target"></div>
2 This test passes if there are three warnings about invalid keyframe values. 2 This test passes if there are three warnings about invalid keyframe values.
3 <script> 3 <script>
4 if (window.testRunner) { 4 if (window.testRunner) {
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 } 6 }
7 target.animate({offsetPath: ''}); 7 target.animate({offsetPath: ''});
8 target.animate({offsetPath: 'path("m0 0")'}); 8 target.animate({offsetPath: 'path("m0 0")'});
9 target.animate({offsetPath: 'path("invalid")'}); 9 target.animate({offsetPath: 'path("invalid")'});
10 target.animate({'--valid': ''}); 10 target.animate({'--valid': ''});
11 target.animate({'--x': 'valid'}); 11 target.animate({'--x': 'valid'});
12 target.animate({'--x': 'invalid )'}); 12 target.animate({'--x': 'invalid )'});
13 target.animate({'--x': 'invalid !important'}); 13 target.animate({'--x': 'invalid !important'});
14 target.animate([{background: 'green', backgroundColor: 'green'}]); 14 target.animate([{background: 'green', backgroundColor: 'green'}]);
15 </script> 15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698