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

Unified Diff: LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-datetime-with-step.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/platform/chromium/fast/forms/calendar-picker/calendar-picker-datetime-with-step.html
diff --git a/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-datetime-with-step.html b/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-datetime-with-step.html
deleted file mode 100644
index 28afd00009834ddde89fae2999cf1e8907514029..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-datetime-with-step.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../../../../fast/js/resources/js-test-pre.js"></script>
-<script src="../../../../../fast/forms/resources/picker-common.js"></script>
-<script src="resources/calendar-picker-common.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-
-<input type=datetime id=datetime value="2012-11-20T00:00Z" step="302400"/>
-
-<script>
-description('Test if step limits available dates in calendar picker on datetime input.');
-
-openPicker(document.getElementById('datetime'), test1);
-
-function test1() {
- debug("Step without min or max.");
- shouldBeEqualToString('availableDayCells().join(",")', '2012-11-01,2012-11-04,2012-11-08,2012-11-11,2012-11-15,2012-11-18,2012-11-22,2012-11-25,2012-11-29');
-
- // Close popup
- eventSender.keyDown('\x1B');
- waitUntilClosing(test1AfterClose);
-}
-
-function test1AfterClose() {
- document.getElementById('datetime').min = "2012-11-16T12:00Z";
-
- // Reopen popup
- openPicker(document.getElementById('datetime'), test2);
-}
-
-function test2() {
- debug("Step when min is set.");
- shouldBeEqualToString('availableDayCells().join(",")', '2012-11-16,2012-11-20,2012-11-23,2012-11-27,2012-11-30');
-
- // Close popup
- eventSender.keyDown('\x1B');
- waitUntilClosing(test2AfterClose);
-}
-
-function test2AfterClose() {
- document.getElementById('datetime').max = "2012-11-20T00:00Z";
-
- // Reopen popup
- openPicker(document.getElementById('datetime'), test3);
-}
-
-function test3() {
- debug("Step when min and max are set.");
- shouldBeEqualToString('availableDayCells().join(",")', '2012-11-16,2012-11-20');
- finishJSTest();
-}
-
-</script>
-<script src="../../../../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698