Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
|
jamesr
2014/09/23 23:25:16
add <!DOCTYPE html> since you aren't testing quirk
| |
| 2 <head> | |
| 3 <title>Disambiguation Popup Test with Virtual Viewport</title> | |
| 4 | |
| 5 <style type="text/css"> | |
| 6 body { | |
| 7 margin: 0px; | |
| 8 } | |
| 9 .upper { | |
| 10 background-color: #ffbbaa; | |
| 11 width: 200px; | |
| 12 height: 400px; | |
| 13 } | |
| 14 .lower { | |
| 15 background-color: #ffddaa; | |
| 16 width: 200px; | |
| 17 height: 400px; | |
| 18 } | |
| 19 .horizontal-link { | |
| 20 display:block; | |
| 21 width:200px; | |
| 22 height:30px; | |
| 23 margin-top:2px; | |
| 24 background-color:#ccccff; | |
| 25 } | |
| 26 </style> | |
| 27 </head> | |
| 28 <body> | |
| 29 <div class="upper"></div> | |
| 30 <div class="lower"> | |
| 31 <div style="height:200px"></div> | |
| 32 <a href="#" class="horizontal-link">Link 1</a> | |
| 33 <a href="#" class="horizontal-link">Link 2</a> | |
| 34 </div> | |
| 35 </body> | |
| 36 </html> | |
| OLD | NEW |