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

Side by Side Diff: LayoutTests/inspector-protocol/loading-iframe-document-node.html

Issue 183663014: DevTools: Unify protocol test scripts naming with frontend tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed tests Created 6 years, 9 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 | Annotate | Revision Log
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/resources/p rotocol-test.js"></script> 4 <script type="text/javascript" src="../http/tests/inspector-protocol/inspector-p rotocol-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-with-debugger-statement.html"; 9 frame.src = "resources/test-page-with-debugger-statement.html";
10 document.body.appendChild(frame); 10 document.body.appendChild(frame);
11 } 11 }
12 12
13 function test() 13 function test()
14 { 14 {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 InspectorTest.log("FAIL: Iframe load event fired before the test finishe d."); 80 InspectorTest.log("FAIL: Iframe load event fired before the test finishe d.");
81 } 81 }
82 82
83 step1_bootstrap() 83 step1_bootstrap()
84 } 84 }
85 </script> 85 </script>
86 </head> 86 </head>
87 <body onload="runTest()"> 87 <body onload="runTest()">
88 </body> 88 </body>
89 </html> 89 </html>
OLDNEW
« no previous file with comments | « LayoutTests/inspector-protocol/layers/paint-profiler.html ('k') | LayoutTests/inspector-protocol/page/enable-disable.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698