Closed
Bug 1270369
Opened 9 years ago
Closed 9 years ago
HTMLFormElement's named properties should not be enumerable
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
FIXED
mozilla51
People
(Reporter: bzbarsky, Assigned: bzbarsky)
References
Details
Attachments
(1 file)
|
3.98 KB,
patch
|
bkelly
:
review+
|
Details | Diff | Splinter Review |
See https://www.w3.org/Bugs/Public/show_bug.cgi?id=22320
We currently claim they are, but GetSupportedNames doesn't actually return them so in practice they're not enumerable in terms of showing up in for-in iteration...
| Assignee | ||
Comment 1•9 years ago
|
||
Attachment #8786590 -
Flags: review?(bkelly)
| Assignee | ||
Updated•9 years ago
|
Assignee: nobody → bzbarsky
Status: NEW → ASSIGNED
Updated•9 years ago
|
Attachment #8786590 -
Flags: review?(bkelly) → review+
Pushed by bzbarsky@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/dffe2b6beaaa
HTMLFormElemement should have unenumerable named properties per spec. r=bkelly
Comment 3•9 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
status-firefox51:
--- → fixed
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla51
Updated•9 years ago
|
Updated•9 years ago
|
Keywords: dev-doc-needed,
site-compat
Comment 4•9 years ago
|
||
Looks like nothing has changed here as per comment 0 and my quick test. Removing the keywords.
Keywords: dev-doc-needed,
site-compat
| Assignee | ||
Comment 5•9 years ago
|
||
> Looks like nothing has changed here
Things have changed, but they're pretty subtle. Basically what's changed is the return value of Object.getOwnPropertyDescriptor.
You need to log in
before you can comment on or make changes to this bug.
Description
•