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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-layout-invalidations-on-deleted-node.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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../http/tests/inspector/inspector-test.js"></script> 4 <script src="../../../http/tests/inspector/inspector-test.js"></script>
5 <script src="../../http/tests/inspector/timeline-test.js"></script> 5 <script src="../../../http/tests/inspector/timeline-test.js"></script>
6 <script> 6 <script>
7 function display(callback) 7 function display(callback)
8 { 8 {
9 requestAnimationFrame(function() { 9 requestAnimationFrame(function() {
10 document.body.style.backgroundColor = "blue"; 10 document.body.style.backgroundColor = "blue";
11 var element = document.getElementById("testElement"); 11 var element = document.getElementById("testElement");
12 element.style.width = "100px"; 12 element.style.width = "100px";
13 var forceLayout = document.body.offsetTop; 13 var forceLayout = document.body.offsetTop;
14 element.parentElement.removeChild(element); 14 element.parentElement.removeChild(element);
15 if (window.testRunner) 15 if (window.testRunner)
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 next(); 61 next();
62 }); 62 });
63 } 63 }
64 ]); 64 ]);
65 } 65 }
66 </script> 66 </script>
67 </head> 67 </head>
68 <body onload="runTest()"> 68 <body onload="runTest()">
69 <p>Tests the Timeline API instrumentation of layout invalidations on a deleted n ode.</p> 69 <p>Tests the Timeline API instrumentation of layout invalidations on a deleted n ode.</p>
70 <div id="testElement">FAIL - this should not be present when the test finishes.< /div> 70 <div id="testElement">FAIL - this should not be present when the test finishes.< /div>
71 <iframe src="resources/timeline-iframe-paint.html" style="position: absolute; le ft: 40px; top: 40px; width: 100px; height: 100px; border: none"></iframe> 71 <iframe src="../resources/timeline-iframe-paint.html" style="position: absolute; left: 40px; top: 40px; width: 100px; height: 100px; border: none"></iframe>
72 </body> 72 </body>
73 </html> 73 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698