blob: 5ef955964fe02101031fee67ab06943542d82c05 [file] [log] [blame]
<!doctype html>
<html>
<head>
<script>
if (window.testRunner)
testRunner.dumpAsText()
function runTest()
{
var elem = document.getElementById('test');
if (window.internals) {
var rect = internals.boundingBox(elem);
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>