csswg/cssom Overview.html,1.147,1.148 Overview.src.html,1.150,1.151 cssom-source,1.3,1.4

Update of /sources/public/csswg/cssom
In directory hutz:/tmp/cvs-serv26536

Modified Files:
	Overview.html Overview.src.html cssom-source 
Log Message:
update terminology

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/cssom/Overview.html,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -d -r1.147 -r1.148
--- Overview.html	2 Jul 2011 11:24:22 -0000	1.147
+++ Overview.html	2 Jul 2011 11:58:40 -0000	1.148
@@ -204,20 +204,27 @@
 <p>Unless otherwise stated, string comparisons are done in a <span>case-sensitive</span> manner.
 
 
-  <h2 id="terminology"><span class="secno">3 </span>Terminology</h2>
+<h2 id="terminology"><span class="secno">3 </span>Terminology</h2>
 
-  <p class="XXX">
-   <dfn id="content-type-metadata">Content-Type metadata</dfn>,
-   <dfn id="supported-styling-language">supported styling language</dfn>,
-   <dfn id="xml-stylesheet-processing-instruction"><code>xml-stylesheet</code> processing instruction</dfn>,
-  </p>
+<p>Terminology used in this specification is from
+<cite>DOM Core</cite>,
+<cite>HTML</cite>,
+<cite>Associating Style Sheets with XML documents</cite>
+and
+<span>XML</span>
+<a href="#refsDOMCORE">[DOMCORE]</a>
+<a href="#refsHTML">[HTML]</a>
+<a href="#refsXMLSS">[XMLSS]</a>
+<a href="#refsXML">[XML]</a>
 
-  <p>When this specification talks about object <code><var title="">A</var></code>
-  where <code><var title="">A</var></code> is actually an interface, it generally means
-  an object implementing interface <code><var title="">A</var></code>.</p>
+<p class="XXX"><dfn id="supported-styling-language">supported styling language</dfn>
 
-  <p>The term <dfn id="whitespace">whitespace</dfn> is used as defined in
-  CSS. <!--XXX <a href="#ref-css">[CSS]</a>--></p>
+<p>When this specification talks about object
+<code title=""><var>A</var></code> where <code title=""><var>A</var></code> is actually an interface, it generally means an object implementing interface
+<code title=""><var>A</var></code>.</p>
+
+<p>The term <dfn id="whitespace">whitespace</dfn> is used as defined in CSS.
+<!--XXX <a href="#ref-css">[CSS]</a>--></p>
 
 
   <h3 id="common-serializing-idioms"><span class="secno">3.1 </span>Common Serializing Idioms</h3>
@@ -1397,16 +1404,17 @@
 
   <h3 id="style-sheet-association"><span class="secno">6.3 </span>Style Sheet Association</h3>
 
-  <p>This section defines the interface a <a href="#style-sheet-owner-node">style sheet owner node</a> of a
-  <a href="#style-sheet">style sheet</a> has to implement and defines the requirements for
-  <a href="#xml-stylesheet-processing-instruction" title="xml-stylesheet processing instruction">xml-stylesheet processing instructions</a>
+  <p>This section defines the interface a
+  <a href="#style-sheet-owner-node">style sheet owner node</a> of a <a href="#style-sheet">style sheet</a> has to
+  implement and defines the requirements for
+  <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-xml-stylesheet" title="xml-stylesheet processing instruction">xml-stylesheet processing instructions</a>
   and HTTP <code title="http-link">Link</code> headers when the link
-  releation type is an
+  relation type is an
   <a class="external" href="http://www.whatwg.org/html/#ascii-case-insensitive">ASCII case-insensitive</a> match for
   "<code title="">stylesheet</code>" since nobody else was interested in
   defining this.</p>
 
-  <p>The editor is in good hope that HTML and SVG will define the
+  <p class="note">The editor is in good hope that HTML and SVG will define the
   appropriate processing in their respective specifications, in terms of
   this specification, in due course.</p>
 
@@ -1419,7 +1427,7 @@
   <a href="#style-sheet-owner-node">style sheet owner node</a>
   implements the <code><a href="#linkstyle">LinkStyle</a></code> interface.</p>
 
-  <p class="XXX">Also [Supplemental]?</p>
+  <p class="XXX">Use partial instead?</p>
 
   <pre class="idl">[NoInterfaceObject] interface <dfn id="linkstyle">LinkStyle</dfn> {
   readonly attribute <a href="#stylesheet">StyleSheet</a> <a href="#linkstyle-sheet" title="linkstyle-sheet">sheet</a>;
@@ -1469,36 +1477,40 @@
   <pre class="idl"><span>ProcessingInstruction</span> implements <a href="#linkstyle">LinkStyle</a>;</pre>
 
   <p>For each
-  <a href="#xml-stylesheet-processing-instruction"><code>xml-stylesheet</code> processing instruction</a> that is
-  not part of the <span>document type declaration</span> and has an
-  <code title="">href</code> pseudo-attribute these steps
-  must (unless otherwise stated) be run:</p>
+  <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-xml-stylesheet"><code>xml-stylesheet</code> processing instruction</a>
+  that is not part of the
+  <a class="external" href="http://www.w3.org/TR/xml/#dt-doctype">document type declaration</a> and has an
+  <code title="">href</code>
+  <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute">pseudo-attribute</a> these steps must
+  (unless otherwise stated) be run:</p>
 
   <ol>
    <li><p>Let <var title="">title</var> be the value of the
-   <code title="">title</code> pseudo-attribute or the empty string if the
-   <code title="">title</code> pseudo-attribute is not specified.</li>
+   <code title="">title</code> <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute">pseudo-attribute</a> or the empty string if the
+   <code title="">title</code> <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute">pseudo-attribute</a> is not specified.</li>
 
-   <li><p>If there is an <code title="">alternate</code> pseudo-attribute
+   <li><p>If there is an <code title="">alternate</code> <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute">pseudo-attribute</a>
    whose value is a <a class="external" href="http://www.whatwg.org/html/#case-sensitive">case-sensitive</a> match
    for "<code title="">yes</code>" and <var title="">title</var> is the
    empty string terminate these steps.</li>
 
-   <li><p>If there is a <code title="">type</code> pseudo-attribute whose
+   <li><p>If there is a <code title="">type</code> <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute">pseudo-attribute</a> whose
    value is not a <a href="#supported-styling-language">supported styling language</a> the user agent
    may terminate these steps.</li>
 
    <li><p><a class="external" href="http://www.whatwg.org/html/#resolve-a-url" title="Resolve a URL">Resolve</a>
    the <a class="external" href="http://www.whatwg.org/html/#url">URL</a> specified by the
-   <code title="">href</code> pseudo-attribute and then
+   <code title="">href</code> <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute">pseudo-attribute</a> and then
    <a class="external" href="http://www.whatwg.org/html/#fetch">fetch</a> it.</li>
 
    <li>
     <p>When the resource is available, the document is in
-    <span>quirks mode</span> and the <a href="#content-type-metadata">Content-Type metadata</a> of
+    <a class="external" href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-quirks-mode" title="concept-quirks-mode">quirks mode</a>
+    and the
+    <a class="external" href="http://www.whatwg.org/html/#content-type">Content-Type metadata</a> of
     the resource is not a <a href="#supported-styling-language">supported styling language</a> change the
-    <a href="#content-type-metadata">Content-Type metadata</a> of the resource to
-    <code title="">text/css</code>.</p>
+    <a class="external" href="http://www.whatwg.org/html/#content-type">Content-Type metadata</a> of the resource
+    to <code title="">text/css</code>.</p>
 
     <p class="note">This step might never actually happen, but is included
     here in case other specifications change, to keep things consistent.</p>
@@ -1525,14 +1537,14 @@
      <dd><p>null</dd>
 
      <dt><a href="#style-sheet-media">style sheet media</a></dt>
-     <dd><p>The value of the <code title="">media</code> pseudo-attribute
+     <dd><p>The value of the <code title="">media</code> <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute">pseudo-attribute</a>
      if any, or the empty string otherwise.</dd>
 
      <dt><a href="#style-sheet-title">style sheet title</a></dt>
      <dd><p><var title="">title</var></dd>
 
      <dt><a href="#style-sheet-alternate-flag">style sheet alternate flag</a></dt>
-     <dd><p>True if the <code title="">alternate</code> pseudo-attribute
+     <dd><p>True if the <code title="">alternate</code> <a class="external" href="http://www.w3.org/TR/xml-stylesheet/#dt-pseudo-attribute">pseudo-attribute</a>
      value is a <a class="external" href="http://www.whatwg.org/html/#case-sensitive">case-sensitive</a> match for
      "<code>yes</code>", and false otherwise.</dd>
     </dl>
@@ -1569,10 +1581,11 @@
    <a class="external" href="http://www.whatwg.org/html/#fetch">fetch</a> it.</li>
 
    <li><p>When the resource is available, the document is in
-   <span>quirks mode</span> and the <a href="#content-type-metadata">Content-Type metadata</a> of
+   <a class="external" href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-quirks-mode" title="concept-quirks-mode">quirks mode</a>
+   and the <a class="external" href="http://www.whatwg.org/html/#content-type">Content-Type metadata</a> of
    the resource is not a <a href="#supported-styling-language">supported styling language</a> change the
-   <a href="#content-type-metadata">Content-Type metadata</a> of the resource to
-   <code title="">text/css</code>.</li>
+   <a class="external" href="http://www.whatwg.org/html/#content-type">Content-Type metadata</a> of the resource
+   to <code title="">text/css</code>.</li>
 
    <li><p>If the resource is not in a
    <a href="#supported-styling-language">supported styling language</a> terminate these steps.</li>
@@ -3232,9 +3245,21 @@
 
 <h2 class="no-num" id="references">References</h2>
 <h3 class="no-num" id="normative-references">Normative references</h3>
-<div id="anolis-references-normative"><dl><dt id="refsRFC2119">[RFC2119]
+<div id="anolis-references-normative"><dl><dt id="refsDOMCORE">[DOMCORE]
+<dd><cite><a href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html">DOM Core</a></cite>, A. van Kesteren and Ms2ger. W3C.
+
+<dt id="refsHTML">[HTML]
+<dd><cite><a href="http://www.whatwg.org/html">HTML</a></cite>, I. Hickson. WHATWG.
+
+<dt id="refsRFC2119">[RFC2119]
 <dd><cite><a href="http://www.ietf.org/rfc/rfc2119.txt">Key words for use in RFCs to Indicate Requirement Levels</a></cite>, S. Bradner. IETF.
 
+<dt id="refsXML">[XML]
+<dd><cite><a href="http://www.w3.org/TR/xml/">Extensible Markup Language</a></cite>, T. Bray, J. Paoli, C. Sperberg-McQueen et al.. W3C.
+
+<dt id="refsXMLSS">[XMLSS]
+<dd><cite><a href="http://www.w3.org/TR/xml-stylesheet/">Associating Style Sheets with XML documents 1.0 (Second Edition)</a></cite>, J. Clark, S. Pieters and H. S. Thompson. W3C.
+
 </dl></div>
 
 <h3 class="no-num" id="informative-references">Informative references</h3>

Index: cssom-source
===================================================================
RCS file: /sources/public/csswg/cssom/cssom-source,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cssom-source	2 Jul 2011 11:24:22 -0000	1.3
+++ cssom-source	2 Jul 2011 11:58:40 -0000	1.4
@@ -129,20 +129,27 @@
 <p>Unless otherwise stated, string comparisons are done in a <span>case-sensitive</span> manner.
 
 
-  <h2 id="terminology">Terminology</h2>
+<h2 id="terminology">Terminology</h2>
 
-  <p class="XXX">
-   <dfn>Content-Type metadata</dfn>,
-   <dfn>supported styling language</dfn>,
-   <dfn><code>xml-stylesheet</code> processing instruction</dfn>,
-  </p>
+<p>Terminology used in this specification is from
+<cite>DOM Core</cite>,
+<cite>HTML</cite>,
+<cite>Associating Style Sheets with XML documents</cite>
+and
+<span>XML</span>
+<span data-anolis-ref>DOMCORE</span>
+<span data-anolis-ref>HTML</span>
+<span data-anolis-ref>XMLSS</span>
+<span data-anolis-ref>XML</span>
 
-  <p>When this specification talks about object <code><var title="">A</var></code>
-  where <code><var title="">A</var></code> is actually an interface, it generally means
-  an object implementing interface <code><var title="">A</var></code>.</p>
+<p class="XXX"><dfn>supported styling language</dfn>
 
-  <p>The term <dfn id="whitespace">whitespace</dfn> is used as defined in
-  CSS. <!--XXX <a href="#ref-css">[CSS]</a>--></p>
+<p>When this specification talks about object
+<code title><var>A</var></code> where <code title><var>A</var></code> is actually an interface, it generally means an object implementing interface
+<code title><var>A</var></code>.</p>
+
+<p>The term <dfn id="whitespace">whitespace</dfn> is used as defined in CSS.
+<!--XXX <a href="#ref-css">[CSS]</a>--></p>
 
 
   <h3>Common Serializing Idioms</h3>
@@ -1322,16 +1329,17 @@
 
   <h3>Style Sheet Association</h3>
 
-  <p>This section defines the interface a <span>style sheet owner node</span> of a
-  <span>style sheet</span> has to implement and defines the requirements for
-  <span title="xml-stylesheet processing instruction">xml-stylesheet processing instructions</span>
+  <p>This section defines the interface a
+  <span>style sheet owner node</span> of a <span>style sheet</span> has to
+  implement and defines the requirements for
+  <span data-anolis-spec=xmlss title="xml-stylesheet processing instruction">xml-stylesheet processing instructions</span>
   and HTTP <code title="http-link">Link</code> headers when the link
-  releation type is an
+  relation type is an
   <span data-anolis-spec=html>ASCII case-insensitive</span> match for
   "<code title="">stylesheet</code>" since nobody else was interested in
   defining this.</p>
 
-  <p>The editor is in good hope that HTML and SVG will define the
+  <p class=note>The editor is in good hope that HTML and SVG will define the
   appropriate processing in their respective specifications, in terms of
   this specification, in due course.</p>
 
@@ -1344,7 +1352,7 @@
   <span>style sheet owner node</span>
   implements the <code>LinkStyle</code> interface.</p>
 
-  <p class="XXX">Also [Supplemental]?</p>
+  <p class="XXX">Use partial instead?</p>
 
   <pre class="idl">[NoInterfaceObject] interface <dfn>LinkStyle</dfn> {
   readonly attribute <span>StyleSheet</span> <span title="linkstyle-sheet">sheet</span>;
@@ -1394,36 +1402,40 @@
   <pre class="idl"><span>ProcessingInstruction</span> implements <span>LinkStyle</span>;</pre>
 
   <p>For each
-  <span><code>xml-stylesheet</code> processing instruction</span> that is
-  not part of the <span>document type declaration</span> and has an
-  <code title="">href</code> pseudo-attribute these steps
-  must (unless otherwise stated) be run:</p>
+  <span data-anolis-spec=xmlss><code>xml-stylesheet</code> processing instruction</span>
+  that is not part of the
+  <span data-anolis-spec=xml>document type declaration</span> and has an
+  <code title="">href</code>
+  <span data-anolis-spec=xmlss>pseudo-attribute</span> these steps must
+  (unless otherwise stated) be run:</p>
 
   <ol>
    <li><p>Let <var title="">title</var> be the value of the
-   <code title="">title</code> pseudo-attribute or the empty string if the
-   <code title="">title</code> pseudo-attribute is not specified.</p></li>
+   <code title="">title</code> <span data-anolis-spec=xmlss>pseudo-attribute</span> or the empty string if the
+   <code title="">title</code> <span data-anolis-spec=xmlss>pseudo-attribute</span> is not specified.</p></li>
 
-   <li><p>If there is an <code title="">alternate</code> pseudo-attribute
+   <li><p>If there is an <code title="">alternate</code> <span data-anolis-spec=xmlss>pseudo-attribute</span>
    whose value is a <span data-anolis-spec=html>case-sensitive</span> match
    for "<code title="">yes</code>" and <var title="">title</var> is the
    empty string terminate these steps.</p></li>
 
-   <li><p>If there is a <code title="">type</code> pseudo-attribute whose
+   <li><p>If there is a <code title="">type</code> <span data-anolis-spec=xmlss>pseudo-attribute</span> whose
    value is not a <span>supported styling language</span> the user agent
    may terminate these steps.</p></li>
 
    <li><p><span data-anolis-spec=html title="Resolve a URL">Resolve</span>
    the <span data-anolis-spec=html>URL</span> specified by the
-   <code title="">href</code> pseudo-attribute and then
+   <code title="">href</code> <span data-anolis-spec=xmlss>pseudo-attribute</span> and then
    <span data-anolis-spec=html>fetch</span> it.</p></li>
 
    <li>
     <p>When the resource is available, the document is in
-    <span>quirks mode</span> and the <span>Content-Type metadata</span> of
+    <span data-anolis-spec=domcore title=concept-quirks-mode>quirks mode</span>
+    and the
+    <span data-anolis-spec=html>Content-Type metadata</span> of
     the resource is not a <span>supported styling language</span> change the
-    <span>Content-Type metadata</span> of the resource to
-    <code title="">text/css</code>.</p>
+    <span data-anolis-spec=html>Content-Type metadata</span> of the resource
+    to <code title="">text/css</code>.</p>
 
     <p class="note">This step might never actually happen, but is included
     here in case other specifications change, to keep things consistent.</p>
@@ -1450,14 +1462,14 @@
      <dd><p>null</p></dd>
 
      <dt><span>style sheet media</span></dt>
-     <dd><p>The value of the <code title="">media</code> pseudo-attribute
+     <dd><p>The value of the <code title="">media</code> <span data-anolis-spec=xmlss>pseudo-attribute</span>
      if any, or the empty string otherwise.</p></dd>
 
      <dt><span>style sheet title</span></dt>
      <dd><p><var title="">title</var></p></dd>
 
      <dt><span>style sheet alternate flag</span></dt>
-     <dd><p>True if the <code title="">alternate</code> pseudo-attribute
+     <dd><p>True if the <code title="">alternate</code> <span data-anolis-spec=xmlss>pseudo-attribute</span>
      value is a <span data-anolis-spec=html>case-sensitive</span> match for
      "<code>yes</code>", and false otherwise.</p></dd>
     </dl>
@@ -1494,10 +1506,11 @@
    <span data-anolis-spec=html>fetch</span> it.</p></li>
 
    <li><p>When the resource is available, the document is in
-   <span>quirks mode</span> and the <span>Content-Type metadata</span> of
+   <span data-anolis-spec=domcore title=concept-quirks-mode>quirks mode</span>
+   and the <span data-anolis-spec=html>Content-Type metadata</span> of
    the resource is not a <span>supported styling language</span> change the
-   <span>Content-Type metadata</span> of the resource to
-   <code title="">text/css</code>.</p></li>
+   <span data-anolis-spec=html>Content-Type metadata</span> of the resource
+   to <code title="">text/css</code>.</p></li>
 
    <li><p>If the resource is not in a
    <span>supported styling language</span> terminate these steps.</p></li>

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/cssom/Overview.src.html,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -d -r1.150 -r1.151
--- Overview.src.html	2 Jul 2011 11:24:22 -0000	1.150
+++ Overview.src.html	2 Jul 2011 11:58:40 -0000	1.151
@@ -129,20 +129,27 @@
 <p>Unless otherwise stated, string comparisons are done in a <span>case-sensitive</span> manner.
 
 
-  <h2 id="terminology">Terminology</h2>
+<h2 id="terminology">Terminology</h2>
 
-  <p class="XXX">
-   <dfn>Content-Type metadata</dfn>,
-   <dfn>supported styling language</dfn>,
-   <dfn><code>xml-stylesheet</code> processing instruction</dfn>,
-  </p>
+<p>Terminology used in this specification is from
+<cite>DOM Core</cite>,
+<cite>HTML</cite>,
+<cite>Associating Style Sheets with XML documents</cite>
+and
+<span>XML</span>
+<span data-anolis-ref>DOMCORE</span>
+<span data-anolis-ref>HTML</span>
+<span data-anolis-ref>XMLSS</span>
+<span data-anolis-ref>XML</span>
 
-  <p>When this specification talks about object <code><var title="">A</var></code>
-  where <code><var title="">A</var></code> is actually an interface, it generally means
-  an object implementing interface <code><var title="">A</var></code>.</p>
+<p class="XXX"><dfn>supported styling language</dfn>
 
-  <p>The term <dfn id="whitespace">whitespace</dfn> is used as defined in
-  CSS. <!--XXX <a href="#ref-css">[CSS]</a>--></p>
+<p>When this specification talks about object
+<code title><var>A</var></code> where <code title><var>A</var></code> is actually an interface, it generally means an object implementing interface
+<code title><var>A</var></code>.</p>
+
+<p>The term <dfn id="whitespace">whitespace</dfn> is used as defined in CSS.
+<!--XXX <a href="#ref-css">[CSS]</a>--></p>
 
 
   <h3>Common Serializing Idioms</h3>
@@ -1322,16 +1329,17 @@
 
   <h3>Style Sheet Association</h3>
 
-  <p>This section defines the interface a <span>style sheet owner node</span> of a
-  <span>style sheet</span> has to implement and defines the requirements for
-  <span title="xml-stylesheet processing instruction">xml-stylesheet processing instructions</span>
+  <p>This section defines the interface a
+  <span>style sheet owner node</span> of a <span>style sheet</span> has to
+  implement and defines the requirements for
+  <span data-anolis-spec=xmlss title="xml-stylesheet processing instruction">xml-stylesheet processing instructions</span>
   and HTTP <code title="http-link">Link</code> headers when the link
-  releation type is an
+  relation type is an
   <span data-anolis-spec=html>ASCII case-insensitive</span> match for
   "<code title="">stylesheet</code>" since nobody else was interested in
   defining this.</p>
 
-  <p>The editor is in good hope that HTML and SVG will define the
+  <p class=note>The editor is in good hope that HTML and SVG will define the
   appropriate processing in their respective specifications, in terms of
   this specification, in due course.</p>
 
@@ -1344,7 +1352,7 @@
   <span>style sheet owner node</span>
   implements the <code>LinkStyle</code> interface.</p>
 
-  <p class="XXX">Also [Supplemental]?</p>
+  <p class="XXX">Use partial instead?</p>
 
   <pre class="idl">[NoInterfaceObject] interface <dfn>LinkStyle</dfn> {
   readonly attribute <span>StyleSheet</span> <span title="linkstyle-sheet">sheet</span>;
@@ -1394,36 +1402,40 @@
   <pre class="idl"><span>ProcessingInstruction</span> implements <span>LinkStyle</span>;</pre>
 
   <p>For each
-  <span><code>xml-stylesheet</code> processing instruction</span> that is
-  not part of the <span>document type declaration</span> and has an
-  <code title="">href</code> pseudo-attribute these steps
-  must (unless otherwise stated) be run:</p>
+  <span data-anolis-spec=xmlss><code>xml-stylesheet</code> processing instruction</span>
+  that is not part of the
+  <span data-anolis-spec=xml>document type declaration</span> and has an
+  <code title="">href</code>
+  <span data-anolis-spec=xmlss>pseudo-attribute</span> these steps must
+  (unless otherwise stated) be run:</p>
 
   <ol>
    <li><p>Let <var title="">title</var> be the value of the
-   <code title="">title</code> pseudo-attribute or the empty string if the
-   <code title="">title</code> pseudo-attribute is not specified.</p></li>
+   <code title="">title</code> <span data-anolis-spec=xmlss>pseudo-attribute</span> or the empty string if the
+   <code title="">title</code> <span data-anolis-spec=xmlss>pseudo-attribute</span> is not specified.</p></li>
 
-   <li><p>If there is an <code title="">alternate</code> pseudo-attribute
+   <li><p>If there is an <code title="">alternate</code> <span data-anolis-spec=xmlss>pseudo-attribute</span>
    whose value is a <span data-anolis-spec=html>case-sensitive</span> match
    for "<code title="">yes</code>" and <var title="">title</var> is the
    empty string terminate these steps.</p></li>
 
-   <li><p>If there is a <code title="">type</code> pseudo-attribute whose
+   <li><p>If there is a <code title="">type</code> <span data-anolis-spec=xmlss>pseudo-attribute</span> whose
    value is not a <span>supported styling language</span> the user agent
    may terminate these steps.</p></li>
 
    <li><p><span data-anolis-spec=html title="Resolve a URL">Resolve</span>
    the <span data-anolis-spec=html>URL</span> specified by the
-   <code title="">href</code> pseudo-attribute and then
+   <code title="">href</code> <span data-anolis-spec=xmlss>pseudo-attribute</span> and then
    <span data-anolis-spec=html>fetch</span> it.</p></li>
 
    <li>
     <p>When the resource is available, the document is in
-    <span>quirks mode</span> and the <span>Content-Type metadata</span> of
+    <span data-anolis-spec=domcore title=concept-quirks-mode>quirks mode</span>
+    and the
+    <span data-anolis-spec=html>Content-Type metadata</span> of
     the resource is not a <span>supported styling language</span> change the
-    <span>Content-Type metadata</span> of the resource to
-    <code title="">text/css</code>.</p>
+    <span data-anolis-spec=html>Content-Type metadata</span> of the resource
+    to <code title="">text/css</code>.</p>
 
     <p class="note">This step might never actually happen, but is included
     here in case other specifications change, to keep things consistent.</p>
@@ -1450,14 +1462,14 @@
      <dd><p>null</p></dd>
 
      <dt><span>style sheet media</span></dt>
-     <dd><p>The value of the <code title="">media</code> pseudo-attribute
+     <dd><p>The value of the <code title="">media</code> <span data-anolis-spec=xmlss>pseudo-attribute</span>
      if any, or the empty string otherwise.</p></dd>
 
      <dt><span>style sheet title</span></dt>
      <dd><p><var title="">title</var></p></dd>
 
      <dt><span>style sheet alternate flag</span></dt>
-     <dd><p>True if the <code title="">alternate</code> pseudo-attribute
+     <dd><p>True if the <code title="">alternate</code> <span data-anolis-spec=xmlss>pseudo-attribute</span>
      value is a <span data-anolis-spec=html>case-sensitive</span> match for
      "<code>yes</code>", and false otherwise.</p></dd>
     </dl>
@@ -1494,10 +1506,11 @@
    <span data-anolis-spec=html>fetch</span> it.</p></li>
 
    <li><p>When the resource is available, the document is in
-   <span>quirks mode</span> and the <span>Content-Type metadata</span> of
+   <span data-anolis-spec=domcore title=concept-quirks-mode>quirks mode</span>
+   and the <span data-anolis-spec=html>Content-Type metadata</span> of
    the resource is not a <span>supported styling language</span> change the
-   <span>Content-Type metadata</span> of the resource to
-   <code title="">text/css</code>.</p></li>
+   <span data-anolis-spec=html>Content-Type metadata</span> of the resource
+   to <code title="">text/css</code>.</p></li>
 
    <li><p>If the resource is not in a
    <span>supported styling language</span> terminate these steps.</p></li>

Received on Saturday, 2 July 2011 11:58:45 UTC