jruderman%hmc.edu 67e0e10dd5 Add crashtest
git-svn-id: svn://10.0.0.236/trunk@241637 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-18 06:31:39 +00:00

18 lines
300 B
HTML

<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>