blob: 6acffaf3249e15d47452c07a3fba53cc33ee62e8 [file] [log] [blame]
<!DOCYTPE html>
<html>
<style>
input { background: red; }
input:focus { background: green; }
</style>
<body>
<p>The following text box should have focus and should be green.</p>
<input type="text" id="test" autofocus>
<div id="result">FAIL</div>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
}
requestAnimationFrame(()=>{
if (getComputedStyle(test, null).getPropertyValue('background-color') == "rgb(0, 128, 0)")
result.innerHTML = "PASS";
});
</script>
</body>
</html>