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

Unified Diff: LayoutTests/accessibility/table-attributes.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/table-attributes.html
diff --git a/LayoutTests/accessibility/table-attributes.html b/LayoutTests/accessibility/table-attributes.html
deleted file mode 100644
index 2fb57945bf2d973247cceae4bffa12ee12bad58e..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/table-attributes.html
+++ /dev/null
@@ -1,63 +0,0 @@
-<html>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-</script>
-<body id="body">
-
- <table id="testTable" align="center" border="1" cellpadding="5" cellspacing="0"
- summary="This is the summary text that should appear as a description">
- <caption> Example #1: Nested Stubs </caption>
- <tr>
- <th class="center" colspan="2" rowspan="2">Ruritanian<br> Population
- <br> Survey</th>
- <th class="center" rowspan="2">All<br> Genders</th>
-
- <th class="center" colspan="2">By Gender</th>
- </tr>
- <tr>
- <th class="center">Males</th>
- <th class="center">Females</th>
- </tr>
- <tr>
-
- <th align="left" rowspan="2">All Regions</th>
- <th>North</th>
- <td align="right">3333</td>
- <td align="right">1111</td>
- <td align="right">2222</td>
- </tr>
-
- <tr>
- <th>South</th>
- <td align="right">3333</td>
- <td align="right">1111</td>
- <td align="right">2222</td>
- </tr>
- </table>
-
- <div id="result"></div>
-
- <script>
- if (window.accessibilityController) {
- var body = document.getElementById("body");
- body.focus();
- var table = accessibilityController.focusedElement.childAtIndex(0);
-
- result.innerText += "--------------------------\n\n";
- result.innerText += table.attributesOfColumnHeaders() + "\n\n";
- result.innerText += "--------------------------\n\n";
- result.innerText += table.attributesOfRowHeaders() + "\n\n";
- result.innerText += "--------------------------\n\n";
- result.innerText += table.attributesOfColumns() + "\n\n";
- result.innerText += "--------------------------\n\n";
- result.innerText += table.attributesOfRows() + "\n\n";
- result.innerText += "--------------------------\n\n";
- result.innerText += table.attributesOfVisibleCells() + "\n\n";
- result.innerText += "--------------------------\n\n";
- result.innerText += table.attributesOfHeader() + "\n\n";
- result.innerText += "--------------------------\n\n";
- }
- </script>
-</body>
-</html>
« no previous file with comments | « LayoutTests/accessibility/radio-button-group-members.html ('k') | LayoutTests/accessibility/table-sections.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698