[webkit-dev] Implementing HTML5 time element
Vineet Chaudhary
rgf748 at motorola.com
Thu Sep 15 11:19:18 PDT 2011
Hi,
I am intending to implement the HTML5 <time> tag.
With Reference to Specification on :
http://www.w3.org/TR/html5/text-level-semantics.html#the-time-element
-
I have already logged bug for this in webkit bugzilla
https://bugs.webkit.org/show_bug.cgi?id=68156
Description : The time element represents either a time on a 24 hour clock,
or a precise date in the proleptic Gregorian calendar, optionally with a
time and a time-zone offset.
Only the latest Opera(11.51) have support for this tag.
I partial implementation to support this tag, with below interface.
interface [
] HTMLTimeElement : HTMLElement {
attribute [Reflect] DOMString dateTime;
attribute [Reflect] boolean pubDate;
readonly attribute Date valueAsDate;
};
Currently working on below listed working items.
1) If datetime attribute is not present, then the element's textContent must
be considered if valid.
2) pubdate needs to be supported.
Please let me know your thoughts,
Regards,
--VIneet
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-dev/attachments/20110915/9489fcb1/attachment.html>
More information about the webkit-dev
mailing list