[html5] r5505 - [giow] (1) Parser: change how <option> is parsed to avoid useless implied tokens [...]

whatwg at whatwg.org whatwg at whatwg.org
Sat Sep 25 19:23:01 PDT 2010


Author: ianh
Date: 2010-09-25 19:22:59 -0700 (Sat, 25 Sep 2010)
New Revision: 5505

Modified:
   complete.html
   index
   source
Log:
[giow] (1) Parser: change how <option> is parsed to avoid useless implied tokens.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=10551

Modified: complete.html
===================================================================
--- complete.html	2010-09-26 00:52:05 UTC (rev 5504)
+++ complete.html	2010-09-26 02:22:59 UTC (rev 5505)
@@ -81598,10 +81598,9 @@
    <dt>A start tag whose tag name is one of: "optgroup", "option"</dt>
    <dd>
 
-    <p>If the <a href=#stack-of-open-elements>stack of open elements</a> <a href=#has-an-element-in-scope 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>If the <a href=#current-node>current node</a> is an <code><a href=#the-option-element>option</a></code>
+    element, then act as if an end tag with the tag name "option" had
+    been seen.</p>
 
     <p><a href=#reconstruct-the-active-formatting-elements>Reconstruct the active formatting elements</a>, if
     any.</p>

Modified: index
===================================================================
--- index	2010-09-26 00:52:05 UTC (rev 5504)
+++ index	2010-09-26 02:22:59 UTC (rev 5505)
@@ -77516,10 +77516,9 @@
    <dt>A start tag whose tag name is one of: "optgroup", "option"</dt>
    <dd>
 
-    <p>If the <a href=#stack-of-open-elements>stack of open elements</a> <a href=#has-an-element-in-scope 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>If the <a href=#current-node>current node</a> is an <code><a href=#the-option-element>option</a></code>
+    element, then act as if an end tag with the tag name "option" had
+    been seen.</p>
 
     <p><a href=#reconstruct-the-active-formatting-elements>Reconstruct the active formatting elements</a>, if
     any.</p>

Modified: source
===================================================================
--- source	2010-09-26 00:52:05 UTC (rev 5504)
+++ source	2010-09-26 02:22:59 UTC (rev 5505)
@@ -93165,10 +93165,9 @@
    <dt>A start tag whose tag name is one of: "optgroup", "option"</dt>
    <dd>
 
-    <p>If the <span>stack of open elements</span> <span title="has an
-    element in scope">has an <code>option</code> element in
-    scope</span>, then act as if an end tag with the tag name "option"
-    had been seen.</p>
+    <p>If the <span>current node</span> is an <code>option</code>
+    element, then act as if an end tag with the tag name "option" had
+    been seen.</p>
 
     <p><span>Reconstruct the active formatting elements</span>, if
     any.</p>




More information about the Commit-Watchers mailing list