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

Unified Diff: LayoutTests/fast/forms/calendar-picker/calendar-picker-with-step.html

Issue 629103002: Don't use mock PagePopup if possible. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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/fast/forms/calendar-picker/calendar-picker-with-step.html
diff --git a/LayoutTests/fast/forms/calendar-picker/calendar-picker-with-step.html b/LayoutTests/fast/forms/calendar-picker/calendar-picker-with-step.html
index 335f1df5bb2283b80275c73ff27d853efc815dcc..1d7d6cdd302cb95f498aa59045462bf70c82e1fd 100644
--- a/LayoutTests/fast/forms/calendar-picker/calendar-picker-with-step.html
+++ b/LayoutTests/fast/forms/calendar-picker/calendar-picker-with-step.html
@@ -16,7 +16,7 @@
description('Test if step limits available dates in calendar picker.');
document.getElementById('date-bare').value = '2011-05-01';
-openPickerWithMock(document.getElementById('date-bare'), test1);
+openPicker(document.getElementById('date-bare'), test1);
function test1() {
debug("Step without value or min attributes.");
@@ -28,7 +28,7 @@ function test1() {
}
function test1AfterClose() {
- openPickerWithMock(document.getElementById('date'), test2);
+ openPicker(document.getElementById('date'), test2);
}
function test2() {
@@ -44,7 +44,7 @@ function test2AfterClose() {
document.getElementById('date').min = '2011-05-01';
// Reopen popup
- openPickerWithMock(document.getElementById('date'), test3);
+ openPicker(document.getElementById('date'), test3);
}
function test3() {

Powered by Google App Engine
This is Rietveld 408576698