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

Side by Side Diff: LayoutTests/compositing/overflow/fixed-position-ancestor-clip.html

Issue 1305223004: Reland of place 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 }
7 body { 11 body {
8 height: 1000px; 12 height: 1000px;
9 width: 1000px; 13 width: 1000px;
10 } 14 }
11 #fixed { 15 #fixed {
12 position: fixed; 16 position: fixed;
13 width: 100px; 17 width: 100px;
14 height: 100px; 18 height: 100px;
15 background-color: red; 19 background-color: red;
16 overflow: hidden; 20 overflow: hidden;
(...skipping 22 matching lines...) Expand all
39 <body> 43 <body>
40 44
41 <p>You should see a single green square, with no red.</p> 45 <p>You should see a single green square, with no red.</p>
42 <div id="fixed"> 46 <div id="fixed">
43 <div class="box"> 47 <div class="box">
44 </div> 48 </div>
45 </div> 49 </div>
46 50
47 </body> 51 </body>
48 </html> 52 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698