diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/meta-viewport/async-scroll-to-no-content-area-ref.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/meta-viewport/async-scroll-to-no-content-area-ref.html b/layout/reftests/meta-viewport/async-scroll-to-no-content-area-ref.html new file mode 100644 index 0000000000..ec10e60079 --- /dev/null +++ b/layout/reftests/meta-viewport/async-scroll-to-no-content-area-ref.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<meta name="viewport" content="width=device-width,initial-scale=1"> +<style> +html { + background-color: green; +} +#fixed { + width: 100px; + height: 100px; + background-color: red; + position: fixed; + bottom: 0px; + right: 0px; +} +</style> +<div id="fixed"></div> |