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

Side by Side Diff: LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll.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 <style type="text/css"> 1 <style type="text/css">
2 .first { 2 .first {
3 height:400px; 3 height:400px;
4 background-color: red; 4 background-color: red;
5 -webkit-transform: translateZ(0); 5 transform: translateZ(0);
6 } 6 }
7 7
8 .second { 8 .second {
9 left: 100px; 9 left: 100px;
10 bottom: 0px; 10 bottom: 0px;
11 background-color:blue; 11 background-color:blue;
12 width:7px; 12 width:7px;
13 height:562px; 13 height:562px;
14 position: absolute; -webkit-transform: translateX(0) 14 position: absolute; transform: translateX(0)
15 } 15 }
16 16
17 .outer { 17 .outer {
18 overflow: scroll; 18 overflow: scroll;
19 /* FIXME: make this height: 500px to expose another bug */ 19 /* FIXME: make this height: 500px to expose another bug */
20 height: 600px; 20 height: 600px;
21 width: 500px; 21 width: 500px;
22 position: absolute; 22 position: absolute;
23 bottom:10px; 23 bottom:10px;
24 background-color: grey; 24 background-color: grey;
25 } 25 }
26 </style> 26 </style>
27 <div class="outer"> 27 <div class="outer">
28 <div class="first"> </div> 28 <div class="first"> </div>
29 <div class="second"> </div> 29 <div class="second"> </div>
30 </div> 30 </div>
31 <script> 31 <script>
32 if (window.internals) 32 if (window.internals)
33 window.internals.settings.setLayerSquashingEnabled(true); 33 window.internals.settings.setLayerSquashingEnabled(true);
34 </script> 34 </script>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/sibling-positioning.html ('k') | LayoutTests/compositing/squashing/add-remove-squashed-layers.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698