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

Side by Side Diff: LayoutTests/animations/keyframes-cssom-unprefixed-02.html

Issue 58533003: Move fast/js/resources files to resources. (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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html lang="en"> 2 <html lang="en">
3 <head> 3 <head>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../resources/js-test.js"></script>
5 <style type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 #test { 6 #test {
7 position: absolute; 7 position: absolute;
8 left: 0; 8 left: 0;
9 top: 100px; 9 top: 100px;
10 height: 100px; 10 height: 100px;
11 width: 100px; 11 width: 100px;
12 background-color: blue; 12 background-color: blue;
13 animation-duration: 1s; 13 animation-duration: 1s;
14 animation-timing-function: linear; 14 animation-timing-function: linear;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 shouldBeEqualToString("keyframeRule.cssRules[1].cssText", "0% { left: 200px; }") ; 48 shouldBeEqualToString("keyframeRule.cssRules[1].cssText", "0% { left: 200px; }") ;
49 shouldBeEqualToString("keyframeRule.cssRules[1].keyText", "0%"); 49 shouldBeEqualToString("keyframeRule.cssRules[1].keyText", "0%");
50 shouldBeEqualToString("keyframeRule.cssRules[1].style.cssText", "left: 200px;"); 50 shouldBeEqualToString("keyframeRule.cssRules[1].style.cssText", "left: 200px;");
51 51
52 shouldThrow("new CSSKeyframesRule().name", "'TypeError: Illegal constructor'"); 52 shouldThrow("new CSSKeyframesRule().name", "'TypeError: Illegal constructor'");
53 53
54 document.body.removeChild(testContainer); 54 document.body.removeChild(testContainer);
55 </script> 55 </script>
56 </body> 56 </body>
57 </html> 57 </html>
OLDNEW
« no previous file with comments | « LayoutTests/animations/keyframes-cssom-prefixed-02.html ('k') | LayoutTests/animations/keyframes-rule.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698