summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-selectlist-element/selectlist-explicit-size-ref.tentative.html
blob: 46d932c4b270be7ac2c9593d60c35c6503ebc20e (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<script src="support/fake-selectlist.js"></script>
<body>
<script>
  const selectlist = createFakeSelectlist('option');
  document.body.appendChild(selectlist);
  const button = selectlist.querySelector('.fake-selectlist-internal-selectlist-button');
  button.style.width = "400px";
  button.style.height = "50px";
</script>