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

Unified Diff: third_party/WebKit/Source/web/tests/data/viewport-select.html

Issue 2215333002: Fix element visibility check for validation bubbles and SELECT popups. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/tests/data/viewport-select.html
diff --git a/third_party/WebKit/Source/web/tests/data/viewport-select.html b/third_party/WebKit/Source/web/tests/data/viewport-select.html
new file mode 100644
index 0000000000000000000000000000000000000000..7ba6e605feda0135d0323a094a2b0100c7bb5bd2
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/viewport-select.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta name="viewport" content="minimum-scale=2.0">
bokan 2016/08/08 15:23:00 The test would be more clear if you remove this me
tkent 2016/08/09 03:17:12 We need to apply minimum-scale for crbug.com/63256
+<style>
+select {
+ position: absolute;
+ right: 0px;
+ bottom: 0px;
+ width: 100px;
+ height: 20px;
+}
+</style>
+</head>
+<body>
+<select><option>abc</option></select>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698