summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-selectlist-element/selectlist-selected-value-behavior-ref.html
blob: 7d76f1c8176d898241d19f2705ce24e15e09620c (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.color = 'blue';
</script>