| Index: chrome/test/data/select.html
|
| diff --git a/chrome/test/data/select.html b/chrome/test/data/select.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ceb23149a21940c5849075f5ca94f224f2bb1349
|
| --- /dev/null
|
| +++ b/chrome/test/data/select.html
|
| @@ -0,0 +1,13 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<body>
|
| +<select>
|
| + <option selected>Apple</option>
|
| + <option>Orange</option>
|
| + <option>Banana</option>
|
| +</select>
|
| +<script>
|
| +document.querySelector('select').focus();
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|