[html5] r3324 - [] (0) Add rules for improving compat with XPath 1.0. (bug 6778)
whatwg at whatwg.org
whatwg at whatwg.org
Fri Jun 26 01:32:25 PDT 2009
Author: ianh
Date: 2009-06-26 01:32:24 -0700 (Fri, 26 Jun 2009)
New Revision: 3324
Modified:
index
source
Log:
[] (0) Add rules for improving compat with XPath 1.0. (bug 6778)
Modified: index
===================================================================
--- index 2009-06-26 06:34:40 UTC (rev 3323)
+++ index 2009-06-26 08:32:24 UTC (rev 3324)
@@ -276,7 +276,7 @@
<li><a href=#transparent-content-models><span class=secno>3.4.2 </span>Transparent content models</a></ol></li>
<li><a href=#paragraphs><span class=secno>3.5 </span>Paragraphs</a></li>
<li><a href=#apis-in-html-documents><span class=secno>3.6 </span>APIs in HTML documents</a></li>
- <li><a href=#dom-based-xslt-1.0-processors><span class=secno>3.7 </span>DOM-based XSLT 1.0 processors</a></li>
+ <li><a href=#interactions-with-xpath-and-xslt><span class=secno>3.7 </span>Interactions with XPath and XSLT</a></li>
<li><a href=#dynamic-markup-insertion><span class=secno>3.8 </span>Dynamic markup insertion</a>
<ol>
<li><a href=#controlling-the-input-stream><span class=secno>3.8.1 </span>Controlling the input stream</a></li>
@@ -8524,12 +8524,34 @@
</dd>
- </dl><h3 id=dom-based-xslt-1.0-processors><span class=secno>3.7 </span>DOM-based XSLT 1.0 processors</h3>
+ </dl><h3 id=interactions-with-xpath-and-xslt><span class=secno>3.7 </span>Interactions with XPath and XSLT</h3>
- <p>XSLT 1.0 processors outputting to a DOM when the output method is
- "html" (either explicitly or via the defaulting rule in XSLT 1.0)
+ <p>Implementations of XPath 1.0 that operate on HTML documents
+ parsed or created in the manners described in this specification
+ (e.g. as part of the <code title="">document.evaluate()</code> API)
are affected as follows:</p>
+ <p>In addition to the cases where a name expression would match a
+ node per XPath 1.0, a name expression must evaluate to matching a
+ node when all the following conditions are also met:</p>
+
+ <ul class=brief><li>The name expression has no namespace.</li>
+ <li>The name expression has local name that is a match for <var title="">local</var>.</li>
+ <li>The expression is being tested against an element node.</li>
+ <li>The element has local name <var title="">local</var>.</li>
+ <li>The element is in the <a href=#html-namespace-0>HTML namespace</a>.</li>
+ <li>The element's document is an <a href=#html-documents title="HTML documents">HTML document</a>.</li>
+ </ul><p class=note>These requirements are a <a href=#willful-violation>willful
+ violation</a> of the XPath 1.0 specification, motivated by desire
+ to have implementations be compatible with legacy content while
+ still supporting the changes that this specification introduces to
+ HTML regarding which namespace is used for HTML elements. <a href=#refsXPATH10>[XPATH10]</a></p> <!-- note: version matters for
+ this ref -->
+
+ <hr><p id=dom-based-xslt-1.0-processors>XSLT 1.0 processors outputting
+ to a DOM when the output method is "html" (either explicitly or via
+ the defaulting rule in XSLT 1.0) are affected as follows:</p>
+
<p>If the transformation program outputs an element in no namespace,
the processor must, prior to constructing the corresponding DOM
element node, change the namespace of the element to the <a href=#html-namespace-0>HTML
Modified: source
===================================================================
--- source 2009-06-26 06:34:40 UTC (rev 3323)
+++ source 2009-06-26 08:32:24 UTC (rev 3324)
@@ -8712,12 +8712,40 @@
- <h3>DOM-based XSLT 1.0 processors</h3>
+ <h3>Interactions with XPath and XSLT</h3>
- <p>XSLT 1.0 processors outputting to a DOM when the output method is
- "html" (either explicitly or via the defaulting rule in XSLT 1.0)
+ <p>Implementations of XPath 1.0 that operate on HTML documents
+ parsed or created in the manners described in this specification
+ (e.g. as part of the <code title="">document.evaluate()</code> API)
are affected as follows:</p>
+ <p>In addition to the cases where a name expression would match a
+ node per XPath 1.0, a name expression must evaluate to matching a
+ node when all the following conditions are also met:</p>
+
+ <ul class="brief">
+ <li>The name expression has no namespace.</li>
+ <li>The name expression has local name that is a match for <var title="">local</var>.</li>
+ <li>The expression is being tested against an element node.</li>
+ <li>The element has local name <var title="">local</var>.</li>
+ <li>The element is in the <span>HTML namespace</span>.</li>
+ <li>The element's document is an <span title="HTML documents">HTML document</span>.</li>
+ </ul>
+
+ <p class="note">These requirements are a <span>willful
+ violation</span> of the XPath 1.0 specification, motivated by desire
+ to have implementations be compatible with legacy content while
+ still supporting the changes that this specification introduces to
+ HTML regarding which namespace is used for HTML elements. <a
+ href="#refsXPATH10">[XPATH10]</a></p> <!-- note: version matters for
+ this ref -->
+
+ <hr>
+
+ <p id="dom-based-xslt-1.0-processors">XSLT 1.0 processors outputting
+ to a DOM when the output method is "html" (either explicitly or via
+ the defaulting rule in XSLT 1.0) are affected as follows:</p>
+
<p>If the transformation program outputs an element in no namespace,
the processor must, prior to constructing the corresponding DOM
element node, change the namespace of the element to the <span>HTML
More information about the Commit-Watchers
mailing list