Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) Yet another example of how context-sensitive markup leads to …
…brittle copy-and-paste behaviour. Context-sensitive markup like prefixes: just say no!

git-svn-id: http://svn.whatwg.org/webapps@3604 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 13, 2009
1 parent 6f7713f commit a908301
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions index
Expand Up @@ -65194,9 +65194,9 @@ document.body.appendChild(text);

<p><a href=#parse-error>Parse error</a>.</p>

<p>If the <a href=#stack-of-open-elements>stack of open elements</a> does not <a href=#has-an-element-in-table-scope title="has an element in table scope">have an element in table
scope</a> with the same tag name as the token, ignore the
token. (<a href=#fragment-case>fragment case</a>)</p>
<p>If the <a href=#stack-of-open-elements>stack of open elements</a> does not <a href=#has-an-element-in-table-scope title="has an element in table scope">have a <code>select</code>
element in table scope</a>, ignore the token. (<a href=#fragment-case>fragment
case</a>)</p>

<p>Otherwise, act as if an end tag with the tag name "select" had
been seen, and reprocess the token.</p>
Expand Down
6 changes: 3 additions & 3 deletions source
Expand Up @@ -79794,9 +79794,9 @@ document.body.appendChild(text);
<p><span>Parse error</span>.</p>

<p>If the <span>stack of open elements</span> does not <span
title="has an element in table scope">have an element in table
scope</span> with the same tag name as the token, ignore the
token. (<span>fragment case</span>)</p>
title="has an element in table scope">have a <code>select</code>
element in table scope</span>, ignore the token. (<span>fragment
case</span>)</p>

<p>Otherwise, act as if an end tag with the tag name "select" had
been seen, and reprocess the token.</p>
Expand Down

0 comments on commit a908301

Please sign in to comment.