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

Unified 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: 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_scaled.html
diff --git a/android_webview/tools/automated_ui_tests/test/data/webview_scaled.html b/android_webview/tools/automated_ui_tests/test/data/webview_scaled.html
new file mode 100644
index 0000000000000000000000000000000000000000..1f89185b3095210aee2f4615f61a956ae09c6aa1
--- /dev/null
+++ b/android_webview/tools/automated_ui_tests/test/data/webview_scaled.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<head>
+ <meta name='viewport' content='width=device-width, initial-scale=2.0, minimum-scale=2.0, maximum-scale=2.0'>
+ <title>Page with viewport scale 2.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>

Powered by Google App Engine
This is Rietveld 408576698