Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<div id="ref">child text</div>
<optgroup id="src"></optgroup>
<script>
// Copy the font-weight from an optgroup onto the div so the ref matches
// regardless of what default styling each engine applies to optgroup.
const src = document.querySelector("#src");
const ref = document.querySelector("#ref");
ref.style.fontWeight = getComputedStyle(src).fontWeight;
src.remove();
</script>