| Index: LayoutTests/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-min-max-attribute.html
|
| diff --git a/LayoutTests/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-min-max-attribute.html b/LayoutTests/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-min-max-attribute.html
|
| deleted file mode 100644
|
| index abf5bd77a7204640905b46a0512b371780b40cd5..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-min-max-attribute.html
|
| +++ /dev/null
|
| @@ -1,47 +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=time id=time value="01:00" min="01:02" max="2012-01-04" list=suggestions>
|
| -<datalist id=suggestions>
|
| - <option>01:00</option>
|
| - <option>01:01</option>
|
| - <option>01:02</option>
|
| - <option>01:03</option>
|
| - <option>01:04</option>
|
| - <option>01:05</option>
|
| - <option>01:06</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('time'), test);
|
| -};
|
| -
|
| -function test() {
|
| - popupWindow.focus();
|
| -
|
| - shouldBe('entryValues().length', '5');
|
| - shouldBeEqualToString('entryValues()[0]', '01:02');
|
| - shouldBeEqualToString('entryValues()[1]', '01:03');
|
| - shouldBeEqualToString('entryValues()[2]', '01:04');
|
| - shouldBeEqualToString('entryValues()[3]', '01:05');
|
| - shouldBeEqualToString('entryValues()[4]', '01:06');
|
| -
|
| - finishJSTest();
|
| -}
|
| -
|
| -</script>
|
| -<script src="../../../../../fast/js/resources/js-test-post.js"></script>
|
| -</body>
|
| -</html>
|
|
|