chromium/third_party/blink/web_tests/fast/css/readonly-pseudoclass-opera-002.html

<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>