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

Side by Side Diff: LayoutTests/compositing/geometry/assert-layout-not-done.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 <html> 2 <html>
3 <style> 3 <style>
4 .container { 4 .container {
5 position: relative; 5 position: relative;
6 z-index: 0; 6 z-index: 0;
7 top: 123px; /* easy to detect values */ 7 top: 123px; /* easy to detect values */
8 left: 123px; /* easy to detect values */ 8 left: 123px; /* easy to detect values */
9 } 9 }
10 #child { 10 #child {
11 width: 100px; 11 width: 100px;
12 height: 100px; 12 height: 100px;
13 background-color: gray; 13 background-color: gray;
14 -webkit-transform: translateZ(0px); 14 transform: translateZ(0px);
15 } 15 }
16 </style> 16 </style>
17 <script> 17 <script>
18 if (window.testRunner) 18 if (window.testRunner)
19 testRunner.dumpAsText(); 19 testRunner.dumpAsText();
20 </script> 20 </script>
21 <body> 21 <body>
22 <!-- This test passes if there's no ASSERT in debug mode. There should b e a gray rectangle on screen. --> 22 <!-- This test passes if there's no ASSERT in debug mode. There should b e a gray rectangle on screen. -->
23 <div class="container"> 23 <div class="container">
24 <div id="child"></div> 24 <div id="child"></div>
25 </div> 25 </div>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698