| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 input::-webkit-input-speech-button { | 3 input::-webkit-input-speech-button { |
| 4 border: 10px solid lime; | 4 border: 10px solid lime; |
| 5 padding: 10px; | 5 padding: 10px; |
| 6 } | 6 } |
| 7 </style> | 7 </style> |
| 8 <body> | 8 <body> |
| 9 <script src="../js/resources/js-test-pre.js"></script> | 9 <script src="../js/resources/js-test-pre.js"></script> |
| 10 | 10 |
| 11 <input id="input1"> | 11 <input id="input1"> |
| 12 <input x-webkit-speech id="speechInput1"> | 12 <input x-webkit-speech id="speechInput1"> |
| 13 <script> | 13 <script> |
| 14 shouldBe('document.getElementById("speechInput1").offsetWidth', 'document.getEle
mentById("input1").offsetWidth'); | 14 shouldBe('document.getElementById("speechInput1").offsetWidth', 'document.getEle
mentById("input1").offsetWidth'); |
| 15 </script> | 15 </script> |
| 16 | 16 |
| 17 <script src="../js/resources/js-test-post.js"></script> | |
| 18 </body> | 17 </body> |
| OLD | NEW |