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

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

Issue 1814863002: Make page popups work under OOPIF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disabled test on Mac Created 4 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 <!--
2 @MAC-DENY:AXLayoutComplete*
3 -->
4 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style>
3 select {
4 position:absolute;
5 top:9px;
6 left:9px;
7 height:25px;
8 width:80px;
9 }
10 </style>
5 <html> 11 <html>
6 <body> 12 <body>
7 <select> 13 <select>
8 <option selected>Apple</option> 14 <option selected>Apple</option>
9 <option>Orange</option> 15 <option>Orange</option>
10 <option>Banana</option> 16 <option>Banana</option>
11 </select> 17 </select>
12 <script>
13 function go() {
14 document.querySelector('select').focus();
15 }
16 </script>
17 </body> 18 </body>
18 </html> 19 </html>
OLDNEW
« no previous file with comments | « content/common/swapped_out_messages.cc ('k') | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698