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

Unified 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: Add todo for UseWideViewPortAction 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/tools/automated_ui_tests/test/data/webview_nonscaled.html
diff --git a/android_webview/tools/automated_ui_tests/test/data/webview_nonscaled.html b/android_webview/tools/automated_ui_tests/test/data/webview_nonscaled.html
new file mode 100644
index 0000000000000000000000000000000000000000..4b426746b99dd00e2f9dde91e93f5193d2653478
--- /dev/null
+++ b/android_webview/tools/automated_ui_tests/test/data/webview_nonscaled.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta name='viewport' content='width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0'>
+ <title>Page with viewport scale 1.0</title>
+ <style>
+ #select1 {position:absolute;left:0;top:0;}
+ #select2 {position:absolute;right:0;top:0;}
+ #select3 {position:absolute;right:0;bottom:0;}
+ #select4 {position:absolute;left:0;bottom:0;}
+ </style>
+ </head>
+ <body>
+ <select id='select1'>
+ <option value='v1'>Value1</option>
+ <option value='v2'>Value2</option>
+ </select>
+ <select id='select2'>
+ <option value='v1'>Value1</option>
+ <option value='v2'>Value2</option>
+ </select>
+ <select id='select3'>
+ <option value='v1'>Value1</option>
+ <option value='v2'>Value2</option></select>
+ <select id='select4'>
+ <option value='v1'>Value1</option>
+ <option value='v2'>Value2</option>
+ </select>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698