diff options
Diffstat (limited to 'layout/generic/crashtests/1520798-2.html')
-rw-r--r-- | layout/generic/crashtests/1520798-2.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layout/generic/crashtests/1520798-2.html b/layout/generic/crashtests/1520798-2.html new file mode 100644 index 0000000000..83a27ab4ca --- /dev/null +++ b/layout/generic/crashtests/1520798-2.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<head> + <script> + function go() { + document.getElementById("tweakMe").style.overflowAnchor = "none"; + } + </script> +</head> +<body onload="go()"> + <div style="position:fixed"> + <div id="tweakMe">Hi</div> + </div> +</body> |