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

Unified Diff: LayoutTests/fast/forms/suggestion-picker/time-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/time-suggestion-picker-step-attribute.html
diff --git a/LayoutTests/fast/forms/suggestion-picker/time-suggestion-picker-step-attribute.html b/LayoutTests/fast/forms/suggestion-picker/time-suggestion-picker-step-attribute.html
index 6e3a5ad03a478b23426fce20b7c8ce3c87c54170..c96ff1c2e3d7580fd4d774f9bab662ff6d006708 100644
--- a/LayoutTests/fast/forms/suggestion-picker/time-suggestion-picker-step-attribute.html
+++ b/LayoutTests/fast/forms/suggestion-picker/time-suggestion-picker-step-attribute.html
@@ -27,7 +27,7 @@ shouldBeNull('document.getElementById("mock-page-popup")');
var timeElement = document.getElementById('time');
window.onload = function() {
- openPickerWithMock(timeElement, test1);
+ openPicker(timeElement, test1);
};
function test1() {
@@ -43,7 +43,7 @@ function test1() {
function test1AfterClosing() {
timeElement.step = 60;
- openPickerWithMock(timeElement, test2);
+ openPicker(timeElement, test2);
}
function test2() {
@@ -61,7 +61,7 @@ function test2() {
function test2AfterClosing() {
timeElement.step = 1;
- openPickerWithMock(timeElement, test3);
+ openPicker(timeElement, test3);
}
function test3() {
@@ -80,7 +80,7 @@ function test3() {
function test3AfterClosing() {
timeElement.step = 0.001;
- openPickerWithMock(timeElement, test4);
+ openPicker(timeElement, test4);
}
function test4() {

Powered by Google App Engine
This is Rietveld 408576698