| Index: LayoutTests/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-min-max-attribute.html
|
| diff --git a/LayoutTests/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-min-max-attribute.html b/LayoutTests/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-min-max-attribute.html
|
| deleted file mode 100644
|
| index 9cec8e302cc8b6f1ccdc9a82e726a93ba1f4bdb4..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-min-max-attribute.html
|
| +++ /dev/null
|
| @@ -1,51 +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=week id=week value="2012-W12" min="2012-W02" max="2012-W08" list=suggestions>
|
| -<datalist id=suggestions>
|
| - <option>2012-W01</option>
|
| - <option>2012-W02</option>
|
| - <option>2012-W03</option>
|
| - <option>2012-W04</option>
|
| - <option>2012-W05</option>
|
| - <option>2012-W06</option>
|
| - <option>2012-W07</option>
|
| - <option>2012-W08</option>
|
| - <option>2012-W09</option>
|
| - <option>2012-W10</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")');
|
| -
|
| -openPicker(document.getElementById('week'), test);
|
| -
|
| -function test() {
|
| - popupWindow.focus();
|
| -
|
| - shouldBe('entryValues().length', '8');
|
| - shouldBeEqualToString('entryValues()[0]', '2012-W02');
|
| - shouldBeEqualToString('entryValues()[1]', '2012-W03');
|
| - shouldBeEqualToString('entryValues()[2]', '2012-W04');
|
| - shouldBeEqualToString('entryValues()[3]', '2012-W05');
|
| - shouldBeEqualToString('entryValues()[4]', '2012-W06');
|
| - shouldBeEqualToString('entryValues()[5]', '2012-W07');
|
| - shouldBeEqualToString('entryValues()[6]', '2012-W08');
|
| - shouldBeEqualToString('entryValues()[7]', '@openCalendarPicker');
|
| -
|
| - finishJSTest();
|
| -}
|
| -
|
| -</script>
|
| -<script src="../../../../../fast/js/resources/js-test-post.js"></script>
|
| -</body>
|
| -</html>
|
|
|