chromium/third_party/blink/web_tests/external/wpt/html/semantics/forms/the-selectlist-element/selectlist-marker-slot-ref.html

<!DOCTYPE html>
<script src="support/fake-selectlist.js"></script>
<body>
<script>
  const selectlist = createFakeSelectlist('hello world');
  document.body.appendChild(selectlist);

  const oldMarker = selectlist.querySelector('.fake-selectlist-internal-selectlist-button-icon');
  const newMarker = document.createElement('div');
  newMarker.textContent = 'marker';

  replaceChildElement(newMarker, oldMarker);
</script>