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

Side by Side Diff: LayoutTests/virtual/implsidepainting/inspector/tracing/paint-command-log-nodes.html

Issue 477153005: DevTools: adopt existing Timeline tests for tracing based Timeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 </style> 4 </style>
5 <script src="../../../../../http/tests/inspector/inspector-test.js"></script> 5 <script src="../../../../http/tests/inspector/inspector-test.js"></script>
6 <script src="../../../../../http/tests/inspector/timeline-test.js"></script> 6 <script src="../../../../http/tests/inspector/timeline-test.js"></script>
7 <script src="../../../../../inspector/tracing-test.js"></script> 7 <script src="../../../../inspector/tracing-test.js"></script>
8 <script> 8 <script>
9 9
10 function doActions(callback) 10 function doActions(callback)
11 { 11 {
12 document.getElementById("a").style.visibility = "visible"; 12 document.getElementById("a").style.visibility = "visible";
13 requestAnimationFrame(function() { 13 requestAnimationFrame(function() {
14 testRunner.displayAsyncThen(callback); 14 testRunner.displayAsyncThen(callback);
15 }); 15 });
16 } 16 }
17 17
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 </p> 98 </p>
99 <div id="a" style="visibility:hidden; -webkit-transform: translateZ(0px); backgr ound-color:blue; width:100px; height:100px;"> 99 <div id="a" style="visibility:hidden; -webkit-transform: translateZ(0px); backgr ound-color:blue; width:100px; height:100px;">
100 <div id="b" style="width:50px; height:50px; background-color:red;"></div> 100 <div id="b" style="width:50px; height:50px; background-color:red;"></div>
101 <img id="c" src="../timeline/resources/test.png"> 101 <img id="c" src="../timeline/resources/test.png">
102 <svg id="d"> 102 <svg id="d">
103 <rect id="e" x="0" y="0" width="10" height="10" style="opacity:0.5"/> 103 <rect id="e" x="0" y="0" width="10" height="10" style="opacity:0.5"/>
104 </svg> 104 </svg>
105 </div> 105 </div>
106 </body> 106 </body>
107 </html> 107 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698