Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-input-element/auto-direction-dynamic.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<link rel="match" href="auto-direction-ref.html">
<body>
<script>
const dirInput = document.createElement('input')
dirInput.setAttribute('dir', 'auto')
dirInput.setAttribute('value', 'شنينسنمس')
document.body.appendChild(dirInput)
</script>
</body>
</html>