3 <script src=
"../../../resources/js-test.js"></script>
6 testRunner
.waitUntilDone();
7 description('This tests that setting the dir attribute to rtl and clearing it defaults to ltr.');
9 document
.body
.dir
= 'rtl';
10 document
.body
.offsetTop
;
11 document
.body
.dir
= '';
12 shouldBeEqualToString('window.getComputedStyle(document.body).direction', 'ltr');
13 if (window
.testRunner
)
14 testRunner
.notifyDone();