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

Side by Side Diff: LayoutTests/compositing/iframes/resizer.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 .container { 3 .container {
4 -webkit-transform: translateZ(0); 4 transform: translateZ(0);
5 resize: both; 5 resize: both;
6 } 6 }
7 </style> 7 </style>
8 <script> 8 <script>
9 function test() { 9 function test() {
10 if (window.testRunner) { 10 if (window.testRunner) {
11 testRunner.dumpAsText(); 11 testRunner.dumpAsText();
12 document.getElementById('layers').innerHTML = window.internals.layerTree AsText(document); 12 document.getElementById('layers').innerHTML = window.internals.layerTree AsText(document);
13 } 13 }
14 } 14 }
15 </script> 15 </script>
16 <!-- There should be a layer for the iframe's scroll corner alongside the iframe 's content's layer tree --> 16 <!-- There should be a layer for the iframe's scroll corner alongside the iframe 's content's layer tree -->
17 <body onload="test()"> 17 <body onload="test()">
18 <iframe class="container" src="resources/composited-subframe.html"></iframe> 18 <iframe class="container" src="resources/composited-subframe.html"></iframe>
19 <pre id="layers">Layer tree appears here in DRT.</pre> 19 <pre id="layers">Layer tree appears here in DRT.</pre>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698