OLD | NEW |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
2 "http://www.w3.org/TR/html4/loose.dtd"> | 2 "http://www.w3.org/TR/html4/loose.dtd"> |
3 | 3 |
4 <html lang="en"> | 4 <html lang="en"> |
5 <head> | 5 <head> |
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
7 <title>Position fixed</title> | 7 <title>Position fixed</title> |
8 <script src="../resources/mock_scrollbars.js"></script> | 8 <script src="../resources/mock_scrollbars.js"></script> |
9 <style type="text/css" media="screen"> | 9 <style type="text/css" media="screen"> |
| 10 ::-webkit-scrollbar { |
| 11 width: 0px; |
| 12 height: 0px; |
| 13 } |
10 body { | 14 body { |
11 height: 1000px; | 15 height: 1000px; |
12 width: 1000px; | 16 width: 1000px; |
13 } | 17 } |
14 #fixed { | 18 #fixed { |
15 position: fixed; | 19 position: fixed; |
16 top: 0; | 20 top: 0; |
17 left: 0; | 21 left: 0; |
18 height: 100px; | 22 height: 100px; |
19 width: 100px; | 23 width: 100px; |
(...skipping 26 matching lines...) Expand all Loading... |
46 <body> | 50 <body> |
47 | 51 |
48 <p>You should see a green square in the top left corner of an orange box.</p> | 52 <p>You should see a green square in the top left corner of an orange box.</p> |
49 <div id="fixed"> | 53 <div id="fixed"> |
50 <div class="compositing box"> | 54 <div class="compositing box"> |
51 </div> | 55 </div> |
52 </div> | 56 </div> |
53 | 57 |
54 </body> | 58 </body> |
55 </html> | 59 </html> |
OLD | NEW |