Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta name="viewport" content="width=device-width, minimum-scale=1"> | |
| 4 <style type="text/css"> | 5 <style type="text/css"> |
| 5 #scrollable { | 6 #scrollable { |
| 6 width: 300px; | 7 width: 300px; |
| 7 height: 300px; | 8 height: 300px; |
| 8 overflow: scroll; | 9 overflow: scroll; |
| 9 } | 10 } |
| 10 .content { | 11 .content { |
| 11 width: 500px; | 12 width: 500px; |
| 12 height: 500px; | 13 height: 500px; |
| 13 } | 14 } |
| 14 body { | 15 body { |
| 15 margin: 0px; | 16 margin: 0px; |
| 16 } | 17 } |
| 17 </style> | 18 </style> |
| 18 </head> | 19 </head> |
| 19 | 20 |
| 20 <body> | 21 <body> |
| 21 <div id="scrollable"> | 22 <div id="scrollable"> |
| 22 <div class="content"></div> | 23 <div class="content"></div> |
| 23 </div> | 24 </div> |
| 24 </body> | 25 </body> |
| 25 </html> | 26 </html> |
| OLD | NEW |