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

Unified Diff: LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-datetimelocal.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-datetimelocal.html
diff --git a/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-datetimelocal.html b/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-datetimelocal.html
deleted file mode 100644
index afd39b8f7005f9f85f56a508743a0c69d872e6a9..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-datetimelocal.html
+++ /dev/null
@@ -1,37 +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-local id=datetimelocal value="2011-12-31T12:53:45">
-<script>
-description("Tests if calendar picker works for datetime-local as expected.");
-
-debug('Check that page popup doesn\'t exist at first.');
-shouldBeNull('document.getElementById("mock-page-popup")');
-
-openPicker(document.getElementById('datetimelocal'), test);
-
-function test() {
- shouldBeEqualToString('selectedValue()', '2011-12-31');
- shouldBeEqualToString('highlightedValue()', '2011-12-31');
-
- eventSender.keyDown('rightArrow');
- shouldBeEqualToString('highlightedValue()', '2012-01-01');
-
- eventSender.keyDown('\n');
- shouldBeEqualToString('selectedValue()', '2012-01-01');
- shouldBeEqualToString('document.getElementById("datetimelocal").value', '2012-01-01T12:53:45');
-
- finishJSTest();
-}
-
-</script>
-<script src="../../../../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698