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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-multiple-frames.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 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script> 4 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource s/inspector-protocol-test.js"></script>
5 <script> 5 <script>
6 function appendIframe() 6 function appendIframe()
7 { 7 {
8 var frame = document.createElement("iframe"); 8 var frame = document.createElement("iframe");
9 frame.src = "../resources/test-page-trigger-animation.html"; 9 frame.src = "../resources/test-page-trigger-animation.html";
10 document.body.appendChild(frame); 10 document.body.appendChild(frame);
11 } 11 }
12 12
13 function test() 13 function test()
14 { 14 {
(...skipping 23 matching lines...) Expand all
38 InspectorTest.evaluateInPage("appendIframe()", frameAttached); 38 InspectorTest.evaluateInPage("appendIframe()", frameAttached);
39 else 39 else
40 InspectorTest.completeTest(); 40 InspectorTest.completeTest();
41 } 41 }
42 } 42 }
43 </script> 43 </script>
44 </head> 44 </head>
45 <body onload="runTest()"> 45 <body onload="runTest()">
46 </body> 46 </body>
47 </html> 47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698