diff options
Diffstat (limited to 'layout/style/crashtests/391034-1.xhtml')
-rw-r--r-- | layout/style/crashtests/391034-1.xhtml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/style/crashtests/391034-1.xhtml b/layout/style/crashtests/391034-1.xhtml new file mode 100644 index 0000000000..315796d285 --- /dev/null +++ b/layout/style/crashtests/391034-1.xhtml @@ -0,0 +1,17 @@ +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<script> +function boom() +{ + var p = document.getElementById("p"); + window.getComputedStyle(p, null).getPropertyValue("right"); +} +</script> +</head> + +<body onload="boom();"> + +<p id="p" style="position: relative; left: 3ch;">foo</p> + +</body> +</html> |