summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-select-element/stylable-select/native-popup-with-datalist-ref.html
blob: 87918b6a92c497090f2ed5ab42d9e17927d69b54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html class=reftest-wait>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>

<select>
  <option>one</option>
  <hr>
  <option>two</option>
</select>

<script>
(async () => {
  await test_driver.click(document.querySelector('select'));
  document.documentElement.classList.remove('reftest-wait');
})();
</script>