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

Unified Diff: LayoutTests/fast/forms/calendar-picker/week-picker-ax.html

Issue 601693002: Revert of AX: Calendar Picker: Add a test for input[type=week]. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 | « no previous file | LayoutTests/fast/forms/calendar-picker/week-picker-ax-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/forms/calendar-picker/week-picker-ax.html
diff --git a/LayoutTests/fast/forms/calendar-picker/week-picker-ax.html b/LayoutTests/fast/forms/calendar-picker/week-picker-ax.html
deleted file mode 100644
index a7d3a069d29b9bc599eed64a5222d68dec6de8d0..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/forms/calendar-picker/week-picker-ax.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<script src="../../../resources/js-test.js"></script>
-<script src="../../forms/resources/picker-common.js"></script>
-<script src="resources/calendar-picker-common.js"></script>
-<p id="description"></p>
-<div id="console"></div>
-<input type="week" id="week1" value="2000-W13">
-
-<script>
-description('Tests if typing an arrow key dispatches |Focus| and |ActiveDescendantChanged| a11y events.');
-
-window.accessibilityController.setNotificationListener(function(axnode, type) {
- if (type == 'Focus') {
- // Remove ',' to reduce platform differences.
- debug('Focused: ' + escapeHTML(accessibilityController.focusedElement.description.replace(/,/g, '')));
- } else if (type == 'ActiveDescendantChanged') {
- testPassed('Received ActiveDescendantChanged');
- if (++activeDescendantCounter == 2)
- finishJSTest();
- }
-});
-var activeDescendantCounter = 0;
-var week1 = document.getElementById('week1');
-openPicker(week1, test1);
-
-function test1() {
- eventSender.keyDown('downArrow');
-}
-
-</script>
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/fast/forms/calendar-picker/week-picker-ax-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698