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

Unified Diff: LayoutTests/accessibility/lists.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 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: LayoutTests/accessibility/lists.html
diff --git a/LayoutTests/accessibility/lists.html b/LayoutTests/accessibility/lists.html
deleted file mode 100644
index 72ab3d17972f1dc0c4e1d950db589769b0bf9d96..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/lists.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!DOCTYPE html>
-<html>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-</script>
-<body id="body">
-
- <ul>
- <li>test 1</li>
- <li>test 2</li>
- </ul>
-
- <ol>
- <li>test 1</li>
- <li>test 2</li>
- </ol>
-
- <dl>
- <dt>term 1</dt>
- <dd>meaning 2</dd>
-
- <dt>term b</dt>
- <dd>meaning 1</dd>
- <dd>meaning 2</dd>
- </dl>
-
- <BR><BR><BR><hr><BR>
- <div id="result"></div>
-
- <script>
- if (window.accessibilityController) {
- var result = document.getElementById("result");
-
- var bodyElement = document.getElementById("body");
- bodyElement.focus();
- body = accessibilityController.focusedElement;
- result.innerText += body.attributesOfChildren() + "\n\n";
-
- var olList = body.childAtIndex(0);
- result.innerText += olList.attributesOfChildren() + "\n\n";
-
- var ulList = body.childAtIndex(1);
- result.innerText += ulList.attributesOfChildren() + "\n\n";
-
- var dlList = body.childAtIndex(2);
- result.innerText += dlList.attributesOfChildren() + "\n\n";
-
- }
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698