blob: 2894f9a885c7811fdf5a5fdcb0a320c66fa5769f [file] [log] [blame]
<!doctype html>
<head>
<script src="../../fast/repaint/resources/text-based-repaint.js" type="text/javascript"></script>
<script>
function repaintTest() {
document.getElementById("rect").focus();
}
</script>
<style>
div {
height:150px; width:150px;
}
:focus { fill: green }
</style>
</head>
<body onload="runRepaintAndPixelTest()">
<div>
<svg id="svg" height="150" width="150" viewbox="0 0 150 150">
<rect id="rect" x="50" y="50" height="50" width="50" tabindex="1"/>
</svg>
</div>
</body>