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

Unified Diff: LayoutTests/fast/forms/implicit-submission.html

Issue 60573007: Non-activated default buttons prevent implicit form submission. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Retire dated comment on button names Created 7 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/fast/forms/implicit-submission-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/forms/implicit-submission.html
diff --git a/LayoutTests/fast/forms/implicit-submission.html b/LayoutTests/fast/forms/implicit-submission.html
index af3286f08a439f5a08697c237d5c15c16ac03825..4d3ff5b19bf06e69f77dc4f8300853904cfb6249 100644
--- a/LayoutTests/fast/forms/implicit-submission.html
+++ b/LayoutTests/fast/forms/implicit-submission.html
@@ -8,14 +8,14 @@ var currentTest = 0;
// match IE and FF unless specified otherwise.
var allTests = [
[ "Single text input", "!text", "y" ],
- [ "Single text input with submit disabled", "!text,-submit", "y" ],
+ [ "Single text input with submit disabled", "!text,-submit", "n" ],
[ "Multiple text inputs", "!text,text,text", "n" ],
[ "Multiple text inputs with submit", "!text,text,text,submit", "y" ],
[ "Multiple text inputs with submit disabled", "!text,text,text,-submit", "n" ],
- [ "Multiple text inputs and multiple submits, first submit disabled", "!text,text,text,-submit,submit", "y" ], // match IE, not FF.
+ [ "Multiple text inputs and multiple submits, first submit disabled", "!text,text,text,-submit,submit", "n" ], // match Gecko + spec, but not IE.
[ "Text input and text area, text input focused", "!text,textarea", "y" ],
[ "Text input and text area and a submit, text input focused", "!text,textarea,submit", "y" ],
- [ "Text input and text area and a disabled submit, text input focused", "!text,textarea,-submit", "y" ], // match IE, not FF.
+ [ "Text input and text area and a disabled submit, text input focused", "!text,textarea,-submit", "n" ], // match Gecko + spec, but not IE.
[ "Text input and checkbox, text input focused", "!text,checkbox", "y" ],
[ "Text input and radio, text input focused", "!text,radio", "y" ],
[ "Text input and text area, textarea focused", "text,!textarea", "n" ],
« no previous file with comments | « no previous file | LayoutTests/fast/forms/implicit-submission-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698