Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html class=reftest-wait>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<style>
/* :focus-visible behavior is UA-defined, do not exercise in the test */
select:focus-visible {
outline: none;
}
</style>
<select>
<option>option</option>
</select>
<script>
(async () => {
await test_driver.click(document.querySelector('select'));
await new Promise(requestAnimationFrame);
document.documentElement.classList.remove('reftest-wait');
})();
</script>