summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-input-element/auto-direction-dynamic.html
blob: 68ea51185c07833a8cd197f35cbcd6c5ee9c184a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!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>