Re: Add Subject Here
"Jukka K. Korpela" <[email protected]> Mon, 24 Nov 2014 15:43:24 +0200
| Newsgroups | gmane.org.w3c.validator |
|---|---|
| Message-ID | <[email protected]> |
2014-11-24 1:32, Stacey Plant wrote: > http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#duration-time-component That’s an HTML 5.1 draft, work in progress, which may and will change almost daily, without prior or posterior notice. Stable reference: http://www.w3.org/TR/html5/infrastructure.html#valid-duration-string (Though I cannot tell exactly which version of "HTML5" the validator checks against.) > http://jsbin.com/dejika/3/edit > > Is the new duration time component not programmed in to the validator? Yes, but it seems that your duration values do not match the syntax. For example, datetime="P 2H 30M" is not valid. You need to insert "T" and remove the spaces: datetime="PT2H30M". Yucca