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

Side by Side Diff: LayoutTests/compositing/layer-creation/backing-requirement-changes.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 <style> 3 <style>
4 #outer { 4 #outer {
5 position: absolute; 5 position: absolute;
6 top: 0px; 6 top: 0px;
7 left: -1000px; 7 left: -1000px;
8 height: 300px; 8 height: 300px;
9 width: 300px; 9 width: 300px;
10 z-index: 1; 10 z-index: 1;
11 overflow: auto; 11 overflow: auto;
12 background-color: green; 12 background-color: green;
13 } 13 }
14 14
15 #inner { 15 #inner {
16 -webkit-transform: translateZ(0); 16 transform: translateZ(0);
17 background-color: blue; 17 background-color: blue;
18 } 18 }
19 19
20 #overlap { 20 #overlap {
21 width: 500px; 21 width: 500px;
22 height: 500px; 22 height: 500px;
23 background-color: yellow; 23 background-color: yellow;
24 -webkit-transform: translateZ(0); 24 transform: translateZ(0);
25 } 25 }
26 </style> 26 </style>
27 <script type="text/javascript"> 27 <script type="text/javascript">
28 if (window.testRunner) { 28 if (window.testRunner) {
29 testRunner.waitUntilDone(); 29 testRunner.waitUntilDone();
30 } 30 }
31 31
32 function doTest() 32 function doTest()
33 { 33 {
34 if (window.internals) { 34 if (window.internals) {
(...skipping 11 matching lines...) Expand all
46 </script> 46 </script>
47 </head> 47 </head>
48 48
49 <body> 49 <body>
50 <div id="outer"> 50 <div id="outer">
51 <div id="inner"></div> 51 <div id="inner"></div>
52 </div> 52 </div>
53 <div id="overlap"></div> 53 <div id="overlap"></div>
54 </body> 54 </body>
55 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698