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

Unified Diff: LayoutTests/fast/forms/suggestion-picker/datetimelocal-suggestion-picker-step-attribute.html

Issue 633823003: Don't use mock PagePopup if possible, part 2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase again 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/suggestion-picker/datetimelocal-suggestion-picker-step-attribute.html
diff --git a/LayoutTests/fast/forms/suggestion-picker/datetimelocal-suggestion-picker-step-attribute.html b/LayoutTests/fast/forms/suggestion-picker/datetimelocal-suggestion-picker-step-attribute.html
index 47465d9c0dbc979ee083f205fca4f5a3d229f6f2..9418205f70c2ecd0108416c3d51dba223ae4760a 100644
--- a/LayoutTests/fast/forms/suggestion-picker/datetimelocal-suggestion-picker-step-attribute.html
+++ b/LayoutTests/fast/forms/suggestion-picker/datetimelocal-suggestion-picker-step-attribute.html
@@ -27,7 +27,7 @@ shouldBeNull('document.getElementById("mock-page-popup")');
var datetimeLocalElement = document.getElementById('datetime-local');
window.onload = function() {
- openPickerWithMock(datetimeLocalElement, test1);
+ openPicker(datetimeLocalElement, test1);
};
function test1() {
@@ -44,7 +44,7 @@ function test1() {
function test1AfterClosing() {
datetimeLocalElement.step = 60;
- openPickerWithMock(datetimeLocalElement, test2);
+ openPicker(datetimeLocalElement, test2);
}
function test2() {
@@ -63,7 +63,7 @@ function test2() {
function test2AfterClosing() {
datetimeLocalElement.step = 1;
- openPickerWithMock(datetimeLocalElement, test3);
+ openPicker(datetimeLocalElement, test3);
}
function test3() {
@@ -83,7 +83,7 @@ function test3() {
function test3AfterClosing() {
datetimeLocalElement.step = 0.001;
- openPickerWithMock(datetimeLocalElement, test4);
+ openPicker(datetimeLocalElement, test4);
}
function test4() {

Powered by Google App Engine
This is Rietveld 408576698