summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-selectlist-element/selectlist-selected-value-part-ref.html
blob: 3be168beba95e20a16671cc05260ed57fbfb5a25 (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-selected-value')
    .style.backgroundColor = 'red';
</script>