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

Side by Side Diff: LayoutTests/compositing/layer-creation/no-compositing-for-fixed-position-under-transform.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 <head> 3 <head>
4 <style> 4 <style>
5 .transform { 5 .transform {
6 width: 100px; 6 width: 100px;
7 height: 30px; 7 height: 30px;
8 -webkit-transform: translateZ(0); 8 transform: translateZ(0);
9 } 9 }
10 .fixed { 10 .fixed {
11 position: fixed; 11 position: fixed;
12 left: 10px; 12 left: 10px;
13 top: 10px; 13 top: 10px;
14 } 14 }
15 </style> 15 </style>
16 16
17 <script type="text/javascript"> 17 <script type="text/javascript">
18 if (window.internals) 18 if (window.internals)
(...skipping 13 matching lines...) Expand all
32 <body> 32 <body>
33 <div class="transform"> 33 <div class="transform">
34 <!-- This element should neither be composited nor force main thread scrolli ng. --> 34 <!-- This element should neither be composited nor force main thread scrolli ng. -->
35 <div class="fixed">TEST</div> 35 <div class="fixed">TEST</div>
36 </div> 36 </div>
37 37
38 <pre id="layerTree"></pre> 38 <pre id="layerTree"></pre>
39 <pre id="mainThreadScrollingReasons"></pre> 39 <pre id="mainThreadScrollingReasons"></pre>
40 </body> 40 </body>
41 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698