Chromium Code Reviews| Index: third_party/WebKit/Source/web/tests/data/input_field_populated.html |
| diff --git a/third_party/WebKit/Source/web/tests/data/input_field_populated.html b/third_party/WebKit/Source/web/tests/data/input_field_populated.html |
| index 15c4b0e5dac7bcf5612082f1f408c27a993dba9f..9a363fdb0a4967dfb489b44d3323021d77f49672 100644 |
| --- a/third_party/WebKit/Source/web/tests/data/input_field_populated.html |
| +++ b/third_party/WebKit/Source/web/tests/data/input_field_populated.html |
| @@ -1,5 +1,7 @@ |
| <input id="sample" value='0123456789abcdefghijklmnopqrstuvwxyz'/> |
| <div id="inputEvent">none</div> |
| +<!- "ab" + trophy + space + "cdef" + trophy + space + "gh"> |
| +<input id="sample2" value='ab🏆 cdef🏆 gh'/> |
|
yosin_UTC9
2017/02/09 07:19:28
We should have ";" for character reference.
yabinh
2017/02/09 10:37:03
Done.
|
| <script> |
| document.getElementById('sample').addEventListener('input', function() { |
| document.getElementById('inputEvent').textContent = 'got'; |