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

Side by Side Diff: content/test/data/site_isolation/page-with-select.html

Issue 1986643002: Track pending WebContents and widgets by (process_id, routing_id) pair. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fullscreen-flash
Patch Set: Disable popup menu test for Mac/Android Created 4 years, 7 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 select { 3 select {
4 position:absolute; 4 position:absolute;
5 top:9px; 5 top:9px;
6 left:9px; 6 left:9px;
7 height:25px; 7 height:25px;
8 width:80px; 8 width:80px;
9 } 9 }
10 </style> 10 </style>
11 <script>
12
13 function openSelectMenu(target) {
14 var evt = document.createEvent("MouseEvents");
15 evt.initMouseEvent("mousedown", true, true, window);
16 document.querySelector('select').dispatchEvent(evt);
17 }
18
19 </script>
11 <html> 20 <html>
12 <body> 21 <body>
13 <select> 22 <select>
14 <option selected>Apple</option> 23 <option selected>Apple</option>
15 <option>Orange</option> 24 <option>Orange</option>
16 <option>Banana</option> 25 <option>Banana</option>
17 </select> 26 </select>
18 </body> 27 </body>
19 </html> 28 </html>
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl_unittest.cc ('k') | content/test/test_web_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698