OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <head> |
| 3 <script> |
| 4 window.enablePixelTesting = true; |
| 5 </script> |
| 6 <script src="../../../resources/js-test.js"></script> |
| 7 </head> |
| 8 <body> |
| 9 <script> |
| 10 if (window.testRunner) |
| 11 testRunner.setUseMockTheme(false); |
| 12 </script> |
| 13 |
| 14 <p>There should be a separator between two selected options.</p> |
| 15 |
| 16 <select multiple id="listbox"></select> |
| 17 |
| 18 <script> |
| 19 var listbox = document.getElementById('listbox'); |
| 20 listbox.appendChild(new Option('foo', 'foo', true, true)); |
| 21 listbox.appendChild(document.createElement('hr')); |
| 22 listbox.appendChild(new Option('bar', 'bar', true, true)); |
| 23 </script> |
| 24 |
| 25 </body> |
OLD | NEW |