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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/timeline/fetch-as-stream.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 <style> 3 <style>
4 div#test { 4 div#test {
5 display: none; 5 display: none;
6 background-color: blue; 6 background-color: blue;
7 width: 100px; 7 width: 100px;
8 height: 100px; 8 height: 100px;
9 } 9 }
10 </style> 10 </style>
11 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script> 11 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource s/inspector-protocol-test.js"></script>
12 <script type="text/javascript" src="../../http/tests/inspector-protocol/tracing- test.js"></script> 12 <script type="text/javascript" src="../resources/tracing-test.js"></script>
13 <script> 13 <script>
14 function performActions() 14 function performActions()
15 { 15 {
16 var element = document.getElementById("test"); 16 var element = document.getElementById("test");
17 element.style.display = "block"; 17 element.style.display = "block";
18 var unused = element.clientWidth; 18 var unused = element.clientWidth;
19 } 19 }
20 20
21 function test() 21 function test()
22 { 22 {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 InspectorTest.log("Event sanity test done"); 100 InspectorTest.log("Event sanity test done");
101 } 101 }
102 } 102 }
103 </script> 103 </script>
104 </head> 104 </head>
105 <body onload="runTest()"> 105 <body onload="runTest()">
106 <div id="test"> 106 <div id="test">
107 </div> 107 </div>
108 </body> 108 </body>
109 </html> 109 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698