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

Side by Side Diff: LayoutTests/compositing/overflow/overflow-scrollbar-layers.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 width: 100px; 4 width: 100px;
5 height:100px; 5 height:100px;
6 position:absolute; 6 position:absolute;
7 -webkit-transform:translateZ(0); 7 transform:translateZ(0);
8 overflow:auto; 8 overflow:auto;
9 } 9 }
10 10
11 .content { 11 .content {
12 -webkit-transform: translateZ(0); 12 transform: translateZ(0);
13 position:absolute; 13 position:absolute;
14 width:10px; 14 width:10px;
15 height:10px; 15 height:10px;
16 } 16 }
17 17
18 .tall { 18 .tall {
19 height:200px; 19 height:200px;
20 } 20 }
21 21
22 .wide { 22 .wide {
(...skipping 17 matching lines...) Expand all
40 </div> 40 </div>
41 <div class="container resizeWidget"> 41 <div class="container resizeWidget">
42 <div class="content"></div> 42 <div class="content"></div>
43 </div> 43 </div>
44 <script> 44 <script>
45 if (window.testRunner) { 45 if (window.testRunner) {
46 testRunner.dumpAsText(); 46 testRunner.dumpAsText();
47 document.getElementById("layerTree").innerText = window.internals.layerTreeA sText(document); 47 document.getElementById("layerTree").innerText = window.internals.layerTreeA sText(document);
48 } 48 }
49 </script> 49 </script>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/overflow/overflow-scroll.html ('k') | LayoutTests/compositing/overflow/parent-overflow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698