blob: f85c832c05e54762fee8e6aebaefbea4ad1fb1b4 [file] [log] [blame]
<!doctype html>
<html>
<head>
<script>
if (window.layoutTestController)
window.layoutTestController.dumpAsText()
function runTest()
{
var rect = document.getElementById('test').getBoundingClientRect();
if (rect.top > 0 || rect.left > 0)
document.getElementById('console').innerHTML = 'PASS';
}
</script>
</head>
<body onload="runTest()">
<div> <a id="test"></a> </div>
<div id="console">FAIL</div>
</body>
</html>