Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/slot-dir-attach-child-progress-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<datalist id="move">
<option dir="rtl">
<progress id="progress" value="50" max="100"></progress>
</option>
</datalist>
<svg>
<tspan id="tspan"/><use href="#tspan"/>
</svg>
<script>
onload = () => {
document.getElementById("progress").appendChild(document.createElement("div"));
document.getElementById("tspan").appendChild(move);
}
</script>