[html5] r918 - /
whatwg at whatwg.org
whatwg at whatwg.org
Mon Jun 18 18:09:52 PDT 2007
Author: ianh
Date: 2007-06-18 18:09:51 -0700 (Mon, 18 Jun 2007)
New Revision: 918
Modified:
index
source
Log:
[ct] (2) Handling of </html>, </head>, </body> end tags in the <html> and <head> insertion modes
Modified: index
===================================================================
--- index 2007-06-19 00:57:06 UTC (rev 917)
+++ index 2007-06-19 01:09:51 UTC (rev 918)
@@ -35559,7 +35559,7 @@
phase</a> and reprocess the current token.</p>
<p class=big-issue>Should probably make end tags be ignored, so that
- "</head><!-- --><html>" puts the comment befor the root node
+ "</head><!-- --><html>" puts the comment before the root node
(or should we?)</p>
</dl>
@@ -36173,7 +36173,7 @@
title="insertion mode: in head">in head</a>" <a
href="#insertion0">insertion mode</a>.</p>
- <dt>An end tag with the tag name "html"
+ <dt>An end tag whose tag name is one of: "head", "body", "html"
<dd>
<p>Act as if a start tag token with the tag name "head" and no
@@ -36184,6 +36184,8 @@
<dd>
<p><a href="#parse">Parse error</a>. Ignore the token.</p>
+ <p class=big-issue>Do we really want to ignore end tags here?</p>
+
<dt>A character token that is <em>not</em> one of U+0009 CHARACTER
TABULATION, U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C
FORM FEED (FF), U+000D CARRIAGE RETURN (CR), or U+0020 SPACE
@@ -36459,8 +36461,10 @@
<p>Change the <a href="#insertion0">insertion mode</a> to "<a
href="#after3" title="insertion mode: after head">after head</a>".</p>
- <dt>An end tag with the tag name "html"
+ <p class=big-issue>innerHTML on HEAD elements?</p>
+ <dt>An end tag whose tag name is one of: "body", "html"
+
<dd>
<p>Act as described in the "anything else" entry below.</p>
@@ -36488,6 +36492,8 @@
href="https://bugzilla.mozilla.org/attachment.cgi?id=180157&action=view">some
elements</a> don't trigger the "in body" mode straight away, but
instead get put into the head. Do we want to copy that?</p>
+
+ <p class=big-issue>innerHTML on HEAD elements?</p>
</dl>
<dt>If the <a href="#insertion0">insertion mode</a> is "<dfn id=after3
Modified: source
===================================================================
--- source 2007-06-19 00:57:06 UTC (rev 917)
+++ source 2007-06-19 01:09:51 UTC (rev 918)
@@ -32800,7 +32800,7 @@
phase</span> and reprocess the current token.</p>
<p class="big-issue">Should probably make end tags be ignored, so
- that "</head><!-- --><html>" puts the comment befor the
+ that "</head><!-- --><html>" puts the comment before the
root node (or should we?)</p>
</dd>
@@ -33392,7 +33392,7 @@
</dd>
- <dt>An end tag with the tag name "html"</dt>
+ <dt>An end tag whose tag name is one of: "head", "body", "html"</dt>
<dd>
<p>Act as if a start tag token with the tag name "head" and no
@@ -33403,7 +33403,11 @@
<dt>Any other end tag</dt>
<dd>
+
<p><span>Parse error</span>. Ignore the token.</p>
+
+ <p class="big-issue">Do we really want to ignore end tags here?</p>
+
</dd>
<dt>A character token that is <em>not</em> one of U+0009 CHARACTER
@@ -33688,9 +33692,12 @@
<p>Change the <span>insertion mode</span> to "<span
title="insertion mode: after head">after head</span>".</p>
+ <p class="big-issue">innerHTML on HEAD elements?</p>
+
</dd>
- <dt>An end tag with the tag name "html"</dt>
+
+ <dt>An end tag whose tag name is one of: "body", "html"</dt>
<dd>
<p>Act as described in the "anything else" entry below.</p>
@@ -33721,6 +33728,8 @@
but instead get put into the head. Do we want to copy
that?</p>
+ <p class="big-issue">innerHTML on HEAD elements?</p>
+
</dd>
</dl>
More information about the Commit-Watchers
mailing list