| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 #search1::-webkit-search-cancel-button { | 3 #search1::-webkit-search-cancel-button { |
| 4 border: 10px solid lime; | 4 border: 10px solid lime; |
| 5 padding: 10px; | 5 padding: 10px; |
| 6 } | 6 } |
| 7 #search1::-webkit-search-decoration { | 7 #search1::-webkit-search-decoration { |
| 8 border: 10px solid lime; | 8 border: 10px solid lime; |
| 9 padding: 10px; | 9 padding: 10px; |
| 10 } | 10 } |
| 11 </style> | 11 </style> |
| 12 <body> | 12 <body> |
| 13 <script src="../../js/resources/js-test-pre.js"></script> | 13 <script src="../../js/resources/js-test-pre.js"></script> |
| 14 | 14 |
| 15 <input type="search" id="search1"> | 15 <input type="search" id="search1"> |
| 16 <input type="search" id="search2"> | 16 <input type="search" id="search2"> |
| 17 <script> | 17 <script> |
| 18 shouldBe('document.getElementById("search1").offsetWidth', 'document.getElementB
yId("search2").offsetWidth'); | 18 shouldBe('document.getElementById("search1").offsetWidth', 'document.getElementB
yId("search2").offsetWidth'); |
| 19 </script> | 19 </script> |
| 20 | 20 |
| 21 <script src="../../js/resources/js-test-post.js"></script> | |
| 22 </body> | 21 </body> |
| OLD | NEW |