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

Unified Diff: LayoutTests/platform/chromium/fast/forms/suggestion-picker/datetimelocal-suggestion-picker-min-max-attribute.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/suggestion-picker/datetimelocal-suggestion-picker-min-max-attribute.html
diff --git a/LayoutTests/platform/chromium/fast/forms/suggestion-picker/datetimelocal-suggestion-picker-min-max-attribute.html b/LayoutTests/platform/chromium/fast/forms/suggestion-picker/datetimelocal-suggestion-picker-min-max-attribute.html
deleted file mode 100644
index 0bd690ab659b4cef2c669281077503965ddf04ed..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/fast/forms/suggestion-picker/datetimelocal-suggestion-picker-min-max-attribute.html
+++ /dev/null
@@ -1,52 +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/suggestion-picker-common.js"></script>
-</head>
-<body style="background-color: #bbbbbb;">
-<p id="description"></p>
-<div id="console"></div>
-<input type=datetime-local id=datetime-local value="2012-11-20T12:00" min="2012-11-20T06:00" max="2012-11-21T12:00" list=suggestions>
-<datalist id=suggestions>
- <option>2012-11-19T18:00</option>
- <option>2012-11-20T00:00</option>
- <option>2012-11-20T06:00</option>
- <option>2012-11-20T12:00</option>
- <option>2012-11-20T18:00</option>
- <option>2012-11-21T00:00</option>
- <option>2012-11-21T06:00</option>
- <option>2012-11-21T12:00</option>
- <option>2012-11-21T18:00</option>
- <option>2012-11-22T00:00</option>
-</datalist>
-<script>
-description('Tests that min/max attributes filter out suggestions as expected.');
-
-debug('Check that page popup doesn\'t exist at first.');
-shouldBeNull('document.getElementById("mock-page-popup")');
-
-window.onload = function() {
- openPicker(document.getElementById('datetime-local'), test);
-};
-
-function test() {
- popupWindow.focus();
-
- shouldBe('entryValues().length', '7');
- shouldBeEqualToString('entryValues()[0]', '2012-11-20T06:00');
- shouldBeEqualToString('entryValues()[1]', '2012-11-20T12:00');
- shouldBeEqualToString('entryValues()[2]', '2012-11-20T18:00');
- shouldBeEqualToString('entryValues()[3]', '2012-11-21T00:00');
- shouldBeEqualToString('entryValues()[4]', '2012-11-21T06:00');
- shouldBeEqualToString('entryValues()[5]', '2012-11-21T12:00');
- shouldBeEqualToString('entryValues()[6]', '@openCalendarPicker');
-
- finishJSTest();
-}
-
-</script>
-<script src="../../../../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698