Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/dom/elements/global-attributes/dir-shadow-39.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: text in the light tree, slotted node</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="match" href="dir-shadow-39-ref.html">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em; padding: 0.25em;}
span {border: 1px solid silver;}
</style>
<script src="dir-shadow-utils.js"></script>
</head>
<body>
<p>text in the light tree, slotted node</p>
<div id="host">slotted text.</div>
<p id="result">The HTML direction / computed CSS `direction` value for the defaultContent when there is a slotted node: </p>
<script type="text/javascript">
let root = host.attachShadow({mode:"open"});
root.innerHTML = `<slot dir=auto><div>أخبار</div>.</slot>`;
result.innerHTML += html_direction(root.firstChild.firstChild) + " / " + getComputedStyle(root.firstChild.firstChild).direction + " (on the " + root.firstChild.firstChild.localName + ').';
</script>
</body>
</html>