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-crash.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<link rel=author href="mailto:myid.shin@igalia.com">
<datalist id="move">
  <option dir="rtl">
    <select id="select"></select>
  </option>
</datalist>
<svg>
  <tspan id="tspan1"/><use xlink:href="#tspan1"/>
</svg>
<script>
  onload = () => {
    document.getElementById("select").appendChild(document.createElement("ol"));
    document.getElementById("tspan1").appendChild(move);
  }
</script>