| Index: content/test/data/site_isolation/page-with-select.html
|
| diff --git a/content/test/data/site_isolation/page-with-select.html b/content/test/data/site_isolation/page-with-select.html
|
| index 23b022b1b4b4da25d678b02a5d7fc91e7e1edcb5..c8282d4fd386e3178e10f0a449f49054d4517f8a 100644
|
| --- a/content/test/data/site_isolation/page-with-select.html
|
| +++ b/content/test/data/site_isolation/page-with-select.html
|
| @@ -8,6 +8,15 @@ select {
|
| width:80px;
|
| }
|
| </style>
|
| +<script>
|
| +
|
| +function openSelectMenu(target) {
|
| + var evt = document.createEvent("MouseEvents");
|
| + evt.initMouseEvent("mousedown", true, true, window);
|
| + document.querySelector('select').dispatchEvent(evt);
|
| +}
|
| +
|
| +</script>
|
| <html>
|
| <body>
|
| <select>
|
|
|