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

Side by Side Diff: LayoutTests/inspector/timeline/timeline-layer-tree-snapshot.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 src="../../http/tests/inspector/layers-test.js"></script> 5 <script src="../../http/tests/inspector/layers-test.js"></script>
6 <style> 6 <style>
7 .layer { 7 .layer {
8 width: 100px; 8 width: 100px;
9 height: 100px; 9 height: 100px;
10 -webkit-transform: translateZ(10px); 10 transform: translateZ(10px);
11 } 11 }
12 </style> 12 </style>
13 <script> 13 <script>
14 14
15 function addLayer() 15 function addLayer()
16 { 16 {
17 var element = document.createElement("div"); 17 var element = document.createElement("div");
18 element.className = "layer"; 18 element.className = "layer";
19 document.body.appendChild(element); 19 document.body.appendChild(element);
20 } 20 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 </script> 72 </script>
73 </head> 73 </head>
74 74
75 <body onload="runTest()"> 75 <body onload="runTest()">
76 <p> 76 <p>
77 Tests the Timeline API instrumentation of a Layout event 77 Tests the Timeline API instrumentation of a Layout event
78 </p> 78 </p>
79 </body> 79 </body>
80 </html> 80 </html>
OLDNEW
« no previous file with comments | « LayoutTests/inspector/layers/tracing-layer-tree.html ('k') | LayoutTests/inspector/tracing-session-id.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698