Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / input-appearance-disabled.html
bloba70b49b9bf13af70d82c4f4f08af5033743595e5
1 <html>
2 <head>
3 <script>
4 function test()
6 document.getElementById('tf').focus();
7 document.execCommand("InsertText", false, 'Test Failed');
9 </script>
10 </head>
11 <body onload="test()">
12 This tests that text can not be inserted into a disabled text field.
13 <br><input id="tf" style="-khtml-appearance: textfield;" disabled value="Test Passed"></input>
14 </body>
15 </html>