Closed
Bug 958
Opened 26 years ago
Closed 26 years ago
form element disabled attribute DOM wiring not implemented
Categories
(Core :: DOM: Core & HTML, defect, P2)
Tracking
()
VERIFIED
FIXED
M8
People
(Reporter: angus, Assigned: pollmann)
References
()
Details
We need to support the "disabled" attribute on many HTML form elements, such as
a button:
<input type="button" value="Test" disabled="true">
- This button should appear disabled (grayed out)
- clicking on it should NOT fire an event
- the disabled attribute needs to be exposed to the DOM so it can be set through
JavaScript.
Obviously the semantics will vary slightly among elements (for example, a
disabled text area may be grayed out and never get focus)
Updated•26 years ago
|
Status: NEW → ASSIGNED
Reporter | ||
Comment 1•26 years ago
|
||
Note that there's a proposed CSS3 pseudo class called :disabled. We should keep
this in mind when architecting support for this. Adding PeterL to the cc list so
he catches this.
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Reporter | ||
Updated•26 years ago
|
Status: RESOLVED → REOPENED
Summary: disabled attribute not implemented on form elements → form element disabled attribute DOM wiring not implemented
Reporter | ||
Comment 2•26 years ago
|
||
I can't change the value of the disabled attribute through the DOM (it's not
actually affecting the form element).
Comment 3•26 years ago
|
||
Is this bug fixed or reopened? Status and Resolution contradict each other. I
have determined that the disable works in Raptor - is there any further to be
fixed?
Reporter | ||
Updated•26 years ago
|
Resolution: FIXED → ---
Reporter | ||
Comment 4•26 years ago
|
||
This bug is not yet fixed. I changed the summary to reflect the part that isn't
working.
Working: disabled attribute on an HTML form element
Not working: changing disabled attribute on an HTML form element through the DOM
Right now, I think the bug is waiting to be assigned to either Chris or Eric.
I've just added pollmann to the cc: list, since he'll probably want the bug. I'm
taking kipp and peterl off the cc: list. I'm clearing the resolution (sorry for
not doing that earlier).
Updated•26 years ago
|
Assignee: karnaze → pollmann
Status: REOPENED → NEW
Assignee | ||
Updated•26 years ago
|
Assignee | ||
Comment 6•26 years ago
|
||
This is implemented for most elements.
Still remaining:
Selects Options and HTML4 Buttons.
Comment 7•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
Updated•26 years ago
|
QA Contact: 4110 → 4137
Comment 8•26 years ago
|
||
Reassigning qa contact to cpratt@netscape.com
Assignee | ||
Comment 9•26 years ago
|
||
CC'ing Eric Vaughan on this one: the disabled attribute is not implemented for
HTML 4 buttons.
Assignee | ||
Updated•26 years ago
|
Target Milestone: M4 → M5
Assignee | ||
Updated•26 years ago
|
Target Milestone: M5 → M6
Assignee | ||
Comment 10•26 years ago
|
||
Redistributing to M8...
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago → 26 years ago
Resolution: --- → FIXED
Comment 11•26 years ago
|
||
Is this bug fixed or not ? No where it says that its fixed, but it has
resolution resolved fixed.
Assignee | ||
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Assignee | ||
Comment 12•26 years ago
|
||
Verifying it's fixed, Eric Vaughn marked it fixed on May 14. I also just tested
it at blueviper/forms/test.html and disabling the button through js seemed to
work.
Updated•6 years ago
|
Component: HTML: Form Submission → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•