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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-paused-css-animation.html

Issue 2951643002: [DevTools] Prepare inspector-protocol tests to new test runner (Closed)
Patch Set: css3/fonts Created 3 years, 6 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 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script> 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource s/inspector-protocol-test.js"></script>
4 <style type="text/css"> 4 <style type="text/css">
5 #node.anim { 5 #node.anim {
6 animation: anim 300ms ease-in-out paused; 6 animation: anim 300ms ease-in-out paused;
7 } 7 }
8 8
9 @keyframes anim { 9 @keyframes anim {
10 from { 10 from {
11 width: 100px; 11 width: 100px;
12 } 12 }
13 to { 13 to {
(...skipping 26 matching lines...) Expand all
40 InspectorTest.completeTest(); 40 InspectorTest.completeTest();
41 } 41 }
42 } 42 }
43 43
44 </script> 44 </script>
45 </head> 45 </head>
46 <body onload="runTest()"> 46 <body onload="runTest()">
47 <div id="node" style="background-color: red; width: 100px"></div> 47 <div id="node" style="background-color: red; width: 100px"></div>
48 </body> 48 </body>
49 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698