Closed
Bug 681666
Opened 14 years ago
Closed 14 years ago
Add formnovalidate attribute to test_button_attribute_reflection.html
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
FIXED
mozilla9
People
(Reporter: mounir, Assigned: mounir)
References
Details
Attachments
(1 file)
2.99 KB,
patch
|
Ms2ger
:
review+
|
Details | Diff | Splinter Review |
No description provided.
Attachment #555426 -
Flags: review?(Ms2ger)
Comment 1•14 years ago
|
||
Comment on attachment 555426 [details] [diff] [review]
Patch v1
>--- a/content/html/content/test/forms/test_button_attributes_reflection.html
>+++ b/content/html/content/test/forms/test_button_attributes_reflection.html
>@@ -23,12 +23,19 @@ https://bugzilla.mozilla.org/show_bug.cg
> reflectLimitedEnumerated({
> element: document.createElement("button"),
> attribute: "type",
> validValues: [ "submit", "reset", "button" ],
> invalidValues: [ "this-is-probably-a-wrong-type", "", "tulip" ],
> defaultValue: "submit",
> });
>
>+// .formNoValidate
>+reflectBoolean({
>+ element: document.createElement("button"),
>+ attribute: "formNoValidate",
>+});
>+
>+
One empty line is enough. And I'd rather you didn't add the ',' at the end, but it looks like you got that past me before.
Attachment #555426 -
Flags: review?(Ms2ger) → review+
Assignee | ||
Comment 2•14 years ago
|
||
(In reply to Ms2ger from comment #1)
> One empty line is enough.
Oups :)
> And I'd rather you didn't add the ',' at the end,
> but it looks like you got that past me before.
Sorry but I love that trailing comma and I'm pretty sure you don't want to break my hearth :)
Thanks for the quick review!
Flags: in-testsuite+
Whiteboard: [needs review] → [inbound]
Comment 3•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Whiteboard: [inbound]
Target Milestone: --- → mozilla9
You need to log in
before you can comment on or make changes to this bug.
Description
•