| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.js"></script> |
| 5 <style> | 5 <style> |
| 6 .speechButton { | 6 .speechButton { |
| 7 -webkit-appearance: -webkit-input-speech-button; | 7 -webkit-appearance: -webkit-input-speech-button; |
| 8 } | 8 } |
| 9 </style> | 9 </style> |
| 10 </head> | 10 </head> |
| 11 <body> | 11 <body> |
| 12 | 12 |
| 13 <!-- Test a few HTML elements with the speech button style to check that they do
n't result in a crash. --> | 13 <!-- Test a few HTML elements with the speech button style to check that they do
n't result in a crash. --> |
| 14 <div class='speechButton'>Test</div> | 14 <div class='speechButton'>Test</div> |
| 15 <p class='speechButton'>Test</p> | 15 <p class='speechButton'>Test</p> |
| 16 <span class='speechButton'>Test</span> | 16 <span class='speechButton'>Test</span> |
| 17 <button class='speechButton'>Test</button> | 17 <button class='speechButton'>Test</button> |
| 18 | 18 |
| 19 <script type="text/javascript"> | 19 <script type="text/javascript"> |
| 20 description('Test for speech button style applied on non-input elements.'); | 20 description('Test for speech button style applied on non-input elements.'); |
| 21 </script> | 21 </script> |
| 22 | 22 |
| 23 <script src="../js/resources/js-test-post.js"></script> | |
| 24 </body> | 23 </body> |
| 25 </html> | 24 </html> |
| OLD | NEW |