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

Unified Diff: LayoutTests/fast/forms/input-type-change-focusout.html

Issue 98543009: Make arguments to Element methods non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix failing tests Created 7 years 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/input-type-change-focusout.html
diff --git a/LayoutTests/fast/forms/input-type-change-focusout.html b/LayoutTests/fast/forms/input-type-change-focusout.html
index dd74a9e17d093be99b7a9c3a4278f9ef666e691b..dfc63beba52dd4b76051be2ff5f664b9ddb3ed18 100644
--- a/LayoutTests/fast/forms/input-type-change-focusout.html
+++ b/LayoutTests/fast/forms/input-type-change-focusout.html
@@ -13,7 +13,7 @@ input.addEventListener('focusout', function() {
focusoutCalled = true;
});
input.focus();
-input.setAttribute('x-webkit-speech');
+input.setAttribute('x-webkit-speech', '');
shouldBeFalse('focusoutCalled');
input.type = 'month';
shouldBeFalse('focusoutCalled');

Powered by Google App Engine
This is Rietveld 408576698