Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/style/crashtests/crashtests.list
<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>