OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 input::-webkit-textfield-decoration-container { | 4 input::-webkit-textfield-decoration-container { |
5 content: url("") !important; | 5 content: url("") !important; |
6 } | 6 } |
7 </style> | 7 </style> |
8 <script> | 8 <script> |
9 if (window.testRunner) | 9 if (window.testRunner) |
10 testRunner.dumpAsText(); | 10 testRunner.dumpAsText(); |
11 </script> | 11 </script> |
12 </head> | 12 </head> |
13 <body> | 13 <body> |
14 <!-- [bug 101133] https://bugs.webkit.org/show_bug.cgi?id=101133 --> | 14 <!-- [bug 101133] https://bugs.webkit.org/show_bug.cgi?id=101133 --> |
15 <!-- Crash when replacing parts of text inputs with content: url(...) --> | 15 <!-- Crash when replacing parts of text inputs with content: url(...) --> |
16 <!-- If this test passes, we can see juast "PASS". --> | 16 <!-- If this test passes, we can see juast "PASS". --> |
17 <input type="search"> | 17 <input type="search"> |
18 PASS | 18 PASS |
19 </body> | 19 </body> |
OLD | NEW |