OLD | NEW |
1 <html> | 1 <html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../fast/js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body id="body"> | 6 <body id="body"> |
7 | 7 |
8 <input id="empty_colorwell" type="color"> | 8 <input id="empty_colorwell" type="color"> |
9 <input id="good_colorwell" type="color" value="#ff0000"> | 9 <input id="good_colorwell" type="color" value="#ff0000"> |
10 <input id="bad_colorwell" type="color" value="purple"> | 10 <input id="bad_colorwell" type="color" value="purple"> |
(...skipping 14 matching lines...) Expand all Loading... |
25 colorwell = document.getElementById("good_colorwell").focus(); | 25 colorwell = document.getElementById("good_colorwell").focus(); |
26 axColorwell = accessibilityController.focusedElement; | 26 axColorwell = accessibilityController.focusedElement; |
27 debug("Value of good color well: " + axColorwell.stringValue); | 27 debug("Value of good color well: " + axColorwell.stringValue); |
28 | 28 |
29 colorwell = document.getElementById("bad_colorwell").focus(); | 29 colorwell = document.getElementById("bad_colorwell").focus(); |
30 axColorwell = accessibilityController.focusedElement; | 30 axColorwell = accessibilityController.focusedElement; |
31 debug("Value of bad color well: " + axColorwell.stringValue); | 31 debug("Value of bad color well: " + axColorwell.stringValue); |
32 } | 32 } |
33 </script> | 33 </script> |
34 | 34 |
35 <script src="../fast/js/resources/js-test-post.js"></script> | |
36 | 35 |
37 </body> | 36 </body> |
38 </html> | 37 </html> |
OLD | NEW |