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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html

Issue 2145873002: [DevTools] Split inspector/tracing into subdirectories to speed things up. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 src="../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/timeline-test.js"></script> 4 <script src="../../../http/tests/inspector/timeline-test.js"></script>
5 <script> 5 <script>
6 function performActions(callback) 6 function performActions(callback)
7 { 7 {
8 var square = document.getElementById("square"); 8 var square = document.getElementById("square");
9 step1(); 9 step1();
10 10
11 function step1() 11 function step1()
12 { 12 {
13 square.style.backgroundColor = "red"; 13 square.style.backgroundColor = "red";
14 testRunner.layoutAndPaintAsyncThen(step2); 14 testRunner.layoutAndPaintAsyncThen(step2);
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 <body onload="runTest()"> 76 <body onload="runTest()">
77 <p> 77 <p>
78 Tests that paint profiler is properly update when an event is selected in Flame Chart 78 Tests that paint profiler is properly update when an event is selected in Flame Chart
79 </p> 79 </p>
80 80
81 <div id="square" style="width: 40px; height: 40px"></div> 81 <div id="square" style="width: 40px; height: 40px"></div>
82 82
83 </body> 83 </body>
84 </html> 84 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698