- From: <bugzilla@jessica.w3.org>
- Date: Thu, 22 Dec 2011 02:03:14 +0000
- To: public-html-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=15304
Tab Atkins Jr. <jackalmage@gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jackalmage@gmail.com
--- Comment #1 from Tab Atkins Jr. <jackalmage@gmail.com> 2011-12-22 02:03:13 UTC ---
Unfortunately, this cannot work. <meta> elements are already void elements,
which means they don't have an end tag. In other words, "<meta>" is just fine;
you don't need the closing slash like XML requires. Thus, if you see
"<meta><meta/></meta>", it's already valid code and represents two <meta>
elements and a third unknown element with a tagname of "/meta".
The correct solution to this is the two possibilities already suggested -
either use some <div>s in the body with no content, or use @itemref to
establish the scope/prop relationship manually.
--
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Thursday, 22 December 2011 02:03:15 UTC