Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: third_party/WebKit/Source/web/tests/data/input_field_populated.html

Issue 2617443002: Implement ThreadedInputConnection.deleteSurroundingTextInCodePoints() (Closed)
Patch Set: Don't convert utf8 Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <input id="sample" value='0123456789abcdefghijklmnopqrstuvwxyz'/> 1 <input id="sample" value='0123456789abcdefghijklmnopqrstuvwxyz'/>
2 <div id="inputEvent">none</div> 2 <div id="inputEvent">none</div>
3 <!- "ab" + trophy + space + "cdef" + trophy + space + "gh">
4 <input id="sample2" value='ab&#x1f3c6 cdef&#x1f3c6 gh'/>
yosin_UTC9 2017/02/09 07:19:28 We should have ";" for character reference.
yabinh 2017/02/09 10:37:03 Done.
3 <script> 5 <script>
4 document.getElementById('sample').addEventListener('input', function() { 6 document.getElementById('sample').addEventListener('input', function() {
5 document.getElementById('inputEvent').textContent = 'got'; 7 document.getElementById('inputEvent').textContent = 'got';
6 }); 8 });
7 </script> 9 </script>
8 10
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698