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

Unified Diff: LayoutTests/fast/forms/calendar-picker/calendar-picker-datetimelocal-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-datetimelocal-with-step.html
diff --git a/LayoutTests/fast/forms/calendar-picker/calendar-picker-datetimelocal-with-step.html b/LayoutTests/fast/forms/calendar-picker/calendar-picker-datetimelocal-with-step.html
index 664333c30fb6e5a62acb2e38b724f22c8c9a7a61..763c8af2f44a860550b9fed4832eca3d2dd0224f 100644
--- a/LayoutTests/fast/forms/calendar-picker/calendar-picker-datetimelocal-with-step.html
+++ b/LayoutTests/fast/forms/calendar-picker/calendar-picker-datetimelocal-with-step.html
@@ -14,7 +14,7 @@
description('Test if step limits available dates in calendar picker on datetime input.');
document.getElementById('datetime-bare').value = '2012-11-20T00:00';
-openPickerWithMock(document.getElementById('datetime-bare'), test1);
+openPicker(document.getElementById('datetime-bare'), test1);
function test1() {
debug("Step without value, min nor max attributes.");
@@ -26,7 +26,7 @@ function test1() {
}
function test1AfterClose() {
- openPickerWithMock(document.getElementById('datetime'), test2);
+ openPicker(document.getElementById('datetime'), test2);
}
function test2() {
@@ -42,7 +42,7 @@ function test2AfterClose() {
document.getElementById('datetime').min = '2012-11-16T12:00';
// Reopen popup
- openPickerWithMock(document.getElementById('datetime'), test3);
+ openPicker(document.getElementById('datetime'), test3);
}
function test3() {
@@ -58,7 +58,7 @@ function test3AfterClose() {
document.getElementById('datetime').max = '2012-11-20T00:00';
// Reopen popup
- openPickerWithMock(document.getElementById('datetime'), test4);
+ openPicker(document.getElementById('datetime'), test4);
}
function test4() {

Powered by Google App Engine
This is Rietveld 408576698