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

Unified Diff: LayoutTests/fast/forms/calendar-picker/datetimelocal-picker-events.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/datetimelocal-picker-events.html
diff --git a/LayoutTests/fast/forms/calendar-picker/datetimelocal-picker-events.html b/LayoutTests/fast/forms/calendar-picker/datetimelocal-picker-events.html
index 17c31d2d484a08069b72206bc5f916de6f6c11ed..75a0cb3ab9a6cbc7a2b493bb96f55cb649b08712 100644
--- a/LayoutTests/fast/forms/calendar-picker/datetimelocal-picker-events.html
+++ b/LayoutTests/fast/forms/calendar-picker/datetimelocal-picker-events.html
@@ -25,7 +25,7 @@ var datetimelocal1 = document.getElementById('datetimelocal1');
datetimelocal1.addEventListener('input', recordEvent, false);
datetimelocal1.addEventListener('change', recordEvent, false);
-openPickerWithMock(datetimelocal1, test1);
+openPicker(datetimelocal1, test1);
function test1() {
debug('Choosing a new date value from the calendar picker. No events should be dispatched because the hour field and the minutes field are empty.');
@@ -41,7 +41,7 @@ function test1() {
function test1AfterClosing() {
datetimelocal1.value = "2013-01-21T17:49";
- openPickerWithMock(datetimelocal1, test2);
+ openPicker(datetimelocal1, test2);
}
function test2() {

Powered by Google App Engine
This is Rietveld 408576698