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

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

Issue 2617443002: Implement ThreadedInputConnection.deleteSurroundingTextInCodePoints() (Closed)
Patch Set: Address dcheng@'s review Created 3 years, 9 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'/>
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
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | third_party/WebKit/public/web/WebLocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698