| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <body> | 2 <body> |
| 3 <style> | 3 <style> |
| 4 button:disabled { | 4 button:disabled { |
| 5 color: #aaa; | 5 color: #aaa; |
| 6 } | 6 } |
| 7 button { | 7 button { |
| 8 -webkit-appearance: none; | 8 -webkit-appearance: none; |
| 9 } | 9 } |
| 10 </style> | 10 </style> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 // Need to wait until CheckFocusedElementTask is unqueued. | 24 // Need to wait until CheckFocusedElementTask is unqueued. |
| 25 setTimeout(function() { | 25 setTimeout(function() { |
| 26 button.click(); | 26 button.click(); |
| 27 }, 20); | 27 }, 20); |
| 28 setTimeout(function() { | 28 setTimeout(function() { |
| 29 testFailed('No blur event.'); | 29 testFailed('No blur event.'); |
| 30 finishJSTest(); | 30 finishJSTest(); |
| 31 }, 2000); | 31 }, 2000); |
| 32 }; | 32 }; |
| 33 </script> | 33 </script> |
| 34 <script src="../../js/resources/js-test-post.js"></script> | |
| 35 </body> | 34 </body> |
| OLD | NEW |