<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.3">Jekyll</generator><link href="https://rixx.github.io/baseline-updates/feed/by_tag/xml.xml" rel="self" type="application/atom+xml" /><link href="https://rixx.github.io/baseline-updates/" rel="alternate" type="text/html" /><updated>2026-05-24T01:11:00+00:00</updated><id>https://rixx.github.io/baseline-updates/feed/by_tag/xml.xml</id><title type="html">Baseline Updates</title><subtitle>Updates to the Baseline collection. Including RSS feeds (both for all updates and individual tags).</subtitle><entry><title type="html">New in High Baseline Support: XPath</title><link href="https://rixx.github.io/baseline-updates/2018/01/29/xpath.html" rel="alternate" type="text/html" title="New in High Baseline Support: XPath" /><published>2018-01-29T00:00:00+00:00</published><updated>2018-01-29T00:00:00+00:00</updated><id>https://rixx.github.io/baseline-updates/2018/01/29/xpath</id><content type="html" xml:base="https://rixx.github.io/baseline-updates/2018/01/29/xpath.html"><![CDATA[<p><a href="https://caniuse.com/?search=xpath">caniuse</a> · <a href="https://developer.mozilla.org/en-US/search?q=XPath">mdn</a> · <a href="https://dom.spec.whatwg.org/#xpath">spec</a></p>

<p>The <code class="language-plaintext highlighter-rouge">document.evaluate()</code> method selects elements in an HTML or XML document based on an expression of XPath, a domain specific language for querying XML documents. Also known as XML Path Language.</p>

<h3 id="source-features">Source features</h3>

<ul>
  <li><code class="language-plaintext highlighter-rouge">api.Document.evaluate</code> <a href="https://developer.mozilla.org/en-US/search?q=api.Document.evaluate">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathEvaluator</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathEvaluator">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathEvaluator.XPathEvaluator</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathEvaluator.XPathEvaluator">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathEvaluator.createExpression</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathEvaluator.createExpression">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathEvaluator.evaluate</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathEvaluator.evaluate">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathExpression</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathExpression">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathExpression.evaluate</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathExpression.evaluate">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.booleanValue</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.booleanValue">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.invalidIteratorState</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.invalidIteratorState">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.iterateNext</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.iterateNext">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.numberValue</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.numberValue">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.resultType</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.resultType">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.singleNodeValue</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.singleNodeValue">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.snapshotItem</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.snapshotItem">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.snapshotLength</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.snapshotLength">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.stringValue</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.stringValue">[mdn]</a></li>
</ul>]]></content><author><name></name></author><category term="baseline-high" /><category term="xml" /><summary type="html"><![CDATA[caniuse · mdn · spec]]></summary></entry><entry><title type="html">New in High Baseline Support: XSLT</title><link href="https://rixx.github.io/baseline-updates/2018/01/29/xslt.html" rel="alternate" type="text/html" title="New in High Baseline Support: XSLT" /><published>2018-01-29T00:00:00+00:00</published><updated>2018-01-29T00:00:00+00:00</updated><id>https://rixx.github.io/baseline-updates/2018/01/29/xslt</id><content type="html" xml:base="https://rixx.github.io/baseline-updates/2018/01/29/xslt.html"><![CDATA[<p><a href="https://caniuse.com/?search=xslt">caniuse</a> · <a href="https://developer.mozilla.org/en-US/search?q=XSLT">mdn</a> · <a href="https://dom.spec.whatwg.org/#xslt">spec</a></p>

<p>The <code class="language-plaintext highlighter-rouge">XSLTProcessor</code> API transforms XML documents into new XML or HTML documents, using XSLT stylesheets. You can use XSLT to convert data between different XML schemas or to convert XML data into web pages or PDF documents. Also known as Extensible Stylesheet Language Transformations.</p>

<h3 id="source-features">Source features</h3>

<ul>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.XSLTProcessor</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.XSLTProcessor">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.clearParameters</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.clearParameters">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.getParameter</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.getParameter">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.importStylesheet</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.importStylesheet">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.removeParameter</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.removeParameter">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.reset</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.reset">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.setParameter</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.setParameter">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.transformToDocument</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.transformToDocument">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.transformToFragment</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.transformToFragment">[mdn]</a></li>
</ul>]]></content><author><name></name></author><category term="baseline-high" /><category term="xml" /><summary type="html"><![CDATA[caniuse · mdn · spec]]></summary></entry><entry><title type="html">New in Low Baseline Support: XPath</title><link href="https://rixx.github.io/baseline-updates/2015/07/29/xpath.html" rel="alternate" type="text/html" title="New in Low Baseline Support: XPath" /><published>2015-07-29T00:00:00+00:00</published><updated>2015-07-29T00:00:00+00:00</updated><id>https://rixx.github.io/baseline-updates/2015/07/29/xpath</id><content type="html" xml:base="https://rixx.github.io/baseline-updates/2015/07/29/xpath.html"><![CDATA[<p><a href="https://caniuse.com/?search=xpath">caniuse</a> · <a href="https://developer.mozilla.org/en-US/search?q=XPath">mdn</a> · <a href="https://dom.spec.whatwg.org/#xpath">spec</a></p>

<p>The <code class="language-plaintext highlighter-rouge">document.evaluate()</code> method selects elements in an HTML or XML document based on an expression of XPath, a domain specific language for querying XML documents. Also known as XML Path Language.</p>

<h3 id="source-features">Source features</h3>

<ul>
  <li><code class="language-plaintext highlighter-rouge">api.Document.evaluate</code> <a href="https://developer.mozilla.org/en-US/search?q=api.Document.evaluate">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathEvaluator</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathEvaluator">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathEvaluator.XPathEvaluator</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathEvaluator.XPathEvaluator">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathEvaluator.createExpression</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathEvaluator.createExpression">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathEvaluator.evaluate</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathEvaluator.evaluate">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathExpression</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathExpression">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathExpression.evaluate</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathExpression.evaluate">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.booleanValue</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.booleanValue">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.invalidIteratorState</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.invalidIteratorState">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.iterateNext</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.iterateNext">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.numberValue</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.numberValue">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.resultType</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.resultType">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.singleNodeValue</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.singleNodeValue">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.snapshotItem</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.snapshotItem">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.snapshotLength</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.snapshotLength">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XPathResult.stringValue</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XPathResult.stringValue">[mdn]</a></li>
</ul>]]></content><author><name></name></author><category term="baseline-low" /><category term="xml" /><summary type="html"><![CDATA[caniuse · mdn · spec]]></summary></entry><entry><title type="html">New in Low Baseline Support: XSLT</title><link href="https://rixx.github.io/baseline-updates/2015/07/29/xslt.html" rel="alternate" type="text/html" title="New in Low Baseline Support: XSLT" /><published>2015-07-29T00:00:00+00:00</published><updated>2015-07-29T00:00:00+00:00</updated><id>https://rixx.github.io/baseline-updates/2015/07/29/xslt</id><content type="html" xml:base="https://rixx.github.io/baseline-updates/2015/07/29/xslt.html"><![CDATA[<p><a href="https://caniuse.com/?search=xslt">caniuse</a> · <a href="https://developer.mozilla.org/en-US/search?q=XSLT">mdn</a> · <a href="https://dom.spec.whatwg.org/#xslt">spec</a></p>

<p>The <code class="language-plaintext highlighter-rouge">XSLTProcessor</code> API transforms XML documents into new XML or HTML documents, using XSLT stylesheets. You can use XSLT to convert data between different XML schemas or to convert XML data into web pages or PDF documents. Also known as Extensible Stylesheet Language Transformations.</p>

<h3 id="source-features">Source features</h3>

<ul>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.XSLTProcessor</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.XSLTProcessor">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.clearParameters</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.clearParameters">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.getParameter</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.getParameter">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.importStylesheet</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.importStylesheet">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.removeParameter</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.removeParameter">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.reset</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.reset">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.setParameter</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.setParameter">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.transformToDocument</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.transformToDocument">[mdn]</a></li>
  <li><code class="language-plaintext highlighter-rouge">api.XSLTProcessor.transformToFragment</code> <a href="https://developer.mozilla.org/en-US/search?q=api.XSLTProcessor.transformToFragment">[mdn]</a></li>
</ul>]]></content><author><name></name></author><category term="baseline-low" /><category term="xml" /><summary type="html"><![CDATA[caniuse · mdn · spec]]></summary></entry></feed>