| Index: content/test/data/site_isolation/page-with-select.html
|
| diff --git a/content/test/data/accessibility/event/menulist-focus.html b/content/test/data/site_isolation/page-with-select.html
|
| similarity index 52%
|
| copy from content/test/data/accessibility/event/menulist-focus.html
|
| copy to content/test/data/site_isolation/page-with-select.html
|
| index 09b7eabc45c0cfdc3bc6a6e778142bcf752fe879..23b022b1b4b4da25d678b02a5d7fc91e7e1edcb5 100644
|
| --- a/content/test/data/accessibility/event/menulist-focus.html
|
| +++ b/content/test/data/site_isolation/page-with-select.html
|
| @@ -1,7 +1,13 @@
|
| -<!--
|
| -@MAC-DENY:AXLayoutComplete*
|
| --->
|
| <!DOCTYPE html>
|
| +<style>
|
| +select {
|
| + position:absolute;
|
| + top:9px;
|
| + left:9px;
|
| + height:25px;
|
| + width:80px;
|
| +}
|
| +</style>
|
| <html>
|
| <body>
|
| <select>
|
| @@ -9,10 +15,5 @@
|
| <option>Orange</option>
|
| <option>Banana</option>
|
| </select>
|
| -<script>
|
| - function go() {
|
| - document.querySelector('select').focus();
|
| - }
|
| -</script>
|
| </body>
|
| -</html>
|
| +</html>
|
|
|