- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 06 Feb 2009 02:15:57 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv7071 Modified Files: Overview.html Log Message: Filling in the rendering section: <fieldset>. (whatwg r2764) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1933 retrieving revision 1.1934 diff -u -d -r1.1933 -r1.1934 --- Overview.html 6 Feb 2009 01:43:08 -0000 1.1933 +++ Overview.html 6 Feb 2009 02:15:55 -0000 1.1934 @@ -46947,7 +46947,33 @@ to be parsed using the <a href=#rules-for-parsing-a-legacy-color-value>rules for parsing a legacy color value</a>, and the user agent is expected to treat the attribute as a <a href=#presentational-hints title="presentational hints">presentational hint</a> - setting the element's 'color' property to the resulting color.<h4 id=the-fieldset-element-0><span class=secno>10.2.9 </span>The <code><a href=#the-fieldset-element>fieldset</a></code> element</h4><p class=XXX>...</p><!-- XXX <legend align="left|right|center|bottom|top"> --><h3 id=replaced-elements><span class=secno>10.3 </span>Replaced elements</h3><h4 id=embedded-content-1><span class=secno>10.3.1 </span>Embedded content</h4><p>The <code><a href=#the-applet-element>applet</a></code>, <code><a href=#the-canvas-element>canvas</a></code>, <code><a href=#the-embed-element>embed</a></code>, + setting the element's 'color' property to the resulting color.<h4 id=the-fieldset-element-0><span class=secno>10.2.9 </span>The <code><a href=#the-fieldset-element>fieldset</a></code> element</h4><pre class=css>@namespace url(http://www.w3.org/1999/xhtml); + +fieldset { + margin-left: 2px; margin-right: 2px; + border: groove 2px ThreeDFace; + padding: 0.35em 0.625em 0.75em; +}</pre><p>The first <code><a href=#the-legend-element>legend</a></code> element child of a + <code><a href=#the-fieldset-element>fieldset</a></code> element, if any, is expected to be rendered + over the top border edge of the <code><a href=#the-fieldset-element>fieldset</a></code> element. If + the <code><a href=#the-legend-element>legend</a></code> element in question has an <code title=attr-legend-align>align</code> attribute, and its value is + an <span>ASCII case insensitive</span> match for one of the strings + in the first column of the following table, then the + <code><a href=#the-legend-element>legend</a></code> is expected to be rendered horizontally aligned + over the border edge in the position given in the corresponding cell + on the same row in the second column. If the attribute is absent or + has a value that doesn't match any of the cases in the table, then + the position is expected to be on the right if the 'direction' + property on this element has a computed value of 'rtl', and on the + left otherwise.<table><thead><tr><th>Attribute value + <th>Alignment position + <tbody><tr><td><code title="">left</code> + <td>On the left + <tr><td><code title="">right</code> + <td>On the right + <tr><td><code title="">center</code> + <td>In the middle + </table><h3 id=replaced-elements><span class=secno>10.3 </span>Replaced elements</h3><h4 id=embedded-content-1><span class=secno>10.3.1 </span>Embedded content</h4><p>The <code><a href=#the-applet-element>applet</a></code>, <code><a href=#the-canvas-element>canvas</a></code>, <code><a href=#the-embed-element>embed</a></code>, <code><a href=#the-iframe-element>iframe</a></code>, and <code><a href=#video>video</a></code> elements are expected to be treated as replaced elements.<p>An <code><a href=#the-object-element>object</a></code> element that <a href=#represents>represents</a> an image, plugin, or <a href=#nested-browsing-context>nested browsing context</a> is expected
Received on Friday, 6 February 2009 02:16:12 UTC