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

Side by Side Diff: LayoutTests/animations/keyframes-rule.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style type="text/css" media="screen"> 3 <style type="text/css" media="screen">
4 @-webkit-keyframes test1 { 4 @-webkit-keyframes test1 {
5 from { left: 10px; } 5 from { left: 10px; }
6 to { left: 20px; } 6 to { left: 20px; }
7 } 7 }
8 @-webkit-keyframes test2 { 8 @-webkit-keyframes test2 {
9 0% { left: 10px; } 9 0% { left: 10px; }
10 50% , 60% { left: 30px; } 10 50% , 60% { left: 30px; }
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 debug("Set a keyframe key with a null value"); 246 debug("Set a keyframe key with a null value");
247 247
248 rules2.item(0).keyText = null; 248 rules2.item(0).keyText = null;
249 shouldBe("rules2.length", "2"); 249 shouldBe("rules2.length", "2");
250 shouldBe("rules2.item(0).type", "window.CSSRule.WEBKIT_KEYFRAME_RULE"); 250 shouldBe("rules2.item(0).type", "window.CSSRule.WEBKIT_KEYFRAME_RULE");
251 // FIXME: Should we leave keyText unchanged when attempting to set to something invalid? 251 // FIXME: Should we leave keyText unchanged when attempting to set to something invalid?
252 shouldBe("rules2.item(0).keyText", "'null'"); 252 shouldBe("rules2.item(0).keyText", "'null'");
253 shouldBe("rules2.item(1).keyText", "'90%,100%'"); 253 shouldBe("rules2.item(1).keyText", "'90%,100%'");
254 254
255 </script> 255 </script>
256 <script src="../fast/js/resources/js-test-post.js"></script>
257 </body> 256 </body>
258 </html> 257 </html>
OLDNEW
« no previous file with comments | « LayoutTests/animations/keyframes-cssom-unprefixed-02.html ('k') | LayoutTests/animations/script-tests/TEMPLATE.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698