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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/network/resource-type.html

Issue 2942573003: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: Protocol -> dp 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 src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></s cript> 4 <script src="../../http/tests/inspector-protocol/resources/inspector-protocol-te st.js"></script>
5 <script> 5 <script>
6 function appendIframe() 6 function appendIframe()
7 { 7 {
8 var iframe = document.createElement("iframe"); 8 var iframe = document.createElement("iframe");
9 iframe.src = "resources/resources-page.html"; 9 iframe.src = "resources/resources-page.html";
10 document.body.appendChild(iframe); 10 document.body.appendChild(iframe);
11 } 11 }
12 12
13 function test() 13 function test()
14 { 14 {
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 116
117 enableNetwork(); 117 enableNetwork();
118 } 118 }
119 </script> 119 </script>
120 </head> 120 </head>
121 <body onload="runTest();"> 121 <body onload="runTest();">
122 <p>Tests that responseReceived contains the 122 <p>Tests that responseReceived contains the
123 <a href="https://developers.google.com/chrome-developer-tools/docs/protocol/ tot/page#type-ResourceType">documented resource types</a>. 123 <a href="https://developers.google.com/chrome-developer-tools/docs/protocol/ tot/page#type-ResourceType">documented resource types</a>.
124 </p> 124 </p>
125 </body> 125 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698