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

Side by Side Diff: LayoutTests/compositing/overflow/fixed-position-ancestor-clip.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> 1 <!DOCTYPE>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <title>Position fixed with transform</title> 5 <title>Position fixed with transform</title>
6 <style type="text/css" media="screen"> 6 <style type="text/css" media="screen">
7 ::-webkit-scrollbar {
8 width: 0px;
9 height: 0px;
10 }
11 body { 7 body {
12 height: 1000px; 8 height: 1000px;
13 width: 1000px; 9 width: 1000px;
14 } 10 }
15 #fixed { 11 #fixed {
16 position: fixed; 12 position: fixed;
17 width: 100px; 13 width: 100px;
18 height: 100px; 14 height: 100px;
19 background-color: red; 15 background-color: red;
20 overflow: hidden; 16 overflow: hidden;
(...skipping 22 matching lines...) Expand all
43 <body> 39 <body>
44 40
45 <p>You should see a single green square, with no red.</p> 41 <p>You should see a single green square, with no red.</p>
46 <div id="fixed"> 42 <div id="fixed">
47 <div class="box"> 43 <div class="box">
48 </div> 44 </div>
49 </div> 45 </div>
50 46
51 </body> 47 </body>
52 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698