Skip to content

Commit

Permalink
[cgiowt] (0) Change how <input type=hidden> affects the frameset flag.
Browse files Browse the repository at this point in the history
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=11156

git-svn-id: http://svn.whatwg.org/webapps@5730 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Dec 31, 2010
1 parent 734e60d commit f3fb161
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 3 deletions.
22 changes: 21 additions & 1 deletion complete.html
Expand Up @@ -81163,7 +81163,7 @@ <h5 id=the-before-head-insertion-mode><span class=secno>12.2.5.6 </span>The "<df
</dd>

<dt>A start tag whose tag name is one of: "area", "br", "embed",
"img", "input", "keygen", "wbr"</dt>
"img", "keygen", "wbr"</dt>
<dd>

<p><a href=#reconstruct-the-active-formatting-elements>Reconstruct the active formatting elements</a>, if
Expand All @@ -81181,6 +81181,26 @@ <h5 id=the-before-head-insertion-mode><span class=secno>12.2.5.6 </span>The "<df

</dd>

<dt>A start tag whose tag name is "input"</dt>
<dd>

<p><a href=#reconstruct-the-active-formatting-elements>Reconstruct the active formatting elements</a>, if
any.</p>

<p><a href=#insert-an-html-element>Insert an HTML element</a> for the token. Immediately
pop the <a href=#current-node>current node</a> off the <a href=#stack-of-open-elements>stack of open
elements</a>.</p>

<p><a href=#acknowledge-self-closing-flag title="acknowledge self-closing flag">Acknowledge the
token's <i>self-closing flag</i></a>, if it is set.</p>

<p>If the token does not have an attribute with the name "type",
or if it does, but that attribute's value is not an <a href=#ascii-case-insensitive>ASCII
case-insensitive</a> match for the string "<code title="">hidden</code>", then: set the <a href=#frameset-ok-flag>frameset-ok
flag</a> to "not ok".</p>

</dd>

<dt>A start tag whose tag name is one of: "param", "source", "track"</dt>
<dd>

Expand Down
22 changes: 21 additions & 1 deletion index
Expand Up @@ -77068,7 +77068,7 @@ document.body.appendChild(text);
</dd>

<dt>A start tag whose tag name is one of: "area", "br", "embed",
"img", "input", "keygen", "wbr"</dt>
"img", "keygen", "wbr"</dt>
<dd>

<p><a href=#reconstruct-the-active-formatting-elements>Reconstruct the active formatting elements</a>, if
Expand All @@ -77086,6 +77086,26 @@ document.body.appendChild(text);

</dd>

<dt>A start tag whose tag name is "input"</dt>
<dd>

<p><a href=#reconstruct-the-active-formatting-elements>Reconstruct the active formatting elements</a>, if
any.</p>

<p><a href=#insert-an-html-element>Insert an HTML element</a> for the token. Immediately
pop the <a href=#current-node>current node</a> off the <a href=#stack-of-open-elements>stack of open
elements</a>.</p>

<p><a href=#acknowledge-self-closing-flag title="acknowledge self-closing flag">Acknowledge the
token's <i>self-closing flag</i></a>, if it is set.</p>

<p>If the token does not have an attribute with the name "type",
or if it does, but that attribute's value is not an <a href=#ascii-case-insensitive>ASCII
case-insensitive</a> match for the string "<code title="">hidden</code>", then: set the <a href=#frameset-ok-flag>frameset-ok
flag</a> to "not ok".</p>

</dd>

<dt>A start tag whose tag name is one of: "param", "source", "track"</dt>
<dd>

Expand Down
23 changes: 22 additions & 1 deletion source
Expand Up @@ -93094,7 +93094,7 @@ document.body.appendChild(text);
</dd>

<dt>A start tag whose tag name is one of: "area", "br", "embed",
"img", "input", "keygen", "wbr"</dt>
"img", "keygen", "wbr"</dt>
<dd>

<p><span>Reconstruct the active formatting elements</span>, if
Expand All @@ -93112,6 +93112,27 @@ document.body.appendChild(text);

</dd>

<dt>A start tag whose tag name is "input"</dt>
<dd>

<p><span>Reconstruct the active formatting elements</span>, if
any.</p>

<p><span>Insert an HTML element</span> for the token. Immediately
pop the <span>current node</span> off the <span>stack of open
elements</span>.</p>

<p><span title="acknowledge self-closing flag">Acknowledge the
token's <i>self-closing flag</i></span>, if it is set.</p>

<p>If the token does not have an attribute with the name "type",
or if it does, but that attribute's value is not an <span>ASCII
case-insensitive</span> match for the string "<code
title="">hidden</code>", then: set the <span>frameset-ok
flag</span> to "not ok".</p>

</dd>

<dt>A start tag whose tag name is one of: "param", "source", "track"</dt>
<dd>

Expand Down

0 comments on commit f3fb161

Please sign in to comment.