summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-selectlist-element/selectlist-marker-part-ref.html
blob: 1a1302b96db7acdaa91d1d3551a5a047d41c13af (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<script src="support/fake-selectlist.js"></script>
<body>
<script>
  const selectlist = createFakeSelectlist('hello world');
  document.body.appendChild(selectlist);
  selectlist.querySelector('.fake-selectlist-internal-selectlist-button-icon')
    .style.backgroundColor = 'red';
</script>