Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) Make it clear that attributes can't be duplicated on elements.
git-svn-id: http://svn.whatwg.org/webapps@2136 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 2, 2008
1 parent 1bb8c6d commit d34368f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 6 additions & 2 deletions index
Expand Up @@ -45578,8 +45578,8 @@ interface <dfn id=messagechannel>MessageChannel</dfn> {
U+002F SOLIDUS (/), and U+003D EQUALS SIGN (=) characters, the control
characters, and any characters that are not defined by Unicode. In the
HTML syntax, attribute names may be written with any mix of lower- and
uppercase letters that, when converted to all-lowercase, matches the
attribute's name; attribute names are case-insensitive.
uppercase letters that are an <a href="#ascii">ASCII case-insensitive</a>
match for the attribute's name.

<p><dfn id=attribute4 title=syntax-attribute-value>Attribute values</dfn>
are a mixture of <a href="#text2" title=syntax-text>text</a> and <a
Expand Down Expand Up @@ -45692,6 +45692,10 @@ interface <dfn id=messagechannel>MessageChannel</dfn> {
href="#space">space character</a> separating the two.</p>
</dl>

<p>There must never be two or more attributes on the same start tag whose
names are an <a href="#ascii">ASCII case-insensitive</a> match for each
other.

<h5 id=optional><span class=secno>8.1.2.4. </span>Optional tags</h5>

<p>Certain tags can be <dfn id=omitted
Expand Down
8 changes: 5 additions & 3 deletions source
Expand Up @@ -42992,9 +42992,8 @@ interface <dfn>MessageChannel</dfn> {
(&gt;), U+002F SOLIDUS (/), and U+003D EQUALS SIGN (=) characters,
the control characters, and any characters that are not defined by
Unicode. In the HTML syntax, attribute names may be written with any
mix of lower- and uppercase letters that, when converted to
all-lowercase, matches the attribute's name; attribute names are
case-insensitive.</p>
mix of lower- and uppercase letters that are an <span>ASCII
case-insensitive</span> match for the attribute's name.</p>

<p><dfn title="syntax-attribute-value">Attribute values</dfn> are a
mixture of <span title="syntax-text">text</span> and <span
Expand Down Expand Up @@ -43131,6 +43130,9 @@ interface <dfn>MessageChannel</dfn> {

</dl>

<p>There must never be two or more attributes on the same start tag
whose names are an <span>ASCII case-insensitive</span> match for
each other.</p>

<h5>Optional tags</h5>

Expand Down

0 comments on commit d34368f

Please sign in to comment.