Skip to content

Commit a1a65c5

Browse files
committed
Add all the form elements to the list of things that are always replaced elements.
1 parent 74cf712 commit a1a65c5

2 files changed

Lines changed: 12 additions & 6 deletions

File tree

css3-flexbox/Overview.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030

3131
<h1 id=head-box-flexible>CSS Flexible Box Layout Module</h1>
3232

33-
<h2 class="no-num no-toc" id=w3c-working>Editor's Draft, 15 May 2012</h2>
33+
<h2 class="no-num no-toc" id=w3c-working>Editor's Draft, 16 May 2012</h2>
3434

3535
<dl>
3636
<dt>This version:
37-
<!--<dd><a href="http://www.w3.org/TR/2012/ED-css3-flexbox-20120515/">http://www.w3.org/TR/2012/WD-css3-flexbox-20120515/</a>-->
37+
<!--<dd><a href="http://www.w3.org/TR/2012/ED-css3-flexbox-20120516/">http://www.w3.org/TR/2012/WD-css3-flexbox-20120516/</a>-->
3838

3939

4040
<dd><a
@@ -572,10 +572,12 @@ <h2 id=flex-items><span class=secno>4. </span> Flexbox Items</h2>
572572
<li> An HTML <code>&lt;img></code>, <code>&lt;canvas></code>,
573573
<code>&lt;svg></code>, <code>&lt;math></code>, <code>&lt;audio></code>,
574574
<code>&lt;video></code>, <code>&lt;iframe></code>,
575-
<code>&lt;object></code>, or <code>&lt;embed></code> element. <span
575+
<code>&lt;object></code>, <code>&lt;embed></code>,
576+
<code>&lt;input></code>, <code>&lt;button></code>,
577+
<code>&lt;select></code>, or <code>&lt;textarea></code> element. <span
576578
class=note>Note: In other words, any element that is "intended to be" a
577579
replaced element, even if it becomes non-replaced (like an
578-
<code>&lt;img></code> that doesn't load as is replaced by its alt
580+
<code>&lt;img></code> that doesn't load and is replaced by its alt
579581
text.)</span>
580582

581583
<li> An anonymous block element wrapped around a contiguous run of

css3-flexbox/Overview.src.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,12 @@ <h2 id='flex-items'>
280280
<code>&lt;video></code>,
281281
<code>&lt;iframe></code>,
282282
<code>&lt;object></code>,
283-
or <code>&lt;embed></code> element.
284-
<span class='note'>Note: In other words, any element that is "intended to be" a replaced element, even if it becomes non-replaced (like an <code>&lt;img></code> that doesn't load as is replaced by its alt text.)</span>
283+
<code>&lt;embed></code>,
284+
<code>&lt;input></code>,
285+
<code>&lt;button></code>,
286+
<code>&lt;select></code>,
287+
or <code>&lt;textarea></code> element.
288+
<span class='note'>Note: In other words, any element that is "intended to be" a replaced element, even if it becomes non-replaced (like an <code>&lt;img></code> that doesn't load and is replaced by its alt text.)</span>
285289

286290
<li>
287291
An anonymous block element wrapped around a contiguous run of non-replaced inline child elements.

0 commit comments

Comments
 (0)