| Index: third_party/WebKit/LayoutTests/fast/dom/Attr/direction-attribute-set-and-cleared.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/Attr/direction-attribute-set-and-cleared.html b/third_party/WebKit/LayoutTests/fast/dom/Attr/direction-attribute-set-and-cleared.html
|
| deleted file mode 100644
|
| index cc5961f112ce26c1fb33db8aa52d6a2809ec5a9c..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/Attr/direction-attribute-set-and-cleared.html
|
| +++ /dev/null
|
| @@ -1,17 +0,0 @@
|
| -<!doctype html>
|
| -<html>
|
| -<script src="../../../resources/js-test.js"></script>
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.waitUntilDone();
|
| -description('This tests that setting the dir attribute to rtl and clearing it defaults to ltr.');
|
| -onload = function() {
|
| - document.body.dir = 'rtl';
|
| - document.body.offsetTop;
|
| - document.body.dir = '';
|
| - shouldBeEqualToString('window.getComputedStyle(document.body).direction', 'ltr');
|
| - if (window.testRunner)
|
| - testRunner.notifyDone();
|
| -}
|
| -</script>
|
| -<body>
|
|
|