Chromium Code Reviews| Index: Source/web/tests/data/disambiguation_popup_200_by_800.html |
| diff --git a/Source/web/tests/data/disambiguation_popup_200_by_800.html b/Source/web/tests/data/disambiguation_popup_200_by_800.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..43ddde51170915c885bb221491a45f86fed1784b |
| --- /dev/null |
| +++ b/Source/web/tests/data/disambiguation_popup_200_by_800.html |
| @@ -0,0 +1,36 @@ |
| +<html> |
|
jamesr
2014/09/23 23:25:16
add <!DOCTYPE html> since you aren't testing quirk
|
| + <head> |
| + <title>Disambiguation Popup Test with Virtual Viewport</title> |
| + |
| + <style type="text/css"> |
| + body { |
| + margin: 0px; |
| + } |
| + .upper { |
| + background-color: #ffbbaa; |
| + width: 200px; |
| + height: 400px; |
| + } |
| + .lower { |
| + background-color: #ffddaa; |
| + width: 200px; |
| + height: 400px; |
| + } |
| + .horizontal-link { |
| + display:block; |
| + width:200px; |
| + height:30px; |
| + margin-top:2px; |
| + background-color:#ccccff; |
| + } |
| + </style> |
| + </head> |
| + <body> |
| + <div class="upper"></div> |
| + <div class="lower"> |
| + <div style="height:200px"></div> |
| + <a href="#" class="horizontal-link">Link 1</a> |
| + <a href="#" class="horizontal-link">Link 2</a> |
| + </div> |
| + </body> |
| +</html> |