blob: b38e9430fdca62bdd708d71226d88173e3568381 [file] [log] [blame]
<html>
<head>
<title>&lt;input&gt; and "readonly"</title>
<style>
input:read-only { background:lime }
input { background:red }
</style>
<link rel="help" href="http://whatwg.org/specs/web-forms/current-work/#readonly">
<link rel="help" href="http://whatwg.org/specs/web-forms/current-work/#relation">
<script language="JavaScript" type="text/javascript">
function log(message) {
document.getElementById("console").innerHTML += "<li>"+message+"</li>";
}
function test() {
if (window.testRunner)
testRunner.dumpAsText();
var i = document.getElementById("victim");
if (document.defaultView.getComputedStyle(i, null).getPropertyValue('background-color') == "rgb(0, 255, 0)")
log("SUCCESS");
else
log("FAILURE");
}
</script>
</head>
<body onload="test()">
<p>This test checks for :read-only right behavior. Fails if FAILURE is shown below.</p>
<p><input id="victim" readonly/></p>
<hr>
<ol id="console"></ol>
</body>
</html>