summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-selectlist-element/selectlist-rtl-ref.tentative.html
blob: 7c71ea079cfc1a8292ed5ae415c86ebefa11a972 (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.direction = "rtl";
  button.style.width = "300px";
</script>