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

Side by Side Diff: LayoutTests/inspector/tracing.html

Issue 183703003: Remove more testRunner.display() calls from LayoutTests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Ditch fast/text/font-initial changes too Created 6 years, 9 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 | Annotate | Revision Log
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 src="../http/tests/inspector/inspector-test.js"></script> 11 <script src="../http/tests/inspector/inspector-test.js"></script>
12 <script> 12 <script>
13 function doWork() 13 function doWork()
14 { 14 {
15 document.getElementById("test").style.display = "block"; 15 document.getElementById("test").style.display = "block";
16 testRunner.display();
17 } 16 }
18 17
19 function test() 18 function test()
20 { 19 {
21 function runEventsSanityCheck(events) 20 function runEventsSanityCheck(events)
22 { 21 {
23 var phaseComplete = 0; 22 var phaseComplete = 0;
24 var knownEvents = {}; 23 var knownEvents = {};
25 var processes = {}; 24 var processes = {};
26 var threads = {}; 25 var threads = {};
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 } 66 }
68 } 67 }
69 68
70 </script> 69 </script>
71 </head> 70 </head>
72 <body onload="runTest()"> 71 <body onload="runTest()">
73 <div id="test"> 72 <div id="test">
74 </div> 73 </div>
75 </body> 74 </body>
76 </html> 75 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698