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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/option-mouseevents.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 <script> 3 <script>
4 function print(message, color) { 4 function print(message, color) {
5 var paragraph = document.createElement("div"); 5 var paragraph = document.createElement("div");
6 paragraph.appendChild(document.createTextNode(message)); 6 paragraph.appendChild(document.createTextNode(message));
7 paragraph.style.fontFamily = "monospace"; 7 paragraph.style.fontFamily = "monospace";
8 if (color) 8 if (color)
9 paragraph.style.color = color; 9 paragraph.style.color = color;
10 document.getElementById("console").appendChild(paragraph); 10 document.getElementById("console").appendChild(paragraph);
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 </select> 106 </select>
107 </form> 107 </form>
108 <select style="position:absolute; top: 408;" size="3" onmousedown="mouseeventver ify(event, 22, 448, 12, 38, this, 'mousedown')"> 108 <select style="position:absolute; top: 408;" size="3" onmousedown="mouseeventver ify(event, 22, 448, 12, 38, this, 'mousedown')">
109 <option>One 109 <option>One
110 <option id="o5" onmousedown="mouseeventverify(event, 22, 448, 12, 38, this, 'mou sedown')">Two 110 <option id="o5" onmousedown="mouseeventverify(event, 22, 448, 12, 38, this, 'mou sedown')">Two
111 </select> 111 </select>
112 </form> 112 </form>
113 <div style="position:absolute; top: 550;" id='console'></div> 113 <div style="position:absolute; top: 550;" id='console'></div>
114 </body> 114 </body>
115 </html> 115 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698