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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-child-nodes-traverse-frames.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 <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 type="text/javascript"> 4 <script type="text/javascript">
5 5
6 function test() 6 function test()
7 { 7 {
8 getDocument(); 8 getDocument();
9 9
10 function getDocument() 10 function getDocument()
11 { 11 {
12 InspectorTest.sendCommand("DOM.getDocument", {}, function(messageObject) { 12 InspectorTest.sendCommand("DOM.getDocument", {}, function(messageObject) {
13 if (messageObject.hasOwnProperty("error")) 13 if (messageObject.hasOwnProperty("error"))
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 <div id="depth-1"> 97 <div id="depth-1">
98 <div id="depth-2"> 98 <div id="depth-2">
99 <div id="depth-3"> 99 <div id="depth-3">
100 <iframe src="resources/iframe.html"></iframe> 100 <iframe src="resources/iframe.html"></iframe>
101 </div> 101 </div>
102 </div> 102 </div>
103 </div> 103 </div>
104 104
105 </body> 105 </body>
106 </html> 106 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698