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

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

Issue 209423003: Deflake inspector/tracing.html (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 var element = document.getElementById("test");
16 element.style.display = "block";
17 var unused = element.clientWidth;
16 } 18 }
17 19
18 function test() 20 function test()
19 { 21 {
20 function runEventsSanityCheck(events) 22 function runEventsSanityCheck(events)
21 { 23 {
22 var phaseComplete = 0; 24 var phaseComplete = 0;
23 var knownEvents = {}; 25 var knownEvents = {};
24 var processes = {}; 26 var processes = {};
25 var threads = {}; 27 var threads = {};
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 } 68 }
67 } 69 }
68 70
69 </script> 71 </script>
70 </head> 72 </head>
71 <body onload="runTest()"> 73 <body onload="runTest()">
72 <div id="test"> 74 <div id="test">
73 </div> 75 </div>
74 </body> 76 </body>
75 </html> 77 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698