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

Side by Side Diff: android_webview/tools/automated_ui_tests/test/data/webview_scaled.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 <head>
3 <meta name='viewport' content='width=device-width, initial-scale=2.0, minimum- scale=2.0, maximum-scale=2.0'>
4 <title>Page with viewport scale 2.0</title>
5 <style>
6 #select1 {position:absolute;left:0;top:0;}
7 #select2 {position:absolute;right:0;top:0;}
8 #select3 {position:absolute;right:0;bottom:0;}
9 #select4 {position:absolute;left:0;bottom:0;}
10 </style>
11 </head>
12 <body>
13 <select id='select1'>
14 <option value='v1'>Value1</option>
15 <option value='v2'>Value2</option>
16 </select>
17 <select id='select2'>
18 <option value='v1'>Value1</option>
19 <option value='v2'>Value2</option>
20 </select>
21 <select id='select3'>
22 <option value='v1'>Value1</option>
23 <option value='v2'>Value2</option></select>
24 <select id='select4'>
25 <option value='v1'>Value1</option>
26 <option value='v2'>Value2</option>
27 </select>
28 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698