OLD | NEW |
1 <head> | 1 <head> |
2 <script src="../../resources/js-test.js"></script> | 2 <script src="../../resources/js-test.js"></script> |
3 <script> | 3 <script> |
4 function test() { | 4 function test() { |
5 if (window.testRunner) { | 5 if (window.testRunner) { |
6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
7 } | 7 } |
8 | 8 |
9 if (!window.internals) { | 9 if (!window.internals) { |
10 testFailed('This test requires the test harness to run.'); | 10 testFailed('This test requires the test harness to run.'); |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 </head> | 113 </head> |
114 <body onload="test()"> | 114 <body onload="test()"> |
115 This tests that foreground and background colors properly change for autofil
led inputs or select options. It can only be run using the test harness.<br> | 115 This tests that foreground and background colors properly change for autofil
led inputs or select options. It can only be run using the test harness.<br> |
116 <form name="fm"> | 116 <form name="fm"> |
117 <input type="text" id="field" value="Field value"> | 117 <input type="text" id="field" value="Field value"> |
118 <textarea id="textarea"></textarea> | 118 <textarea id="textarea"></textarea> |
119 <select id="select"></select> | 119 <select id="select"></select> |
120 </form> | 120 </form> |
121 <div id="console"></div> | 121 <div id="console"></div> |
122 </body> | 122 </body> |
OLD | NEW |