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

Side by Side Diff: android_webview/tools/automated_ui_tests/test/data/webview_nonscaled.html

Issue 2349663003: Adding WebView select tests to test select element's dropdown menu (Closed)
Patch Set: Addressed comments from mikecase@ Created 4 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta name='viewport' content='width=device-width, initial-scale=1.0, minimu m-scale=1.0, maximum-scale=1.0'>
5 <title>Page with viewport scale 1.0</title>
6 <style>
7 #select1 {position:absolute;left:0;top:0;}
8 #select2 {position:absolute;right:0;top:0;}
9 #select3 {position:absolute;right:0;bottom:0;}
10 #select4 {position:absolute;left:0;bottom:0;}
11 </style>
12 </head>
13 <body>
14 <select id='select1'>
15 <option value='v1'>Value1</option>
16 <option value='v2'>Value2</option>
17 </select>
18 <select id='select2'>
19 <option value='v1'>Value1</option>
20 <option value='v2'>Value2</option>
21 </select>
22 <select id='select3'>
23 <option value='v1'>Value1</option>
24 <option value='v2'>Value2</option></select>
25 <select id='select4'>
26 <option value='v1'>Value1</option>
27 <option value='v2'>Value2</option>
28 </select>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698