[html5] r4569 - [e] (0) Move the rules about interactions with CSS to the Elements section. Fixi [...]

whatwg at whatwg.org whatwg at whatwg.org
Mon Jan 11 02:38:53 PST 2010


Author: ianh
Date: 2010-01-11 02:38:50 -0800 (Mon, 11 Jan 2010)
New Revision: 4569

Modified:
   complete.html
   index
   source
Log:
[e] (0) Move the rules about interactions with CSS to the Elements section.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=8579

Modified: complete.html
===================================================================
--- complete.html	2010-01-11 06:49:25 UTC (rev 4568)
+++ complete.html	2010-01-11 10:38:50 UTC (rev 4569)
@@ -600,7 +600,10 @@
      <li><a href=#tag-clouds><span class=secno>4.12.1 </span>Tag clouds</a></li>
      <li><a href=#conversations><span class=secno>4.12.2 </span>Conversations</a></li>
      <li><a href=#footnotes><span class=secno>4.12.3 </span>Footnotes</a></ol></li>
-   <li><a href=#matching-html-elements-using-selectors><span class=secno>4.13 </span>Matching HTML elements using selectors</a></ol></li>
+   <li><a href=#matching-html-elements-using-selectors><span class=secno>4.13 </span>Matching HTML elements using selectors</a>
+    <ol>
+     <li><a href=#selectors><span class=secno>4.13.1 </span>Case-sensitivity</a></li>
+     <li><a href=#pseudo-classes><span class=secno>4.13.2 </span>Pseudo-classes</a></ol></ol></li>
  <li><a href=#microdata><span class=secno>5 </span>Microdata</a>
   <ol>
    <li><a href=#introduction-1><span class=secno>5.1 </span>Introduction</a>
@@ -1173,10 +1176,7 @@
      <li><a href=#links,-forms,-and-navigation><span class=secno>13.6.1 </span>Links, forms, and navigation</a></li>
      <li><a href=#the-title-attribute-0><span class=secno>13.6.2 </span>The <code title=attr-title>title</code> attribute</a></li>
      <li><a href=#editing-hosts><span class=secno>13.6.3 </span>Editing hosts</a></ol></li>
-   <li><a href=#print-media><span class=secno>13.7 </span>Print media</a></li>
-   <li><a href=#interaction-with-css><span class=secno>13.8 </span>Interaction with CSS</a>
-    <ol>
-     <li><a href=#selectors><span class=secno>13.8.1 </span>Selectors</a></ol></ol></li>
+   <li><a href=#print-media><span class=secno>13.7 </span>Print media</a></ol></li>
  <li><a href=#obsolete><span class=secno>14 </span>Obsolete features</a>
   <ol>
    <li><a href=#obsolete-but-conforming-features><span class=secno>14.1 </span>Obsolete but conforming features</a>
@@ -44389,6 +44389,76 @@
 
   <h3 id=matching-html-elements-using-selectors><span class=secno>4.13 </span>Matching HTML elements using selectors</h3>
 
+  <h4 id=selectors><span class=secno>4.13.1 </span>Case-sensitivity</h4>
+
+  <p>Attribute and element <em>names</em> of <a href=#html-elements>HTML
+  elements</a> in <a href=#html-documents>HTML documents</a> must be treated as
+  <a href=#ascii-case-insensitive>ASCII case-insensitive</a>.</p>
+
+  <p>Classes from the <code title=attr-class><a href=#classes>class</a></code> attribute
+  of <a href=#html-elements>HTML elements</a> in documents that are in <a href=#quirks-mode>quirks
+  mode</a> must be treated as <a href=#ascii-case-insensitive>ASCII
+  case-insensitive</a>.</p>
+
+  <p>Attribute selectors on an <a href=#html-elements title="HTML elements">HTML
+  element</a> in an <a href=#html-documents title="HTML documents">HTML
+  document</a> must treat the <em>values</em> of attributes with
+  the following names as <a href=#ascii-case-insensitive>ASCII case-insensitive</a>:</p>
+
+  <!-- based on Mozilla's list, which was itself based on HTML4 -->
+  <!-- WebKit's was identical at the time of writing except as noted below -->
+  <ul class=brief><li><code title="">accept</code>
+   <li><code title="">accept-charset</code>
+   <li><code title="">align</code>
+   <li><code title="">alink</code>
+   <li><code title="">axis</code>
+   <li><code title="">bgcolor</code>
+   <li><code title="">charset</code>
+   <li><code title="">checked</code>
+   <li><code title="">clear</code>
+   <li><code title="">codetype</code>
+   <li><code title="">color</code>
+   <li><code title="">compact</code>
+   <li><code title="">declare</code>
+   <li><code title="">defer</code>
+   <li><code title="">dir</code>
+   <li><code title="">direction</code> <!-- not in webkit -->
+   <li><code title="">disabled</code>
+   <li><code title="">enctype</code>
+   <li><code title="">face</code>
+   <li><code title="">frame</code>
+   <li><code title="">hreflang</code>
+   <li><code title="">http-equiv</code>
+   <li><code title="">lang</code>
+   <li><code title="">language</code>
+   <li><code title="">link</code>
+   <li><code title="">media</code>
+   <li><code title="">method</code>
+   <li><code title="">multiple</code>
+   <li><code title="">nohref</code>
+   <li><code title="">noresize</code>
+   <li><code title="">noshade</code>
+   <li><code title="">nowrap</code>
+   <li><code title="">readonly</code>
+   <li><code title="">rel</code>
+   <li><code title="">rev</code>
+   <li><code title="">rules</code>
+   <li><code title="">scope</code>
+   <li><code title="">scrolling</code>
+   <li><code title="">selected</code>
+   <li><code title="">shape</code>
+   <li><code title="">target</code>
+   <li><code title="">text</code>
+   <li><code title="">type</code>
+   <li><code title="">valign</code>
+   <li><code title="">valuetype</code>
+   <li><code title="">vlink</code>
+  </ul><p>All other attribute values on <a href=#html-elements>HTML elements</a> must be
+  treated as <a href=#case-sensitive>case-sensitive</a>.</p>
+
+
+  <h4 id=pseudo-classes><span class=secno>4.13.2 </span>Pseudo-classes</h4>
+
   <p>There are a number of dynamic selectors that can be used with
   HTML. This section defines when these selectors match HTML
   elements.</p>
@@ -81953,81 +82023,7 @@
   result, and the discard the view.</p>
 
 
-  <h3 id=interaction-with-css><span class=secno>13.8 </span>Interaction with CSS</h3>
 
-  <!-- v2: Extensions to CSS
-        for drag and drop
-        for datagrid [v2DATAGRID]
-  -->
-
-  <h4 id=selectors><span class=secno>13.8.1 </span>Selectors</h4>
-
-  <p>Attribute and element <em>names</em> of <a href=#html-elements>HTML
-  elements</a> in <a href=#html-documents>HTML documents</a> must be treated as
-  <a href=#ascii-case-insensitive>ASCII case-insensitive</a>.</p>
-
-  <p>Classes from the <code title=attr-class><a href=#classes>class</a></code> attribute
-  of <a href=#html-elements>HTML elements</a> in documents that are in <a href=#quirks-mode>quirks
-  mode</a> must be treated as <a href=#ascii-case-insensitive>ASCII
-  case-insensitive</a>.</p>
-
-  <p>Attribute selectors on an <a href=#html-elements title="HTML elements">HTML
-  element</a> in an <a href=#html-documents title="HTML documents">HTML
-  document</a> must treat the <em>values</em> of attributes with
-  the following names as <a href=#ascii-case-insensitive>ASCII case-insensitive</a>:</p>
-
-  <!-- based on Mozilla's list, which was itself based on HTML4 -->
-  <!-- WebKit's was identical at the time of writing except as noted below -->
-  <ul class=brief><li><code title="">accept</code>
-   <li><code title="">accept-charset</code>
-   <li><code title="">align</code>
-   <li><code title="">alink</code>
-   <li><code title="">axis</code>
-   <li><code title="">bgcolor</code>
-   <li><code title="">charset</code>
-   <li><code title="">checked</code>
-   <li><code title="">clear</code>
-   <li><code title="">codetype</code>
-   <li><code title="">color</code>
-   <li><code title="">compact</code>
-   <li><code title="">declare</code>
-   <li><code title="">defer</code>
-   <li><code title="">dir</code>
-   <li><code title="">direction</code> <!-- not in webkit -->
-   <li><code title="">disabled</code>
-   <li><code title="">enctype</code>
-   <li><code title="">face</code>
-   <li><code title="">frame</code>
-   <li><code title="">hreflang</code>
-   <li><code title="">http-equiv</code>
-   <li><code title="">lang</code>
-   <li><code title="">language</code>
-   <li><code title="">link</code>
-   <li><code title="">media</code>
-   <li><code title="">method</code>
-   <li><code title="">multiple</code>
-   <li><code title="">nohref</code>
-   <li><code title="">noresize</code>
-   <li><code title="">noshade</code>
-   <li><code title="">nowrap</code>
-   <li><code title="">readonly</code>
-   <li><code title="">rel</code>
-   <li><code title="">rev</code>
-   <li><code title="">rules</code>
-   <li><code title="">scope</code>
-   <li><code title="">scrolling</code>
-   <li><code title="">selected</code>
-   <li><code title="">shape</code>
-   <li><code title="">target</code>
-   <li><code title="">text</code>
-   <li><code title="">type</code>
-   <li><code title="">valign</code>
-   <li><code title="">valuetype</code>
-   <li><code title="">vlink</code>
-  </ul><p>All other <a href=#html-elements>HTML elements</a> and all attribute names and
-  values on <a href=#html-elements>HTML elements</a> must be treated as
-  <a href=#case-sensitive>case-sensitive</a>.</p>
-
   </div>
 
 

Modified: index
===================================================================
--- index	2010-01-11 06:49:25 UTC (rev 4568)
+++ index	2010-01-11 10:38:50 UTC (rev 4569)
@@ -609,7 +609,10 @@
      <li><a href=#tag-clouds><span class=secno>4.12.1 </span>Tag clouds</a></li>
      <li><a href=#conversations><span class=secno>4.12.2 </span>Conversations</a></li>
      <li><a href=#footnotes><span class=secno>4.12.3 </span>Footnotes</a></ol></li>
-   <li><a href=#matching-html-elements-using-selectors><span class=secno>4.13 </span>Matching HTML elements using selectors</a></ol></li>
+   <li><a href=#matching-html-elements-using-selectors><span class=secno>4.13 </span>Matching HTML elements using selectors</a>
+    <ol>
+     <li><a href=#selectors><span class=secno>4.13.1 </span>Case-sensitivity</a></li>
+     <li><a href=#pseudo-classes><span class=secno>4.13.2 </span>Pseudo-classes</a></ol></ol></li>
  <li><a href=#microdata><span class=secno>5 </span>Microdata</a>
   <ol>
    <li><a href=#introduction-1><span class=secno>5.1 </span>Introduction</a>
@@ -1053,10 +1056,7 @@
      <li><a href=#links,-forms,-and-navigation><span class=secno>11.6.1 </span>Links, forms, and navigation</a></li>
      <li><a href=#the-title-attribute-0><span class=secno>11.6.2 </span>The <code title=attr-title>title</code> attribute</a></li>
      <li><a href=#editing-hosts><span class=secno>11.6.3 </span>Editing hosts</a></ol></li>
-   <li><a href=#print-media><span class=secno>11.7 </span>Print media</a></li>
-   <li><a href=#interaction-with-css><span class=secno>11.8 </span>Interaction with CSS</a>
-    <ol>
-     <li><a href=#selectors><span class=secno>11.8.1 </span>Selectors</a></ol></ol></li>
+   <li><a href=#print-media><span class=secno>11.7 </span>Print media</a></ol></li>
  <li><a href=#obsolete><span class=secno>12 </span>Obsolete features</a>
   <ol>
    <li><a href=#obsolete-but-conforming-features><span class=secno>12.1 </span>Obsolete but conforming features</a>
@@ -44254,6 +44254,76 @@
 
   <h3 id=matching-html-elements-using-selectors><span class=secno>4.13 </span>Matching HTML elements using selectors</h3>
 
+  <h4 id=selectors><span class=secno>4.13.1 </span>Case-sensitivity</h4>
+
+  <p>Attribute and element <em>names</em> of <a href=#html-elements>HTML
+  elements</a> in <a href=#html-documents>HTML documents</a> must be treated as
+  <a href=#ascii-case-insensitive>ASCII case-insensitive</a>.</p>
+
+  <p>Classes from the <code title=attr-class><a href=#classes>class</a></code> attribute
+  of <a href=#html-elements>HTML elements</a> in documents that are in <a href=#quirks-mode>quirks
+  mode</a> must be treated as <a href=#ascii-case-insensitive>ASCII
+  case-insensitive</a>.</p>
+
+  <p>Attribute selectors on an <a href=#html-elements title="HTML elements">HTML
+  element</a> in an <a href=#html-documents title="HTML documents">HTML
+  document</a> must treat the <em>values</em> of attributes with
+  the following names as <a href=#ascii-case-insensitive>ASCII case-insensitive</a>:</p>
+
+  <!-- based on Mozilla's list, which was itself based on HTML4 -->
+  <!-- WebKit's was identical at the time of writing except as noted below -->
+  <ul class=brief><li><code title="">accept</code>
+   <li><code title="">accept-charset</code>
+   <li><code title="">align</code>
+   <li><code title="">alink</code>
+   <li><code title="">axis</code>
+   <li><code title="">bgcolor</code>
+   <li><code title="">charset</code>
+   <li><code title="">checked</code>
+   <li><code title="">clear</code>
+   <li><code title="">codetype</code>
+   <li><code title="">color</code>
+   <li><code title="">compact</code>
+   <li><code title="">declare</code>
+   <li><code title="">defer</code>
+   <li><code title="">dir</code>
+   <li><code title="">direction</code> <!-- not in webkit -->
+   <li><code title="">disabled</code>
+   <li><code title="">enctype</code>
+   <li><code title="">face</code>
+   <li><code title="">frame</code>
+   <li><code title="">hreflang</code>
+   <li><code title="">http-equiv</code>
+   <li><code title="">lang</code>
+   <li><code title="">language</code>
+   <li><code title="">link</code>
+   <li><code title="">media</code>
+   <li><code title="">method</code>
+   <li><code title="">multiple</code>
+   <li><code title="">nohref</code>
+   <li><code title="">noresize</code>
+   <li><code title="">noshade</code>
+   <li><code title="">nowrap</code>
+   <li><code title="">readonly</code>
+   <li><code title="">rel</code>
+   <li><code title="">rev</code>
+   <li><code title="">rules</code>
+   <li><code title="">scope</code>
+   <li><code title="">scrolling</code>
+   <li><code title="">selected</code>
+   <li><code title="">shape</code>
+   <li><code title="">target</code>
+   <li><code title="">text</code>
+   <li><code title="">type</code>
+   <li><code title="">valign</code>
+   <li><code title="">valuetype</code>
+   <li><code title="">vlink</code>
+  </ul><p>All other attribute values on <a href=#html-elements>HTML elements</a> must be
+  treated as <a href=#case-sensitive>case-sensitive</a>.</p>
+
+
+  <h4 id=pseudo-classes><span class=secno>4.13.2 </span>Pseudo-classes</h4>
+
   <p>There are a number of dynamic selectors that can be used with
   HTML. This section defines when these selectors match HTML
   elements.</p>
@@ -76272,81 +76342,7 @@
   result, and the discard the view.</p>
 
 
-  <h3 id=interaction-with-css><span class=secno>11.8 </span>Interaction with CSS</h3>
 
-  <!-- v2: Extensions to CSS
-        for drag and drop
-        for datagrid [v2DATAGRID]
-  -->
-
-  <h4 id=selectors><span class=secno>11.8.1 </span>Selectors</h4>
-
-  <p>Attribute and element <em>names</em> of <a href=#html-elements>HTML
-  elements</a> in <a href=#html-documents>HTML documents</a> must be treated as
-  <a href=#ascii-case-insensitive>ASCII case-insensitive</a>.</p>
-
-  <p>Classes from the <code title=attr-class><a href=#classes>class</a></code> attribute
-  of <a href=#html-elements>HTML elements</a> in documents that are in <a href=#quirks-mode>quirks
-  mode</a> must be treated as <a href=#ascii-case-insensitive>ASCII
-  case-insensitive</a>.</p>
-
-  <p>Attribute selectors on an <a href=#html-elements title="HTML elements">HTML
-  element</a> in an <a href=#html-documents title="HTML documents">HTML
-  document</a> must treat the <em>values</em> of attributes with
-  the following names as <a href=#ascii-case-insensitive>ASCII case-insensitive</a>:</p>
-
-  <!-- based on Mozilla's list, which was itself based on HTML4 -->
-  <!-- WebKit's was identical at the time of writing except as noted below -->
-  <ul class=brief><li><code title="">accept</code>
-   <li><code title="">accept-charset</code>
-   <li><code title="">align</code>
-   <li><code title="">alink</code>
-   <li><code title="">axis</code>
-   <li><code title="">bgcolor</code>
-   <li><code title="">charset</code>
-   <li><code title="">checked</code>
-   <li><code title="">clear</code>
-   <li><code title="">codetype</code>
-   <li><code title="">color</code>
-   <li><code title="">compact</code>
-   <li><code title="">declare</code>
-   <li><code title="">defer</code>
-   <li><code title="">dir</code>
-   <li><code title="">direction</code> <!-- not in webkit -->
-   <li><code title="">disabled</code>
-   <li><code title="">enctype</code>
-   <li><code title="">face</code>
-   <li><code title="">frame</code>
-   <li><code title="">hreflang</code>
-   <li><code title="">http-equiv</code>
-   <li><code title="">lang</code>
-   <li><code title="">language</code>
-   <li><code title="">link</code>
-   <li><code title="">media</code>
-   <li><code title="">method</code>
-   <li><code title="">multiple</code>
-   <li><code title="">nohref</code>
-   <li><code title="">noresize</code>
-   <li><code title="">noshade</code>
-   <li><code title="">nowrap</code>
-   <li><code title="">readonly</code>
-   <li><code title="">rel</code>
-   <li><code title="">rev</code>
-   <li><code title="">rules</code>
-   <li><code title="">scope</code>
-   <li><code title="">scrolling</code>
-   <li><code title="">selected</code>
-   <li><code title="">shape</code>
-   <li><code title="">target</code>
-   <li><code title="">text</code>
-   <li><code title="">type</code>
-   <li><code title="">valign</code>
-   <li><code title="">valuetype</code>
-   <li><code title="">vlink</code>
-  </ul><p>All other <a href=#html-elements>HTML elements</a> and all attribute names and
-  values on <a href=#html-elements>HTML elements</a> must be treated as
-  <a href=#case-sensitive>case-sensitive</a>.</p>
-
   </div>
 
 

Modified: source
===================================================================
--- source	2010-01-11 06:49:25 UTC (rev 4568)
+++ source	2010-01-11 10:38:50 UTC (rev 4569)
@@ -49321,6 +49321,79 @@
 
   <h3>Matching HTML elements using selectors</h3>
 
+  <h4 id="selectors">Case-sensitivity</h4>
+
+  <p>Attribute and element <em>names</em> of <span>HTML
+  elements</span> in <span>HTML documents</span> must be treated as
+  <span>ASCII case-insensitive</span>.</p>
+
+  <p>Classes from the <code title="attr-class">class</code> attribute
+  of <span>HTML elements</span> in documents that are in <span>quirks
+  mode</span> must be treated as <span>ASCII
+  case-insensitive</span>.</p>
+
+  <p>Attribute selectors on an <span title="HTML elements">HTML
+  element</span> in an <span title="HTML documents">HTML
+  document</span> must treat the <em>values</em> of attributes with
+  the following names as <span>ASCII case-insensitive</span>:</p>
+
+  <!-- based on Mozilla's list, which was itself based on HTML4 -->
+  <!-- WebKit's was identical at the time of writing except as noted below -->
+  <ul class="brief">
+   <li><code title="">accept</code>
+   <li><code title="">accept-charset</code>
+   <li><code title="">align</code>
+   <li><code title="">alink</code>
+   <li><code title="">axis</code>
+   <li><code title="">bgcolor</code>
+   <li><code title="">charset</code>
+   <li><code title="">checked</code>
+   <li><code title="">clear</code>
+   <li><code title="">codetype</code>
+   <li><code title="">color</code>
+   <li><code title="">compact</code>
+   <li><code title="">declare</code>
+   <li><code title="">defer</code>
+   <li><code title="">dir</code>
+   <li><code title="">direction</code> <!-- not in webkit -->
+   <li><code title="">disabled</code>
+   <li><code title="">enctype</code>
+   <li><code title="">face</code>
+   <li><code title="">frame</code>
+   <li><code title="">hreflang</code>
+   <li><code title="">http-equiv</code>
+   <li><code title="">lang</code>
+   <li><code title="">language</code>
+   <li><code title="">link</code>
+   <li><code title="">media</code>
+   <li><code title="">method</code>
+   <li><code title="">multiple</code>
+   <li><code title="">nohref</code>
+   <li><code title="">noresize</code>
+   <li><code title="">noshade</code>
+   <li><code title="">nowrap</code>
+   <li><code title="">readonly</code>
+   <li><code title="">rel</code>
+   <li><code title="">rev</code>
+   <li><code title="">rules</code>
+   <li><code title="">scope</code>
+   <li><code title="">scrolling</code>
+   <li><code title="">selected</code>
+   <li><code title="">shape</code>
+   <li><code title="">target</code>
+   <li><code title="">text</code>
+   <li><code title="">type</code>
+   <li><code title="">valign</code>
+   <li><code title="">valuetype</code>
+   <li><code title="">vlink</code>
+  </ul>
+
+  <p>All other attribute values on <span>HTML elements</span> must be
+  treated as <span>case-sensitive</span>.</p>
+
+
+  <h4>Pseudo-classes</h4>
+
   <p>There are a number of dynamic selectors that can be used with
   HTML. This section defines when these selectors match HTML
   elements.</p>
@@ -91017,84 +91090,7 @@
   result, and the discard the view.</p>
 
 
-  <h3>Interaction with CSS</h3>
 
-  <!-- v2: Extensions to CSS
-        for drag and drop
-        for datagrid [v2DATAGRID]
-  -->
-
-  <h4>Selectors</h4>
-
-  <p>Attribute and element <em>names</em> of <span>HTML
-  elements</span> in <span>HTML documents</span> must be treated as
-  <span>ASCII case-insensitive</span>.</p>
-
-  <p>Classes from the <code title="attr-class">class</code> attribute
-  of <span>HTML elements</span> in documents that are in <span>quirks
-  mode</span> must be treated as <span>ASCII
-  case-insensitive</span>.</p>
-
-  <p>Attribute selectors on an <span title="HTML elements">HTML
-  element</span> in an <span title="HTML documents">HTML
-  document</span> must treat the <em>values</em> of attributes with
-  the following names as <span>ASCII case-insensitive</span>:</p>
-
-  <!-- based on Mozilla's list, which was itself based on HTML4 -->
-  <!-- WebKit's was identical at the time of writing except as noted below -->
-  <ul class="brief">
-   <li><code title="">accept</code>
-   <li><code title="">accept-charset</code>
-   <li><code title="">align</code>
-   <li><code title="">alink</code>
-   <li><code title="">axis</code>
-   <li><code title="">bgcolor</code>
-   <li><code title="">charset</code>
-   <li><code title="">checked</code>
-   <li><code title="">clear</code>
-   <li><code title="">codetype</code>
-   <li><code title="">color</code>
-   <li><code title="">compact</code>
-   <li><code title="">declare</code>
-   <li><code title="">defer</code>
-   <li><code title="">dir</code>
-   <li><code title="">direction</code> <!-- not in webkit -->
-   <li><code title="">disabled</code>
-   <li><code title="">enctype</code>
-   <li><code title="">face</code>
-   <li><code title="">frame</code>
-   <li><code title="">hreflang</code>
-   <li><code title="">http-equiv</code>
-   <li><code title="">lang</code>
-   <li><code title="">language</code>
-   <li><code title="">link</code>
-   <li><code title="">media</code>
-   <li><code title="">method</code>
-   <li><code title="">multiple</code>
-   <li><code title="">nohref</code>
-   <li><code title="">noresize</code>
-   <li><code title="">noshade</code>
-   <li><code title="">nowrap</code>
-   <li><code title="">readonly</code>
-   <li><code title="">rel</code>
-   <li><code title="">rev</code>
-   <li><code title="">rules</code>
-   <li><code title="">scope</code>
-   <li><code title="">scrolling</code>
-   <li><code title="">selected</code>
-   <li><code title="">shape</code>
-   <li><code title="">target</code>
-   <li><code title="">text</code>
-   <li><code title="">type</code>
-   <li><code title="">valign</code>
-   <li><code title="">valuetype</code>
-   <li><code title="">vlink</code>
-  </ul>
-
-  <p>All other <span>HTML elements</span> and all attribute names and
-  values on <span>HTML elements</span> must be treated as
-  <span>case-sensitive</span>.</p>
-
   </div>
 
 




More information about the Commit-Watchers mailing list