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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/page/frameAttachedStacktrace.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 <script> 4 <script>
5 5
6 function createFrame() 6 function createFrame()
7 { 7 {
8 var frame = document.createElement("iframe"); 8 var frame = document.createElement("iframe");
9 frame.src = "data:text/html,<html><body><script>%0A" + 9 frame.src = "data:text/html,<html><body><script>%0A" +
10 "var innerFrame = document.createElement('iframe');%0A" + 10 "var innerFrame = document.createElement('iframe');%0A" +
11 "innerFrame.src = 'about:blank';%0A" + 11 "innerFrame.src = 'about:blank';%0A" +
12 "document.body.appendChild(innerFrame);%0A" + 12 "document.body.appendChild(innerFrame);%0A" +
13 "<" + "/script></body></html>"; 13 "<" + "/script></body></html>";
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 InspectorTest.log("]"); 83 InspectorTest.log("]");
84 InspectorTest.log(""); 84 InspectorTest.log("");
85 } 85 }
86 } 86 }
87 </script> 87 </script>
88 </head> 88 </head>
89 <body onload="runTest()"> 89 <body onload="runTest()">
90 <iframe src="about:blank" /> 90 <iframe src="about:blank" />
91 </body> 91 </body>
92 </html> 92 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698