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

Side by Side Diff: LayoutTests/compositing/geometry/fixed-position-iframe-composited-page-scale-down.html

Issue 1318603005: Revert of Replace pinch scrollbars with regular scrollbars. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 ::-webkit-scrollbar {
6 width: 0px;
7 height: 0px;
8 }
9 .fixed-no-z-index { 5 .fixed-no-z-index {
10 position: absolute; 6 position: absolute;
11 left: 10px; 7 left: 10px;
12 } 8 }
13 .fixed-with-z-index { 9 .fixed-with-z-index {
14 position: fixed; 10 position: fixed;
15 z-index: 1; 11 z-index: 1;
16 left: 10px; 12 left: 10px;
17 } 13 }
18 </style> 14 </style>
(...skipping 11 matching lines...) Expand all
30 d.write("<div style='position:fixed; z-index: 1; left; 10px;'>TEST</div>"); 26 d.write("<div style='position:fixed; z-index: 1; left; 10px;'>TEST</div>");
31 d.close(); 27 d.close();
32 } 28 }
33 </script> 29 </script>
34 </head> 30 </head>
35 <body onload="test();" style="width:2000px;height:2000px;"> 31 <body onload="test();" style="width:2000px;height:2000px;">
36 <div class="fixed-no-z-index">TEST</div><br> 32 <div class="fixed-no-z-index">TEST</div><br>
37 <iframe id="frame"></iframe> 33 <iframe id="frame"></iframe>
38 </body> 34 </body>
39 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698