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

Unified Diff: LayoutTests/accessibility/radio-button-group-members.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/plugin.html ('k') | LayoutTests/accessibility/table-attributes.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/accessibility/radio-button-group-members.html
diff --git a/LayoutTests/accessibility/radio-button-group-members.html b/LayoutTests/accessibility/radio-button-group-members.html
deleted file mode 100644
index 47be2933cf3add0fd38e09d5ef391f7c45e3e52f..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/radio-button-group-members.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<html>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-</script>
-<body>
-
- <div id="result"></div>
-
- <!-- Test radio group without a form-->
- <form>
- <input type="radio" id="test1" name="test1">Yes<BR>
- <input type="radio" id="test1" name="test1">No<BR>
- <input type="radio" id="test1" name="test1">Maybe<BR>
- </form>
- <br><br>
-
- <!-- Test radio group without a form -->
- <input type="radio" id="test2" name="test2">Yes<BR>
- <input type="radio" id="test2" name="test2">No<BR>
- <br><br>
-
- <!-- Test radio group with labels -->
- <form>
- <input type="radio" id="test3" name="test3"><label for="test3">Yes</label><BR>
- <input type="radio" id="test3_1" name="test3"><label for="test3_1">No</label><BR>
- </form>
- <br><br>
-
- <!-- Test different radio groups -->
- <form>
- <input type="radio" id="test4" name="test4">Yes<BR>
- <input type="radio" id="test5" name="test5">No<BR>
- </form>
- <br><br>
-
- <script>
- if (window.accessibilityController) {
- var result = document.getElementById("result");
-
- var labeledItem = document.getElementById("test1");
- labeledItem.focus();
- result.innerText += "Radio group in a form\n";
- result.innerText += "----------------------\n";
- result.innerText += accessibilityController.focusedElement.attributesOfLinkedUIElements() + "\n\n";
-
- result.innerText += "Radio group without a form\n";
- result.innerText += "----------------------\n";
- labeledItem = document.getElementById("test2");
- labeledItem.focus();
- result.innerText += accessibilityController.focusedElement.attributesOfLinkedUIElements() + "\n\n";
-
- result.innerText += "Radio group with labels\n";
- result.innerText += "----------------------\n";
- labeledItem = document.getElementById("test3");
- labeledItem.focus();
- result.innerText += accessibilityController.focusedElement.attributesOfLinkedUIElements() + "\n\n";
-
- result.innerText += "Radio button without a group\n";
- result.innerText += "----------------------\n";
- labeledItem = document.getElementById("test4");
- labeledItem.focus();
- result.innerText += accessibilityController.focusedElement.attributesOfLinkedUIElements() + "\n\n";
- }
- </script>
-</body>
-</html>
« no previous file with comments | « LayoutTests/accessibility/plugin.html ('k') | LayoutTests/accessibility/table-attributes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698