- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 29 Aug 2008 10:37:55 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv11104 Modified Files: Overview.html Log Message: Make the parser handle <option> and <optgroup> more usefully in the 'in body' state. (whatwg r2128) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1299 retrieving revision 1.1300 diff -u -d -r1.1299 -r1.1300 --- Overview.html 29 Aug 2008 10:05:43 -0000 1.1299 +++ Overview.html 29 Aug 2008 10:37:52 -0000 1.1300 @@ -47118,20 +47118,20 @@ href="#h5">h5</a></code>, <code><a href="#h6">h6</a></code>, <code><a href="#head">head</a></code>, <code><a href="#header">header</a></code>, <code><a href="#hr">hr</a></code>, <code><a - href="#iframe">iframe</a></code>, <!-- - <code>image</code>, (commented out because this isn't an element - that can end up on the stack, so it doesn't matter) --> + href="#iframe">iframe</a></code>, <!-- <code>image</code>, + (commented out because this isn't an element that can end up on the + stack, so it doesn't matter) --> <code><a href="#img">img</a></code>, <code>input</code>, <code>isindex</code>, <code><a href="#li">li</a></code>, <code><a href="#link">link</a></code>, <code>listing</code>, <code><a href="#menu">menu</a></code>, <code><a href="#meta0">meta</a></code>, <code><a href="#nav">nav</a></code>, <code>noembed</code>, <code>noframes</code>, <code><a href="#noscript">noscript</a></code>, - <code><a href="#ol">ol</a></code>, <code>optgroup</code>, - <code>option</code>, <code><a href="#p">p</a></code>, <code><a - href="#param">param</a></code>, <code>plaintext</code>, <code><a - href="#pre">pre</a></code>, <code><a href="#script1">script</a></code>, - <code><a href="#section">section</a></code>, <code>select</code>, + <code><a href="#ol">ol</a></code>, <code><a href="#p">p</a></code>, + <code><a href="#param">param</a></code>, <code>plaintext</code>, + <code><a href="#pre">pre</a></code>, <code><a + href="#script1">script</a></code>, <code><a + href="#section">section</a></code>, <code>select</code>, <code>spacer</code>, <code><a href="#style1">style</a></code>, <code><a href="#tbody">tbody</a></code>, <code>textarea</code>, <code><a href="#tfoot0">tfoot</a></code>, <code><a @@ -51412,6 +51412,19 @@ in table</a>". Otherwise, switch the <span>insertion mode</span> to "<a href="#in-select" title="insertion mode: in select">in select</a>".</p> + <dt>A start tag whose tag name is one of: "optgroup", "option" + + <dd> + <p>If the <a href="#stack">stack of open elements</a> <a href="#have-an" + title="has an element in scope">has an <code>option</code> element in + scope</a>, then act as if an end tag with the tag name "option" had been + seen.</p> + + <p><a href="#reconstruct">Reconstruct the active formatting elements</a>, + if any.</p> + + <p><a href="#insert0">Insert an HTML element</a> for the token.</p> + <dt>A start tag whose tag name is one of: "rp", "rt" <dd> <!-- the parsing rules for ruby really don't match IE much at all,
Received on Friday, 29 August 2008 10:38:28 UTC