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" ], |