diff options
Diffstat (limited to 'layout/reftests/meta-viewport/device-height-with-dynamic-toolbar.html')
-rw-r--r-- | layout/reftests/meta-viewport/device-height-with-dynamic-toolbar.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/meta-viewport/device-height-with-dynamic-toolbar.html b/layout/reftests/meta-viewport/device-height-with-dynamic-toolbar.html new file mode 100644 index 0000000000..ca4d500236 --- /dev/null +++ b/layout/reftests/meta-viewport/device-height-with-dynamic-toolbar.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> +<meta name="viewport" content="width=1600, height=device-height"> +<style> +html { + scrollbar-width: none; +} +body { + margin: 0px; + padding: 0px; +} +div { + width: 100vw; +} +</style> +<div style="height: 100vh; background-color: green;"></div> +<div style="height: 500vh; background-color: blue;"></div> |