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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/keyframe-exceptions.html

Issue 2140513004: Moved test not intended for upstreaming to W3C (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/web-animations-api/keyframe-exceptions.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script> 2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="../resources/testharnessreport.js"></script>
4 4
5 <script> 5 <script>
6 function assert_throws_with_message(e, f, m) { 6 function assert_throws_with_message(e, f, m) {
7 try { 7 try {
8 f(); 8 f();
9 } catch(exception) { 9 } catch(exception) {
10 assert_equals(exception.name, e); 10 assert_equals(exception.name, e);
(...skipping 24 matching lines...) Expand all
35 assert_throws_with_message('TypeError', 35 assert_throws_with_message('TypeError',
36 function() { 36 function() {
37 document.documentElement.animate([ 37 document.documentElement.animate([
38 {offset: -1} 38 {offset: -1}
39 ]); 39 ]);
40 }, 40 },
41 "Failed to execute 'animate' on 'Element': Offsets provided outside the rang e [0, 1]" 41 "Failed to execute 'animate' on 'Element': Offsets provided outside the rang e [0, 1]"
42 ); 42 );
43 }); 43 });
44 </script> 44 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/web-animations-api/keyframe-exceptions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698