summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/elements/global-attributes/dir-auto-div-append-child.html
blob: e69f64b3a9abdf3dd4e8184897f1c2ad01b9f314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<title>HTML Test: input with dir=auto, then append a child</title>
<meta charset="utf-8">
<meta name="assert" content="The dir global attribute set to auto applies when a child is appended" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:japhet@chromium.org" />
<link rel="help" href="https://html.spec.whatwg.org/multipage/#the-dir-attribute" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<div id="div" dir="auto"></div>
<script>
test(() => {
  assert_equals(getComputedStyle(div).direction, "ltr");
  div.appendChild(document.createTextNode('اختبر SomeText'));
  assert_equals(getComputedStyle(div).direction, "rtl");
}, 'dir auto: updates on appendChild');
</script>
</body>