Index: LayoutTests/accessibility/table-caption.html |
diff --git a/LayoutTests/accessibility/table-caption.html b/LayoutTests/accessibility/table-caption.html |
deleted file mode 100644 |
index 551bea5d58651d059ab9ac335aba493ae667eb26..0000000000000000000000000000000000000000 |
--- a/LayoutTests/accessibility/table-caption.html |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
-<html> |
-<head> |
-<script src="../resources/js-test.js"></script> |
-</head> |
-<body id="body"> |
- |
-<div id="content"> |
- |
-<table id="table" border=1> |
- <caption> TableCaption </caption> |
- <tr><td>foo</td><td>bar</td></tr> |
-</table> |
- |
-</div> |
- |
-<script> |
- |
- description("This tests that table caption element is exposed for accessibility."); |
- |
- if (window.accessibilityController) { |
- var table = accessibilityController.accessibleElementById("table"); |
- shouldBe("table.childrenCount", "5"); |
- window.captionText = table.childAtIndex(0).childAtIndex(0).stringValue; |
- shouldBe("captionText", "'AXValue: TableCaption'"); |
- // Clear the HTML for cleaner results. |
- document.getElementById("content").innerHTML = ""; |
- } |
- |
- |
-</script> |
- |
-</body> |
-</html> |
- |