Closed
Bug 839371
Opened 12 years ago
Closed 12 years ago
Implement HTML5 <data> element
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
VERIFIED
FIXED
mozilla22
Tracking | Status | |
---|---|---|
relnote-firefox | --- | 22+ |
People
(Reporter: humph, Assigned: humph)
References
()
Details
(Keywords: dev-doc-complete)
Attachments
(1 file, 1 obsolete file)
11.89 KB,
patch
|
Details | Diff | Splinter Review |
Related to the <time> element from bug 629801, "The data element represents its contents, along with a machine-readable form of those contents in the value attribute."
interface HTMLDataElement : HTMLElement {
attribute DOMString value;
};
Is it OK to do this one now too, or should we wait? (spec doc says, "Experimental draft"). If 'yes' I'll do it now as I finish up <time>. I think both are going to be pretty useful.
Comment 1•12 years ago
|
||
Henri, you might know the answer. How stable is the spec?
Comment 2•12 years ago
|
||
I'm not aware of any relevant implementation-affecting outstanding feedback for <data>, for what it's worth.
Assignee | ||
Comment 3•12 years ago
|
||
Comment 4•12 years ago
|
||
Comment on attachment 718095 [details] [diff] [review]
v1
>+JSObject*
>+HTMLDataElement::WrapNode(JSContext* cx, JSObject* scope, bool* triedToWrap)
aCx, aScope, aTriedToWrap
Attachment #718095 -
Flags: review?(bugs) → review+
Assignee | ||
Comment 5•12 years ago
|
||
I've fixed that nit, thanks for the quick review.
Do you want anyone else to look at this, or can it land?
Attachment #718095 -
Attachment is obsolete: true
Comment 6•12 years ago
|
||
I think this should be fine.
Assignee | ||
Updated•12 years ago
|
Keywords: checkin-needed
Assignee | ||
Updated•12 years ago
|
Keywords: dev-doc-needed
Comment 7•12 years ago
|
||
Flags: in-testsuite+
Keywords: checkin-needed
Comment 8•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla22
Updated•12 years ago
|
relnote-firefox:
--- → ?
Comment 9•12 years ago
|
||
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:22.0) Gecko/20130403 Firefox/22.0
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:22.0) Gecko/20130403 Firefox/22.0
Mozilla/5.0 (X11; Linux i686; rv:22.0) Gecko/20130402 Firefox/22.0
BuildID: 20130402004013
I also performed some testing around this element on latest Firefox 22 Aurora builds across main platforms and there were no related visual issues or errors on pages using the <data> tag.
Based on this and the fact that there is a test page for this element, I'm marking the bug Verified.
Status: RESOLVED → VERIFIED
Updated•12 years ago
|
Comment 10•12 years ago
|
||
This bug has been listed as part of the Aurora 22 release notes in either [1], [2], or both. If you find any of the information or wording incorrect in the notes, please email release-mgmt@mozilla.com asap. Thanks!
[1] https://www.mozilla.org/en-US/firefox/22.0a2/auroranotes/
[2] https://www.mozilla.org/en-US/mobile/22.0a2/auroranotes/
Comment 11•11 years ago
|
||
Documented:
https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataElement
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
and
https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Releases/22
Keywords: dev-doc-needed → dev-doc-complete
You need to log in
before you can comment on or make changes to this bug.
Description
•