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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/page/enable-disable.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 test() 6 function test()
7 { 7 {
8 var log = []; 8 var log = [];
9 InspectorTest.eventHandler["Timeline.eventRecorded"] = eventRecorded; 9 InspectorTest.eventHandler["Timeline.eventRecorded"] = eventRecorded;
10 10
11 InspectorTest.sendCommand("Timeline.start", {}, timelineStarted); 11 InspectorTest.sendCommand("Timeline.start", {}, timelineStarted);
12 12
13 function timelineStarted() 13 function timelineStarted()
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 InspectorTest.logObject(msg); 57 InspectorTest.logObject(msg);
58 } 58 }
59 } 59 }
60 60
61 </script> 61 </script>
62 <link href="resources/style.css" rel="stylesheet"> 62 <link href="resources/style.css" rel="stylesheet">
63 </head> 63 </head>
64 <body onload="runTest()"> 64 <body onload="runTest()">
65 </body> 65 </body>
66 </html> 66 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698