blob: ef19f4a0c53d194d50cbf6c0be0850dee58c0f8b [file] [log] [blame]
<html>
<script>jsTestIsAsync = true;</script>
<script src="../../resources/js-test-pre.js"></script>
<head>
<title>This tests that outline repaint rect for focus ring is correct.</title>
<style>
div {
position: absolute;
top: 10px;
height: 10px;
width: 10px;
outline: auto 3px;
}
</style>
</head>
<body>
<div id=foo></div>
</body>
<script>
setTimeout(
function() {
if (window.internals)
internals.startTrackingRepaints();
document.getElementById("foo").style.top = "50px";
document.body.offsetWidth;
if (window.internals) {
shouldNotBe("window.internals.repaintRectsAsText().indexOf('5 7')", "-1");
shouldNotBe("window.internals.repaintRectsAsText().indexOf('5 47')", "-1");
internals.stopTrackingRepaints();
}
finishJSTest();
}, 0);
</script>
<script src="../../resources/js-test-post.js"></script>
</html>