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

Side by Side Diff: content/test/data/android/input/input_forms.html

Issue 2074093003: Fix more corner cases for empty touch selection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove std::string in test Created 4 years, 6 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 <html> 1 <html>
2 <head> 2 <head>
3 <meta name="viewport" content="width=device-width" /> 3 <meta name="viewport" content="width=device-width" />
4 </head> 4 </head>
5 <body> 5 <body>
6 <form action="about:blank"> 6 <form action="about:blank">
7 <input id="input_text" type="text" /> 7 <input id="input_text" type="text" size="10"/>
8 <br/> 8 <br/>
9 </form> 9 </form>
10 <form> 10 <form>
11 <br/> 11 <br/>
12 <input id="input_radio" type="radio" style="width:50px;height:50px" /> 12 <input id="input_radio" type="radio" style="width:50px;height:50px" />
13 <br/> 13 <br/>
14 <textarea id="textarea" rows="4" cols="20"></textarea> 14 <textarea id="textarea" rows="4" cols="20"></textarea>
15 <br/> 15 <br/>
16 <textarea id="textarea2" rows="4" cols="20" autocomplete="off"></textarea> 16 <textarea id="textarea2" rows="4" cols="20" autocomplete="off"></textarea>
17 <br/> 17 <br/>
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 mutationObserver.observe(element, mutationConfig); 77 mutationObserver.observe(element, mutationConfig);
78 } 78 }
79 79
80 var contenteditableEvent = document.getElementById("contenteditable_event"); 80 var contenteditableEvent = document.getElementById("contenteditable_event");
81 81
82 registerListenersAndObserver(contenteditableEvent); 82 registerListenersAndObserver(contenteditableEvent);
83 </script> 83 </script>
84 84
85 </body> 85 </body>
86 </html> 86 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698