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

Side by Side Diff: LayoutTests/animations/keyframes-missing-arguments.html

Issue 790303002: Make CSSKeyframesRule function arguments non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | LayoutTests/animations/keyframes-missing-arguments-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>CSSKeyframesRule functions missing arguments</title>
3 <style>
4 @keyframes anim {
5 }
6 </style>
7 <script src="../resources/js-test.js"></script>
8 <script>
9 var keyframes = document.styleSheets[0].rules[0];
10 shouldBeType("keyframes", "CSSKeyframesRule");
11 shouldThrow("keyframes.insertRule()");
12 shouldThrow("keyframes.appendRule()");
13 shouldThrow("keyframes.deleteRule()");
14 shouldThrow("keyframes.findRule()");
15 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/animations/keyframes-missing-arguments-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698