Chromium Code Reviews| 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> |