[Bug 12835] FIGCAPTION should be allowed to NOT be exactly first/last child of FIGURE ("The figcaption element" spec section)

http://www.w3.org/Bugs/Public/show_bug.cgi?id=12835

Tab Atkins Jr. <jackalmage@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jackalmage@gmail.com

--- Comment #1 from Tab Atkins Jr. <jackalmage@gmail.com> 2011-06-01 01:33:43 UTC ---
Any case where you want to wrap a <figcaption> in <div>s, you can instead wrap
the *contents* of the <figcaption> in <div>s.

That is, instead of:
<figure>
  <img ...>
  <div><div><figcaption></figcaption></div></div>
</figure>

Just do this:
<figure>
  <img ...>
  <figcaption><div><div></div></div></figcaption>
</figure>

-- 
Configure bugmail: http://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 Wednesday, 1 June 2011 01:33:46 UTC