Index: third_party/WebKit/Source/web/tests/data/vh-height-width-800.html |
diff --git a/third_party/WebKit/Source/web/tests/data/vh-height-width-800.html b/third_party/WebKit/Source/web/tests/data/vh-height-width-800.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9a2225a5601fc44e489747bd0737258a0e05b744 |
--- /dev/null |
+++ b/third_party/WebKit/Source/web/tests/data/vh-height-width-800.html |
@@ -0,0 +1,42 @@ |
+<!DOCTYPE html> |
+<html> |
+ |
+<head> |
+ <meta name="viewport" content="width=800"> |
+ <style> |
+ body { |
+ margin: 0px; |
+ } |
+ |
+ #abs { |
+ position: absolute; |
+ left: 0px; |
+ top: 0px; |
+ background: silver; |
+ width: 100px; |
+ height: 50vh; |
+ } |
+ |
+ #fixed { |
+ position: fixed; |
+ right: 0px; |
+ top: 0px; |
+ background: red; |
+ width: 100px; |
+ height: 50vh; |
+ } |
+ |
+ #spacer { |
+ height: 1000px; |
+ width: 800px; |
+ } |
+ </style> |
+<head> |
+ |
+<body> |
+ <div id="abs"></div> |
+ <div id="fixed"></div> |
+ <div id="spacer"></div> |
+</body> |
+ |
+</html> |