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

Unified Diff: LayoutTests/platform/chromium/fast/forms/suggestion-picker/month-suggestion-picker-appearance.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/month-suggestion-picker-appearance.html
diff --git a/LayoutTests/platform/chromium/fast/forms/suggestion-picker/month-suggestion-picker-appearance.html b/LayoutTests/platform/chromium/fast/forms/suggestion-picker/month-suggestion-picker-appearance.html
deleted file mode 100644
index 270cd84844169911bb52e4cf0ceb541ef315065f..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/fast/forms/suggestion-picker/month-suggestion-picker-appearance.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-window.enablePixelTesting = true;
-</script>
-<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: #eeffff;">
-<script src="resources/suggestion-picker-common.js"></script>
-<input type=month id=month value="10000-12" list="suggestions" style="width: 200px;">
-<datalist id=suggestions>
- <option>2012-00</option> <!--invalid-->
- <option>2012-01-01</option> <!--invalid-->
- <option>foo</option> <!--invalid-->
- <option label="This Month">2012-01</option>
- <option>2012-02</option>
- <option>2012-03</option>
- <option>2012-04</option>
- <option>2012-05</option>
- <option>2012-06</option>
- <option>2012-07</option>
- <option>2012-08</option>
- <option>2012-09</option>
- <option>2012-10</option>
- <option>2012-11</option>
- <option>2012-12</option>
- <option>2013-01</option>
- <option>2013-02</option>
- <option>2013-03</option>
- <option>2013-04</option>
- <option>2013-05</option>
- <option>2013-06</option>
- <option>2013-07</option>
-</datalist>
-
-<p id="description" style="opacity: 0"></p>
-<div id="console" style="opacity: 0"></div>
-
-<script>
-openPicker(document.getElementById('month'), finishTest);
-
-function finishTest() {
- popupWindow.focus();
- eventSender.keyDown('downArrow');
- finishJSTest();
-}
-</script>
-<script src="../../../../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698