Index: LayoutTests/fast/forms/calendar-picker/week-picker-ax.html |
diff --git a/LayoutTests/fast/forms/calendar-picker/month-picker-ax.html b/LayoutTests/fast/forms/calendar-picker/week-picker-ax.html |
similarity index 84% |
copy from LayoutTests/fast/forms/calendar-picker/month-picker-ax.html |
copy to LayoutTests/fast/forms/calendar-picker/week-picker-ax.html |
index c9c44ced08685f3845f94673663689e7726d6d6f..a7d3a069d29b9bc599eed64a5222d68dec6de8d0 100644 |
--- a/LayoutTests/fast/forms/calendar-picker/month-picker-ax.html |
+++ b/LayoutTests/fast/forms/calendar-picker/week-picker-ax.html |
@@ -6,7 +6,7 @@ |
<script src="resources/calendar-picker-common.js"></script> |
<p id="description"></p> |
<div id="console"></div> |
-<input type="month" id="month1" value="2000-01"> |
+<input type="week" id="week1" value="2000-W13"> |
<script> |
description('Tests if typing an arrow key dispatches |Focus| and |ActiveDescendantChanged| a11y events.'); |
@@ -22,11 +22,11 @@ window.accessibilityController.setNotificationListener(function(axnode, type) { |
} |
}); |
var activeDescendantCounter = 0; |
-var month1 = document.getElementById('month1'); |
-openPicker(month1, test1); |
+var week1 = document.getElementById('week1'); |
+openPicker(week1, test1); |
function test1() { |
- eventSender.keyDown('rightArrow'); |
+ eventSender.keyDown('downArrow'); |
} |
</script> |