Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/crashtests/slot-dir-attribute-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Setting dir attribute on a slot element should not crash</title>
<script>
let slot = document.createElement("slot");
slot.setAttribute("dir", "auto");
</script>