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

Unified Diff: LayoutTests/accessibility/internal-link-anchors2.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
« no previous file with comments | « LayoutTests/accessibility/image-map2.html ('k') | LayoutTests/accessibility/language-attribute.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/accessibility/internal-link-anchors2.html
diff --git a/LayoutTests/accessibility/internal-link-anchors2.html b/LayoutTests/accessibility/internal-link-anchors2.html
deleted file mode 100644
index 324d51be01cd1c8f298b375daa96171cb34c1f24..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/internal-link-anchors2.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<html>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-</script>
-<body>
-
- <div id="result"></div>
-
- <!-- Test internally named linked anchors -->
- <li class="toclevel-2"><a href="#Tourette_syndrome" id="tourette_anchor"><span class="tocnumber">2.2</span> <span class="toctext">Tourette syndrome</span></a></li>
- <p><a name="Tourette_syndrome" id="Tourette_syndrome"></a></p>
- <h3><span class="editsection">[<a href="/w/index.php?title=Samuel_Johnson&amp;action=edit&amp;section=11" title="Edit section: Tourette syndrome">edit</a>]</span> <span class="mw-headline">Tourette syndrome</span></h3>
-
- <A HREF="#bottom" id="bottom_anchor">Link to anchor</A> <A HREF="#bottom2" id="bottom2_anchor">Link to div</A>
- <BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
- <BR><BR><BR><BR><BR>This is some text in the middle<BR><BR><BR><BR><BR>
- <BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
- This is some text.
- This is a bottom anchor<a id="bottom"></A>
- <BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
- <DIV ID="bottom2">This is a div</DIV>
-
-
- <script>
- if (window.accessibilityController) {
- var result = document.getElementById("result");
- result.innerText += "Anchor Tests\n";
- result.innerText += "----------------------\n";
-
- var labeledItem = document.getElementById("tourette_anchor");
- labeledItem.focus();
- result.innerText += accessibilityController.focusedElement.attributesOfLinkedUIElements() + "\n\n";
-
- labeledItem = document.getElementById("bottom_anchor");
- labeledItem.focus();
- result.innerText += accessibilityController.focusedElement.attributesOfLinkedUIElements() + "\n\n";
-
- labeledItem = document.getElementById("bottom2_anchor");
- labeledItem.focus();
- result.innerText += accessibilityController.focusedElement.attributesOfLinkedUIElements() + "\n\n";
- }
- </script>
-</body>
-</html>
« no previous file with comments | « LayoutTests/accessibility/image-map2.html ('k') | LayoutTests/accessibility/language-attribute.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698