summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-input-element/disabled-click-picker-manual.html
blob: b77f981e6c19e0f91e367cf8d1808f11acac83b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<meta charset="utf-8">
<title>Disabled input elements must not open pickers</title>
<p>
  Click the Open buttons below. If clicking them does not open any pickers, then consider this as a passing test.<br>
  (This is manual because we don't have an event to check whether the picker is opened or not.)
</p>
<input disabled type="color" id="color"><button>Open</button><br>
<input disabled type="file" id="file"><button>Open</button>
<script>
  for (const button of document.getElementsByTagName("button")) {
    button.onclick = () => {
      const input = button.previousElementSibling;
      input.dispatchEvent(new MouseEvent("click"));
    }
  }
</script>