diff options
Diffstat (limited to 'layout/base/tests/chrome/bug1722890_ref.html')
-rw-r--r-- | layout/base/tests/chrome/bug1722890_ref.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/base/tests/chrome/bug1722890_ref.html b/layout/base/tests/chrome/bug1722890_ref.html new file mode 100644 index 0000000000..8bf8e39713 --- /dev/null +++ b/layout/base/tests/chrome/bug1722890_ref.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> + <head> + <style> +div { + position: fixed; + width: 10px; + height: 10px; + background: blue; + left: 0; +} + </style> + </head> + <body> + <div style="top:0"></div> + <div style="bottom:0"></div> + </body> +</html> + |