Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Attr/direction-attribute-set-and-cleared.html

Issue 2781993003: Move tests for Attr interface to LayoutTests/dom/attr/. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698