<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[175301] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/175301">175301</a></dd>
<dt>Author</dt> <dd>benjamin@webkit.org</dd>
<dt>Date</dt> <dd>2014-10-28 21:21:21 -0700 (Tue, 28 Oct 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>CSS4 Selectors: Add the pseudo class :any-link
https://bugs.webkit.org/show_bug.cgi?id=138128

Reviewed by Andreas Kling.

Source/WebCore:

Defined here: http://dev.w3.org/csswg/selectors4/#the-any-link-pseudo

After :link and :-webkit-any-link were fixed, :any-link behaves
exactly like :-webkit-any-link. All I had left to do here was
make them synonyms when evaluating selectors.

Defined here: http://dev.w3.org/csswg/selectors4/#the-any-link-pseudo

After :link and :-webkit-any-link were fixed, :any-link behaves
exactly like :-webkit-any-link. All I had left to do here was
make them synonyms when evaluating selectors.

Tests: fast/selectors/any-link-basics-2.html
       fast/selectors/any-link-basics.html
       fast/selectors/any-link-styling.html

* css/CSSSelector.cpp:
(WebCore::CSSSelector::selectorText):
* css/CSSSelector.h:
* css/RuleSet.cpp:
(WebCore::RuleSet::addRule):
* css/SelectorChecker.cpp:
(WebCore::SelectorChecker::checkOne):
* css/SelectorChecker.h:
(WebCore::SelectorChecker::isCommonPseudoClassSelector):
* css/SelectorPseudoClassAndCompatibilityElementMap.in:
* cssjit/SelectorCompiler.cpp:
(WebCore::SelectorCompiler::addPseudoClassType):
(WebCore::SelectorCompiler::SelectorCodeGenerator::generateElementLinkMatching):

LayoutTests:

Story time: I implement only half of the patch and run
fast/selectors/webkit-any-link.html to make sure it fails...
and the test happily PASS.

I look into it and sure enough, a last minute change in
html-link-type-tests.js made it test nothing but :link.

I update html-link-type-tests.js to actually test the desired selector,
run the test again: PASS.

I debug a bit and I find why my code is not tested: html-link-type-tests.js
uses Element.matches() and that does not use the CSS JIT.

Fair enough, I add a querySelectorAll(&quot;#target' + selector + '&quot;) to run
through the JIT: PASS.

Since that selector is simple-#id + simple selector, we go through a fast
path for ids and skip the JIT. Arrrrg!

Finally, I added querySelectorAll(&quot;.target' + selector + '&quot;), which covers
the CSS JIT.

The nice thing is: all those cases are tested now :)

* fast/css/css-selector-text-expected.txt:
* fast/css/css-selector-text.html:
* fast/css/css-set-selector-text-expected.txt:
* fast/css/css-set-selector-text.html:
* fast/selectors/any-link-basics-2-expected.txt: Added.
* fast/selectors/any-link-basics-2.html: Added.
* fast/selectors/any-link-basics-expected.txt: Added.
* fast/selectors/any-link-basics.html: Added.
* fast/selectors/any-link-styling-expected.html: Added.
* fast/selectors/any-link-styling.html: Added.
* fast/selectors/images-with-usemap-should-not-match-link-expected.txt:
* fast/selectors/images-with-usemap-should-not-match-link.html:
* fast/selectors/link-basics-expected.txt:
* fast/selectors/link-basics-xhtml-expected.txt:
* fast/selectors/resources/html-link-type-tests.js:
(testHTMLElement):
(testHTMLTagsForLink):
* fast/selectors/webkit-any-link-basics-expected.txt:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsfastcsscssselectortextexpectedtxt">trunk/LayoutTests/fast/css/css-selector-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastcsscssselectortexthtml">trunk/LayoutTests/fast/css/css-selector-text.html</a></li>
<li><a href="#trunkLayoutTestsfastcsscsssetselectortextexpectedtxt">trunk/LayoutTests/fast/css/css-set-selector-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastcsscsssetselectortexthtml">trunk/LayoutTests/fast/css/css-set-selector-text.html</a></li>
<li><a href="#trunkLayoutTestsfastselectorsimageswithusemapshouldnotmatchlinkexpectedtxt">trunk/LayoutTests/fast/selectors/images-with-usemap-should-not-match-link-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastselectorsimageswithusemapshouldnotmatchlinkhtml">trunk/LayoutTests/fast/selectors/images-with-usemap-should-not-match-link.html</a></li>
<li><a href="#trunkLayoutTestsfastselectorslinkbasicsexpectedtxt">trunk/LayoutTests/fast/selectors/link-basics-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastselectorslinkbasicsxhtmlexpectedtxt">trunk/LayoutTests/fast/selectors/link-basics-xhtml-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastselectorsresourceshtmllinktypetestsjs">trunk/LayoutTests/fast/selectors/resources/html-link-type-tests.js</a></li>
<li><a href="#trunkLayoutTestsfastselectorswebkitanylinkbasicsexpectedtxt">trunk/LayoutTests/fast/selectors/webkit-any-link-basics-expected.txt</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorecssCSSSelectorcpp">trunk/Source/WebCore/css/CSSSelector.cpp</a></li>
<li><a href="#trunkSourceWebCorecssCSSSelectorh">trunk/Source/WebCore/css/CSSSelector.h</a></li>
<li><a href="#trunkSourceWebCorecssRuleSetcpp">trunk/Source/WebCore/css/RuleSet.cpp</a></li>
<li><a href="#trunkSourceWebCorecssSelectorCheckercpp">trunk/Source/WebCore/css/SelectorChecker.cpp</a></li>
<li><a href="#trunkSourceWebCorecssSelectorCheckerh">trunk/Source/WebCore/css/SelectorChecker.h</a></li>
<li><a href="#trunkSourceWebCorecssSelectorPseudoClassAndCompatibilityElementMapin">trunk/Source/WebCore/css/SelectorPseudoClassAndCompatibilityElementMap.in</a></li>
<li><a href="#trunkSourceWebCorecssjitSelectorCompilercpp">trunk/Source/WebCore/cssjit/SelectorCompiler.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsfastselectorsanylinkbasics2expectedtxt">trunk/LayoutTests/fast/selectors/any-link-basics-2-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastselectorsanylinkbasics2html">trunk/LayoutTests/fast/selectors/any-link-basics-2.html</a></li>
<li><a href="#trunkLayoutTestsfastselectorsanylinkbasicsexpectedtxt">trunk/LayoutTests/fast/selectors/any-link-basics-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastselectorsanylinkbasicshtml">trunk/LayoutTests/fast/selectors/any-link-basics.html</a></li>
<li><a href="#trunkLayoutTestsfastselectorsanylinkstylingexpectedhtml">trunk/LayoutTests/fast/selectors/any-link-styling-expected.html</a></li>
<li><a href="#trunkLayoutTestsfastselectorsanylinkstylinghtml">trunk/LayoutTests/fast/selectors/any-link-styling.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/ChangeLog        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -1,3 +1,53 @@
</span><ins>+2014-10-28  Benjamin Poulain  &lt;benjamin@webkit.org&gt;
+
+        CSS4 Selectors: Add the pseudo class :any-link
+        https://bugs.webkit.org/show_bug.cgi?id=138128
+
+        Reviewed by Andreas Kling.
+
+        Story time: I implement only half of the patch and run
+        fast/selectors/webkit-any-link.html to make sure it fails...
+        and the test happily PASS.
+
+        I look into it and sure enough, a last minute change in
+        html-link-type-tests.js made it test nothing but :link.
+
+        I update html-link-type-tests.js to actually test the desired selector,
+        run the test again: PASS.
+
+        I debug a bit and I find why my code is not tested: html-link-type-tests.js
+        uses Element.matches() and that does not use the CSS JIT.
+
+        Fair enough, I add a querySelectorAll(&quot;#target' + selector + '&quot;) to run
+        through the JIT: PASS.
+
+        Since that selector is simple-#id + simple selector, we go through a fast
+        path for ids and skip the JIT. Arrrrg!
+
+        Finally, I added querySelectorAll(&quot;.target' + selector + '&quot;), which covers
+        the CSS JIT.
+
+        The nice thing is: all those cases are tested now :)
+
+        * fast/css/css-selector-text-expected.txt:
+        * fast/css/css-selector-text.html:
+        * fast/css/css-set-selector-text-expected.txt:
+        * fast/css/css-set-selector-text.html:
+        * fast/selectors/any-link-basics-2-expected.txt: Added.
+        * fast/selectors/any-link-basics-2.html: Added.
+        * fast/selectors/any-link-basics-expected.txt: Added.
+        * fast/selectors/any-link-basics.html: Added.
+        * fast/selectors/any-link-styling-expected.html: Added.
+        * fast/selectors/any-link-styling.html: Added.
+        * fast/selectors/images-with-usemap-should-not-match-link-expected.txt:
+        * fast/selectors/images-with-usemap-should-not-match-link.html:
+        * fast/selectors/link-basics-expected.txt:
+        * fast/selectors/link-basics-xhtml-expected.txt:
+        * fast/selectors/resources/html-link-type-tests.js:
+        (testHTMLElement):
+        (testHTMLTagsForLink):
+        * fast/selectors/webkit-any-link-basics-expected.txt:
+
</ins><span class="cx"> 2014-10-28  Alexey Proskuryakov  &lt;ap@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         fast/multicol/multicol-crazy-nesting.html sometimes crashes
</span></span></pre></div>
<a id="trunkLayoutTestsfastcsscssselectortextexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/css/css-selector-text-expected.txt (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/css-selector-text-expected.txt        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/css/css-selector-text-expected.txt        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -30,6 +30,7 @@
</span><span class="cx"> PASS parseThenSerializeRule('a &gt; b { }') is 'a &gt; b { }'
</span><span class="cx"> 
</span><span class="cx"> PASS parseThenSerializeRule(':active { }') is ':active { }'
</span><ins>+PASS parseThenSerializeRule(':any-link { }') is ':any-link { }'
</ins><span class="cx"> PASS parseThenSerializeRule(':checked { }') is ':checked { }'
</span><span class="cx"> PASS parseThenSerializeRule(':disabled { }') is ':disabled { }'
</span><span class="cx"> PASS parseThenSerializeRule(':empty { }') is ':empty { }'
</span><span class="lines">@@ -178,6 +179,13 @@
</span><span class="cx"> PASS parseThenSerializeRule(':-webkit-any(.class1.class2.class3) { }') is ':-webkit-any(.class1.class2.class3) { }'
</span><span class="cx"> PASS parseThenSerializeRule(':-webkit-any(.class1:hover) { }') is ':-webkit-any(.class1:hover) { }'
</span><span class="cx"> PASS parseThenSerializeRule(':-webkit-any(a.class1.class2.class3:hover) { }') is ':-webkit-any(a.class1.class2.class3:hover) { }'
</span><ins>+PASS parseThenSerializeRule('a:any-link { }') is 'a:any-link { }'
+PASS parseThenSerializeRule('a :any-link { }') is 'a :any-link { }'
+PASS parseThenSerializeRule('div:any-link { }') is 'div:any-link { }'
+PASS parseThenSerializeRule('div :any-link { }') is 'div :any-link { }'
+PASS parseThenSerializeRule(':any-link &gt; div { }') is ':any-link &gt; div { }'
+PASS parseThenSerializeRule(':any-link + div { }') is ':any-link + div { }'
+PASS parseThenSerializeRule(':not(:any-link) { }') is ':not(:any-link) { }'
</ins><span class="cx"> 
</span><span class="cx"> PASS parseThenSerializeRule('*:active { }') is ':active { }'
</span><span class="cx"> PASS parseThenSerializeRule('|a { }') is 'a { }'
</span></span></pre></div>
<a id="trunkLayoutTestsfastcsscssselectortexthtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/css/css-selector-text.html (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/css-selector-text.html        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/css/css-selector-text.html        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -61,6 +61,7 @@
</span><span class="cx"> debug('');
</span><span class="cx"> 
</span><span class="cx"> testSelectorRoundTrip(&quot;:active&quot;);
</span><ins>+testSelectorRoundTrip(&quot;:any-link&quot;);
</ins><span class="cx"> testSelectorRoundTrip(&quot;:checked&quot;);
</span><span class="cx"> testSelectorRoundTrip(&quot;:disabled&quot;);
</span><span class="cx"> testSelectorRoundTrip(&quot;:empty&quot;);
</span><span class="lines">@@ -235,6 +236,13 @@
</span><span class="cx"> testSelectorRoundTrip(':-webkit-any(.class1.class2.class3)');
</span><span class="cx"> testSelectorRoundTrip(':-webkit-any(.class1:hover)');
</span><span class="cx"> testSelectorRoundTrip(':-webkit-any(a.class1.class2.class3:hover)');
</span><ins>+testSelectorRoundTrip('a:any-link');
+testSelectorRoundTrip('a :any-link');
+testSelectorRoundTrip('div:any-link');
+testSelectorRoundTrip('div :any-link');
+testSelectorRoundTrip(':any-link &gt; div');
+testSelectorRoundTrip(':any-link + div');
+testSelectorRoundTrip(':not(:any-link)');
</ins><span class="cx"> 
</span><span class="cx"> debug('');
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkLayoutTestsfastcsscsssetselectortextexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/css/css-set-selector-text-expected.txt (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/css-set-selector-text-expected.txt        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/css/css-set-selector-text-expected.txt        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -40,6 +40,7 @@
</span><span class="cx"> PASS setThenReadSelectorText('a &gt; b') is 'a &gt; b'
</span><span class="cx"> 
</span><span class="cx"> PASS setThenReadSelectorText(':active') is ':active'
</span><ins>+PASS setThenReadSelectorText(':any-link') is ':any-link'
</ins><span class="cx"> PASS setThenReadSelectorText(':checked') is ':checked'
</span><span class="cx"> PASS setThenReadSelectorText(':disabled') is ':disabled'
</span><span class="cx"> PASS setThenReadSelectorText(':empty') is ':empty'
</span><span class="lines">@@ -69,6 +70,13 @@
</span><span class="cx"> PASS setThenReadSelectorText(':-webkit-any-link') is ':-webkit-any-link'
</span><span class="cx"> PASS setThenReadSelectorText(':-webkit-autofill') is ':-webkit-autofill'
</span><span class="cx"> PASS setThenReadSelectorText(':-webkit-drag') is ':-webkit-drag'
</span><ins>+PASS setThenReadSelectorText('a:any-link') is 'a:any-link'
+PASS setThenReadSelectorText('a :any-link') is 'a :any-link'
+PASS setThenReadSelectorText('div:any-link') is 'div:any-link'
+PASS setThenReadSelectorText('div :any-link') is 'div :any-link'
+PASS setThenReadSelectorText(':any-link &gt; div') is ':any-link &gt; div'
+PASS setThenReadSelectorText(':any-link + div') is ':any-link + div'
+PASS setThenReadSelectorText(':not(:any-link)') is ':not(:any-link)'
</ins><span class="cx"> 
</span><span class="cx"> PASS setThenReadSelectorText(':nth-child(odd)') is ':nth-child(odd)'
</span><span class="cx"> PASS setThenReadSelectorText(':nth-child(even)') is ':nth-child(even)'
</span></span></pre></div>
<a id="trunkLayoutTestsfastcsscsssetselectortexthtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/css/css-set-selector-text.html (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/css-set-selector-text.html        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/css/css-set-selector-text.html        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -78,6 +78,7 @@
</span><span class="cx"> debug('');
</span><span class="cx"> 
</span><span class="cx"> testSelectorRoundTrip(&quot;:active&quot;);
</span><ins>+testSelectorRoundTrip(&quot;:any-link&quot;);
</ins><span class="cx"> testSelectorRoundTrip(&quot;:checked&quot;);
</span><span class="cx"> testSelectorRoundTrip(&quot;:disabled&quot;);
</span><span class="cx"> testSelectorRoundTrip(&quot;:empty&quot;);
</span><span class="lines">@@ -114,6 +115,14 @@
</span><span class="cx"> testSelectorRoundTrip(&quot;:-webkit-autofill&quot;);
</span><span class="cx"> testSelectorRoundTrip(&quot;:-webkit-drag&quot;);
</span><span class="cx"> 
</span><ins>+testSelectorRoundTrip('a:any-link');
+testSelectorRoundTrip('a :any-link');
+testSelectorRoundTrip('div:any-link');
+testSelectorRoundTrip('div :any-link');
+testSelectorRoundTrip(':any-link &gt; div');
+testSelectorRoundTrip(':any-link + div');
+testSelectorRoundTrip(':not(:any-link)');
+
</ins><span class="cx"> debug('');
</span><span class="cx"> 
</span><span class="cx"> testSelectorRoundTrip(&quot;:nth-child(odd)&quot;);
</span></span></pre></div>
<a id="trunkLayoutTestsfastselectorsanylinkbasics2expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/any-link-basics-2-expected.txt (0 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/any-link-basics-2-expected.txt                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/any-link-basics-2-expected.txt        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -0,0 +1,65 @@
</span><ins>+Test the basic matching of the :any-link selector.
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+PASS document.querySelectorAll(&quot;:any-link&quot;).length is 21
+PASS document.querySelectorAll(&quot;:any-link&quot;)[0] is document.getElementById(&quot;target-tag-2&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[1] is document.getElementById(&quot;target-tag-3&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[2] is document.getElementById(&quot;target-tag-4&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[3] is document.getElementById(&quot;target-tag-5&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[4] is document.getElementById(&quot;target-tag-6&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[5] is document.getElementById(&quot;target-tag-7&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[6] is document.getElementById(&quot;target-tag-8&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[7] is document.getElementById(&quot;target-tag-9&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[8] is document.getElementById(&quot;target-tag-14&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[9] is document.getElementById(&quot;target-tag-17&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[10] is document.getElementById(&quot;target-tag-18&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[11] is document.getElementById(&quot;target-tag-19&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[12] is document.getElementById(&quot;target-tag-20&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[13] is document.getElementById(&quot;target-tag-22&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[14] is document.getElementById(&quot;target-tag-23&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[15] is document.getElementById(&quot;target-tag-24&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[16] is document.getElementById(&quot;target-tag-25&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[17] is document.getElementById(&quot;target-tag-31&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[18] is document.getElementById(&quot;target-tag-32&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[19] is document.getElementById(&quot;target-tag-33&quot;)
+PASS document.querySelectorAll(&quot;:any-link&quot;)[20] is document.getElementById(&quot;target-tag-34&quot;)
+PASS getComputedStyle(document.getElementById(&quot;target-tag-1&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-2&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-3&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-4&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-5&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-6&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-7&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-8&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-9&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-10&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-11&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-12&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-13&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-14&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-15&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-16&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-17&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-18&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-19&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-20&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-21&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-22&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-23&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-24&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-25&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-26&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-27&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-28&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-29&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-30&quot;)).backgroundColor is &quot;rgb(255, 255, 255)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-31&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-32&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-33&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS getComputedStyle(document.getElementById(&quot;target-tag-34&quot;)).backgroundColor is &quot;rgb(1, 2, 3)&quot;
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorsanylinkbasics2html"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/any-link-basics-2.html (0 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/any-link-basics-2.html                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/any-link-basics-2.html        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -0,0 +1,148 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;script src=&quot;../../resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;style&gt;
+* {
+    background-color:white;
+}
+:any-link {
+    background-color:rgb(1, 2, 3);
+}
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+    &lt;div style=&quot;display:none&quot;&gt;
+        &lt;div data-description=&quot;Anchors basics.&quot;&gt;
+            &lt;a id=&quot;target-tag-1&quot;&gt;Anchors without href are no links.&lt;/a&gt;
+
+            &lt;a id=&quot;target-tag-2&quot; href&gt;Anchors with an empty href are links.&lt;/a&gt;
+            &lt;a id=&quot;target-tag-3&quot; href=&quot;&quot;&gt;Anchors with an empty href are links.&lt;/a&gt;
+            &lt;a id=&quot;target-tag-4&quot; href=&quot;a&quot;&gt;An anchor with any href is a link.&lt;/a&gt;
+            &lt;a id=&quot;target-tag-5&quot; href=&quot;http://www.webkit.org&quot;&gt;An anchor with a valid href is a link.&lt;/a&gt;
+
+            &lt;!-- Case sensitivity of the attribute name --&gt;
+            &lt;a id=&quot;target-tag-6&quot; Href&gt;Anchors with an empty href are links.&lt;/a&gt;
+            &lt;a id=&quot;target-tag-7&quot; HREF=&quot;&quot;&gt;Anchors with an empty href are links.&lt;/a&gt;
+            &lt;a id=&quot;target-tag-8&quot; hreF=&quot;a&quot;&gt;An anchor with any href is a link.&lt;/a&gt;
+            &lt;a id=&quot;target-tag-9&quot; hReF=&quot;http://www.webkit.org&quot;&gt;An anchor with a valid href is a link.&lt;/a&gt;
+        &lt;/div&gt;
+
+        &lt;div data-description=&quot;Standalone images are not link.&quot;&gt;
+            &lt;!-- The WebKit version of &quot;any-link&quot; was incorrectly classifying images with &quot;usemap&quot; as links. --&gt;
+            &lt;img id=&quot;target-tag-10&quot; href=&quot;http://www.webkit.org&quot;&gt;&lt;/img&gt;
+            &lt;img id=&quot;target-tag-11&quot; usemap&gt;&lt;/img&gt;
+            &lt;img id=&quot;target-tag-12&quot; usemap=&quot;&quot;&gt;&lt;/img&gt;
+
+            &lt;map id=&quot;target-tag-13&quot; name=&quot;image-map-1&quot;&gt;
+                &lt;area id=&quot;target-tag-14&quot; href=&quot;http://www.webkit.org&quot; shape=&quot;rect&quot; coords=&quot;10,10,10,10&quot;&gt;
+            &lt;/map&gt;
+            &lt;img id=&quot;target-tag-15&quot; src=&quot;invalid.png&quot; usemap=&quot;#image-map-1&quot;&gt;
+        &lt;/div&gt;
+
+        &lt;div data-description=&quot;Area basics..&quot;&gt;
+            &lt;!-- No href -&gt; not a link. --&gt;
+            &lt;area id=&quot;target-tag-16&quot;&gt;
+
+            &lt;area id=&quot;target-tag-17&quot; href&gt;
+            &lt;area id=&quot;target-tag-18&quot; href=&quot;&quot;&gt;
+            &lt;area id=&quot;target-tag-19&quot; href=&quot;http://www.webkit.org&quot;&gt;
+            &lt;area id=&quot;target-tag-20&quot; HREF=&quot;http://www.webkit.org&quot;&gt;
+            &lt;map id=&quot;target-tag-21&quot; name=&quot;image-map-2&quot;&gt;
+                &lt;area id=&quot;target-tag-22&quot; href&gt;
+                &lt;area id=&quot;target-tag-23&quot; href=&quot;&quot;&gt;
+                &lt;area id=&quot;target-tag-24&quot; href=&quot;http://www.webkit.org&quot;&gt;
+                &lt;area id=&quot;target-tag-25&quot; HREF=&quot;http://www.webkit.org&quot;&gt;
+            &lt;/map&gt;
+        &lt;/div&gt;
+
+        &lt;div data-description=&quot;SVG basics.&quot;&gt;
+            &lt;svg&gt;
+                &lt;a id=&quot;target-tag-26&quot;&gt;&lt;text&gt;No href.&lt;/text&gt;&lt;/a&gt;
+
+                &lt;a id=&quot;target-tag-27&quot; href&gt;&lt;text&gt;Link.&lt;/text&gt;&lt;/a&gt;
+                &lt;a id=&quot;target-tag-28&quot; href=&quot;&quot;&gt;&lt;text&gt;Link.&lt;/text&gt;&lt;/a&gt;
+                &lt;a id=&quot;target-tag-29&quot; href=&quot;http://www.webkit.org&quot;&gt;&lt;text&gt;Link.&lt;/text&gt;&lt;/a&gt;
+                &lt;a id=&quot;target-tag-30&quot; HREF=&quot;http://www.webkit.org&quot;&gt;&lt;text&gt;Link.&lt;/text&gt;&lt;/a&gt;
+
+                &lt;a id=&quot;target-tag-31&quot; xlink:href&gt;&lt;text&gt;Link.&lt;/text&gt;&lt;/a&gt;
+                &lt;a id=&quot;target-tag-32&quot; xlink:href=&quot;&quot;&gt;&lt;text&gt;Link.&lt;/text&gt;&lt;/a&gt;
+                &lt;a id=&quot;target-tag-33&quot; xlink:href=&quot;http://www.webkit.org&quot;&gt;&lt;text&gt;Link.&lt;/text&gt;&lt;/a&gt;
+                &lt;a id=&quot;target-tag-34&quot; xlink:HREF=&quot;http://www.webkit.org&quot;&gt;&lt;text&gt;Link.&lt;/text&gt;&lt;/a&gt;
+            &lt;/svg&gt;
+        &lt;/div&gt;
+    &lt;/div&gt;
+&lt;/body&gt;
+&lt;script&gt;
+description('Test the basic matching of the :any-link selector.');
+
+shouldBe('document.querySelectorAll(&quot;:any-link&quot;).length', '21');
+
+// Query Selector.
+var expectedIds = ['target-tag-2',
+                   'target-tag-3',
+                   'target-tag-4',
+                   'target-tag-5',
+                   'target-tag-6',
+                   'target-tag-7',
+                   'target-tag-8',
+                   'target-tag-9',
+                   'target-tag-14',
+                   'target-tag-17',
+                   'target-tag-18',
+                   'target-tag-19',
+                   'target-tag-20',
+                   'target-tag-22',
+                   'target-tag-23',
+                   'target-tag-24',
+                   'target-tag-25',
+                   'target-tag-31',
+                   'target-tag-32',
+                   'target-tag-33',
+                   'target-tag-34'];
+
+for (var i = 0; i &lt; expectedIds.length; ++i)
+    shouldBe('document.querySelectorAll(&quot;:any-link&quot;)[' + i + ']', 'document.getElementById(&quot;' + expectedIds[i] + '&quot;)');
+
+// Styling.
+var expectedStyles = [['target-tag-1', 'rgb(255, 255, 255)'],
+                      ['target-tag-2', 'rgb(1, 2, 3)'],
+                      ['target-tag-3', 'rgb(1, 2, 3)'],
+                      ['target-tag-4', 'rgb(1, 2, 3)'],
+                      ['target-tag-5', 'rgb(1, 2, 3)'],
+                      ['target-tag-6', 'rgb(1, 2, 3)'],
+                      ['target-tag-7', 'rgb(1, 2, 3)'],
+                      ['target-tag-8', 'rgb(1, 2, 3)'],
+                      ['target-tag-9', 'rgb(1, 2, 3)'],
+                      ['target-tag-10', 'rgb(255, 255, 255)'],
+                      ['target-tag-11', 'rgb(255, 255, 255)'],
+                      ['target-tag-12', 'rgb(255, 255, 255)'],
+                      ['target-tag-13', 'rgb(255, 255, 255)'],
+                      ['target-tag-14', 'rgb(1, 2, 3)'],
+                      ['target-tag-15', 'rgb(255, 255, 255)'],
+                      ['target-tag-16', 'rgb(255, 255, 255)'],
+                      ['target-tag-17', 'rgb(1, 2, 3)'],
+                      ['target-tag-18', 'rgb(1, 2, 3)'],
+                      ['target-tag-19', 'rgb(1, 2, 3)'],
+                      ['target-tag-20', 'rgb(1, 2, 3)'],
+                      ['target-tag-21', 'rgb(255, 255, 255)'],
+                      ['target-tag-22', 'rgb(1, 2, 3)'],
+                      ['target-tag-23', 'rgb(1, 2, 3)'],
+                      ['target-tag-24', 'rgb(1, 2, 3)'],
+                      ['target-tag-25', 'rgb(1, 2, 3)'],
+                      ['target-tag-26', 'rgb(255, 255, 255)'],
+                      ['target-tag-27', 'rgb(255, 255, 255)'],
+                      ['target-tag-28', 'rgb(255, 255, 255)'],
+                      ['target-tag-29', 'rgb(255, 255, 255)'],
+                      ['target-tag-30', 'rgb(255, 255, 255)'],
+                      ['target-tag-31', 'rgb(1, 2, 3)'],
+                      ['target-tag-32', 'rgb(1, 2, 3)'],
+                      ['target-tag-33', 'rgb(1, 2, 3)'],
+                      ['target-tag-34', 'rgb(1, 2, 3)']];
+
+for (var i = 0; i &lt; expectedStyles.length; ++i)
+    shouldBeEqualToString('getComputedStyle(document.getElementById(&quot;' + expectedStyles[i][0] + '&quot;)).backgroundColor', &quot;&quot; + expectedStyles[i][1]);
+
+&lt;/script&gt;
+&lt;script src=&quot;../../resources/js-test-post.js&quot;&gt;&lt;/script&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorsanylinkbasicsexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/any-link-basics-expected.txt (0 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/any-link-basics-expected.txt                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/any-link-basics-expected.txt        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -0,0 +1,2169 @@
</span><ins>+Test the :any-link pseudo class on various elements.
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+Testing a
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing abbr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing acronym
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing address
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing applet
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing area
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing article
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing aside
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing audio
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing b
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing base
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing basefont
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing bdi
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing bdo
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing bgsound
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing big
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing blockquote
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing body
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing br
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing button
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing canvas
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing caption
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing center
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing cite
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing code
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing col
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing colgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing command
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing webkitShadowContent
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing datalist
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing dd
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing del
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing details
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing dfn
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing dir
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing div
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing dl
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing dt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing em
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing embed
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing fieldset
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing figcaption
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing figure
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing font
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing footer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing form
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing frame
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing frameset
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing h1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing h2
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing h3
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing h4
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing h5
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing h6
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing head
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing header
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing hgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing hr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing html
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing i
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing iframe
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing image
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing img
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing input
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing ins
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing isindex
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing kbd
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing keygen
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing label
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing layer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing legend
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing li
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing link
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing listing
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing main
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing map
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing mark
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing marquee
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing menu
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing meta
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing meter
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing nav
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing nobr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing noembed
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing noframes
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing nolayer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing object
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing ol
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing optgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing option
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing output
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing p
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing param
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing plaintext
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing pre
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing progress
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing q
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing rb
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing rp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing rt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing rtc
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing ruby
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing s
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing samp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing script
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing section
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing select
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing small
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing source
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing span
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing strike
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing strong
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing style
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing sub
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing summary
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing sup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing table
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing tbody
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing td
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing template
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing textarea
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing tfoot
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing th
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing thead
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing title
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing tr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing track
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing tt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing u
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing ul
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing var
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing video
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing wbr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing xmp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+Testing noscript
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:any-link&quot;).length is 0
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorsanylinkbasicshtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/any-link-basics.html (0 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/any-link-basics.html                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/any-link-basics.html        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -0,0 +1,13 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;script src=&quot;../../resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;script src=&quot;resources/html-link-type-tests.js&quot;&gt;&lt;/script&gt;
+&lt;/head&gt;
+&lt;script&gt;
+description('Test the :any-link pseudo class on various elements.');
+
+testHTMLTagsForLink(':any-link');
+&lt;/script&gt;
+&lt;script src=&quot;../../resources/js-test-post.js&quot;&gt;&lt;/script&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorsanylinkstylingexpectedhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/any-link-styling-expected.html (0 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/any-link-styling-expected.html                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/any-link-styling-expected.html        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -0,0 +1,55 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;style&gt;
+a, area {
+    display: block;
+    height: 10px;
+    width: 10px;
+
+    background-color: white;
+}
+:any-link {
+    display: block;
+    height:20px;
+    width:20px;
+    background-color: green;
+    fill: green;
+}
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+    &lt;a style=&quot;display: block; height:10px; width:10px; background-color:white&quot;&gt;&lt;/a&gt;
+
+    &lt;a style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;&lt;/a&gt;
+    &lt;a style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;&lt;/a&gt;
+    &lt;a style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;&lt;/a&gt;
+    &lt;a style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;&lt;/a&gt;
+
+    &lt;a style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;&lt;/a&gt;
+    &lt;a style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;&lt;/a&gt;
+    &lt;a style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;&lt;/a&gt;
+    &lt;a style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;&lt;/a&gt;
+
+    &lt;area style=&quot;display: block; height:10px; width:10px; background-color:white&quot;&gt;
+
+    &lt;area style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;
+    &lt;area style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;
+    &lt;area style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;
+    &lt;area style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;
+    &lt;map name=&quot;image-map-2&quot;&gt;
+        &lt;area style=&quot;display: block; height:10px; width:10px; background-color:white&quot;&gt;
+        &lt;area style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;
+        &lt;area style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;
+        &lt;area style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;
+        &lt;area style=&quot;display: block; height:20px; width:20px; background-color:green&quot;&gt;
+    &lt;/map&gt;
+
+    &lt;svg viewBox=&quot;0 0 100 100&quot; style=&quot;width: 100px; height: 100px; stroke: black; position: absolute; left: 100px; top: 15px&quot;&gt;
+        &lt;a xlink:href=&quot;http://www.webkit.org&quot;&gt;&lt;text x=&quot;5&quot; y=&quot;15&quot; stroke-width=0 fill=green&gt;good&lt;/text&gt;&lt;/a&gt;
+        &lt;a href=&quot;http://www.webkit.org&quot;&gt;&lt;text x=&quot;5&quot; y=&quot;30&quot; stroke-width=0&gt;bad&lt;/text&gt;&lt;/a&gt;
+        &lt;a xlink:href&gt;&lt;text x=&quot;5&quot; y=&quot;45&quot; stroke-width=0 fill=green&gt;good&lt;/text&gt;&lt;/a&gt;
+    &lt;/svg&gt;
+
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorsanylinkstylinghtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/any-link-styling.html (0 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/any-link-styling.html                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/any-link-styling.html        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -0,0 +1,56 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;style&gt;
+a, area {
+    display: block;
+    height: 10px;
+    width: 10px;
+
+    background-color: white;
+}
+:any-link {
+    display: block;
+    height:20px;
+    width:20px;
+    background-color: green;
+    fill: green;
+}
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+    &lt;a&gt;&lt;/a&gt;
+
+    &lt;a href&gt;&lt;/a&gt;
+    &lt;a href=&quot;&quot;&gt;&lt;/a&gt;
+    &lt;a href=&quot;a&quot;&gt;&lt;/a&gt;
+    &lt;a href=&quot;http://www.webkit.org&quot;&gt;&lt;/a&gt;
+
+    &lt;!-- Case sensitivity of the attribute name --&gt;
+    &lt;a Href&gt;&lt;/a&gt;
+    &lt;a HREF=&quot;&quot;&gt;&lt;/a&gt;
+    &lt;a hreF=&quot;a&quot;&gt;&lt;/a&gt;
+    &lt;a hReF=&quot;http://www.webkit.org&quot;&gt;&lt;/a&gt;
+
+    &lt;area&gt;&lt;!-- No href -&gt; not a link. --&gt;
+
+    &lt;area href&gt;
+    &lt;area href=&quot;&quot;&gt;
+    &lt;area href=&quot;http://www.webkit.org&quot;&gt;
+    &lt;area HREF=&quot;http://www.webkit.org&quot;&gt;
+    &lt;map name=&quot;image-map-2&quot;&gt;
+        &lt;area&gt;
+        &lt;area href&gt;
+        &lt;area href=&quot;&quot;&gt;
+        &lt;area href=&quot;http://www.webkit.org&quot;&gt;
+        &lt;area HREF=&quot;http://www.webkit.org&quot;&gt;
+    &lt;/map&gt;
+
+    &lt;svg viewBox=&quot;0 0 100 100&quot; style=&quot;width: 100px; height: 100px; stroke: black; position: absolute; left: 100px; top: 15px&quot;&gt;
+        &lt;a xlink:href=&quot;http://www.webkit.org&quot;&gt;&lt;text x=&quot;5&quot; y=&quot;15&quot; stroke-width=0&gt;good&lt;/text&gt;&lt;/a&gt;
+        &lt;a href=&quot;http://www.webkit.org&quot;&gt;&lt;text x=&quot;5&quot; y=&quot;30&quot; stroke-width=0&gt;bad&lt;/text&gt;&lt;/a&gt;
+        &lt;a xlink:href&gt;&lt;text x=&quot;5&quot; y=&quot;45&quot; stroke-width=0&gt;good&lt;/text&gt;&lt;/a&gt;
+    &lt;/svg&gt;
+
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorsimageswithusemapshouldnotmatchlinkexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/selectors/images-with-usemap-should-not-match-link-expected.txt (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/images-with-usemap-should-not-match-link-expected.txt        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/selectors/images-with-usemap-should-not-match-link-expected.txt        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -4,20 +4,28 @@
</span><span class="cx"> 
</span><span class="cx"> 
</span><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[0].matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;testcases img&quot;)[0].matches(&quot;:any-link&quot;) is false
</ins><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[0].matches(&quot;:-webkit-any-link&quot;) is false
</span><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[1].matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;testcases img&quot;)[1].matches(&quot;:any-link&quot;) is false
</ins><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[1].matches(&quot;:-webkit-any-link&quot;) is false
</span><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[2].matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;testcases img&quot;)[2].matches(&quot;:any-link&quot;) is false
</ins><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[2].matches(&quot;:-webkit-any-link&quot;) is false
</span><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[3].matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;testcases img&quot;)[3].matches(&quot;:any-link&quot;) is false
</ins><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[3].matches(&quot;:-webkit-any-link&quot;) is false
</span><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[4].matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;testcases img&quot;)[4].matches(&quot;:any-link&quot;) is false
</ins><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[4].matches(&quot;:-webkit-any-link&quot;) is false
</span><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[5].matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;testcases img&quot;)[5].matches(&quot;:any-link&quot;) is false
</ins><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[5].matches(&quot;:-webkit-any-link&quot;) is false
</span><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[6].matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;testcases img&quot;)[6].matches(&quot;:any-link&quot;) is false
</ins><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[6].matches(&quot;:-webkit-any-link&quot;) is false
</span><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[7].matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;testcases img&quot;)[7].matches(&quot;:any-link&quot;) is false
</ins><span class="cx"> PASS document.querySelectorAll(&quot;testcases img&quot;)[7].matches(&quot;:-webkit-any-link&quot;) is false
</span><span class="cx"> PASS successfullyParsed is true
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkLayoutTestsfastselectorsimageswithusemapshouldnotmatchlinkhtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/selectors/images-with-usemap-should-not-match-link.html (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/images-with-usemap-should-not-match-link.html        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/selectors/images-with-usemap-should-not-match-link.html        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -26,6 +26,7 @@
</span><span class="cx"> var testCaseCount = document.querySelectorAll('testcases img').length;
</span><span class="cx"> for (var i = 0; i &lt; testCaseCount; ++i) {
</span><span class="cx">     shouldBeFalse('document.querySelectorAll(&quot;testcases img&quot;)[' + i + '].matches(&quot;:link&quot;)');
</span><ins>+    shouldBeFalse('document.querySelectorAll(&quot;testcases img&quot;)[' + i + '].matches(&quot;:any-link&quot;)');
</ins><span class="cx">     shouldBeFalse('document.querySelectorAll(&quot;testcases img&quot;)[' + i + '].matches(&quot;:-webkit-any-link&quot;)');
</span><span class="cx"> }
</span><span class="cx"> &lt;/script&gt;
</span></span></pre></div>
<a id="trunkLayoutTestsfastselectorslinkbasicsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/selectors/link-basics-expected.txt (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/link-basics-expected.txt        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/selectors/link-basics-expected.txt        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -5,814 +5,2164 @@
</span><span class="cx"> 
</span><span class="cx"> Testing a
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing abbr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing acronym
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing address
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing applet
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing area
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing article
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing aside
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing audio
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing b
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing base
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing basefont
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing bdi
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing bdo
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing bgsound
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing big
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing blockquote
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing body
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing br
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing button
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing canvas
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing caption
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing center
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing cite
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing code
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing col
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing colgroup
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing command
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing webkitShadowContent
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing datalist
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dd
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing del
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing details
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dfn
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dir
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing div
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dl
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dt
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing em
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing embed
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing fieldset
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing figcaption
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing figure
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing font
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing footer
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing form
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing frame
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing frameset
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h1
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h2
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h3
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h4
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h5
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h6
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing head
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing header
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing hgroup
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing hr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing html
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing i
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing iframe
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing image
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing img
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing input
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing ins
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing isindex
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing kbd
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing keygen
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing label
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing layer
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing legend
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing li
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing link
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing listing
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing main
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing map
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing mark
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing marquee
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing menu
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing meta
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing meter
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing nav
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing nobr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing noembed
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing noframes
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing nolayer
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing object
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing ol
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing optgroup
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing option
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing output
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing p
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing param
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing plaintext
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing pre
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing progress
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing q
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing rb
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing rp
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing rt
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing rtc
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing ruby
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing s
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing samp
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing script
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing section
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing select
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing small
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing source
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing span
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing strike
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing strong
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing style
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing sub
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing summary
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing sup
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing table
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing tbody
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing td
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing template
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing textarea
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing tfoot
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing th
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing thead
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing title
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing tr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing track
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing tt
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing u
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing ul
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing var
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing video
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing wbr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing xmp
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing noscript
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS successfullyParsed is true
</span><span class="cx"> 
</span><span class="cx"> TEST COMPLETE
</span></span></pre></div>
<a id="trunkLayoutTestsfastselectorslinkbasicsxhtmlexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/selectors/link-basics-xhtml-expected.txt (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/link-basics-xhtml-expected.txt        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/selectors/link-basics-xhtml-expected.txt        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -5,814 +5,2164 @@
</span><span class="cx"> 
</span><span class="cx"> Testing a
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing abbr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing acronym
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing address
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing applet
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing area
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing article
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing aside
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing audio
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing b
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing base
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing basefont
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing bdi
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing bdo
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing bgsound
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing big
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing blockquote
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing body
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing br
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing button
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing canvas
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing caption
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing center
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing cite
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing code
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing col
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing colgroup
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing command
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing webkitShadowContent
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing datalist
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dd
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing del
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing details
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dfn
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dir
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing div
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dl
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing dt
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing em
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing embed
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing fieldset
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing figcaption
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing figure
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing font
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing footer
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing form
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing frame
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing frameset
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h1
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h2
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h3
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h4
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h5
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing h6
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing head
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing header
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing hgroup
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing hr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing html
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing i
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing iframe
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing image
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing img
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing input
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing ins
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing isindex
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing kbd
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing keygen
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing label
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing layer
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing legend
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing li
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing link
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 1
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing listing
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing main
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing map
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing mark
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing marquee
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing menu
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing meta
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing meter
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing nav
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing nobr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing noembed
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing noframes
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing nolayer
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing object
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing ol
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing optgroup
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing option
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing output
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing p
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing param
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing plaintext
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing pre
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing progress
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing q
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing rb
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing rp
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing rt
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing rtc
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing ruby
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing s
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing samp
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing script
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing section
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing select
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing small
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing source
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing span
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing strike
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing strong
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing style
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing sub
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing summary
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing sup
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing table
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing tbody
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing td
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing template
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing textarea
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing tfoot
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing th
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing thead
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing title
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing tr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing track
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing tt
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing u
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing ul
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing var
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing video
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing wbr
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing xmp
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> Testing noscript
</span><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</span><ins>+PASS document.querySelectorAll(&quot;#target:link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:link&quot;).length is 0
</ins><span class="cx"> PASS successfullyParsed is true
</span><span class="cx"> 
</span><span class="cx"> TEST COMPLETE
</span></span></pre></div>
<a id="trunkLayoutTestsfastselectorsresourceshtmllinktypetestsjs"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/selectors/resources/html-link-type-tests.js (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/resources/html-link-type-tests.js        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/selectors/resources/html-link-type-tests.js        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -2,23 +2,35 @@
</span><span class="cx">     debug('Testing ' + tagName)
</span><span class="cx">     var element = document.createElement(tagName);
</span><span class="cx">     element.id = &quot;target&quot;;
</span><ins>+    element.className = &quot;target&quot;;
</ins><span class="cx">     document.documentElement.appendChild(element);
</span><span class="cx"> 
</span><span class="cx">     // An element without href never matches.
</span><span class="cx">     shouldBeFalse('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
</span><ins>+    shouldBe('document.querySelectorAll(&quot;#target' + selector + '&quot;).length', '0');
+    shouldBe('document.querySelectorAll(&quot;.target' + selector + '&quot;).length', '0');
</ins><span class="cx"> 
</span><span class="cx">     var testFunction = shouldMatch ? shouldBeTrue : shouldBeFalse;
</span><span class="cx">     // Any value of href attribute should match.
</span><span class="cx">     element.setAttribute('href', '');
</span><span class="cx">     testFunction('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
</span><ins>+    shouldBe('document.querySelectorAll(&quot;#target' + selector + '&quot;).length', shouldMatch ? '1' : '0');
+    shouldBe('document.querySelectorAll(&quot;.target' + selector + '&quot;).length', shouldMatch ? '1' : '0');
+
</ins><span class="cx">     element.setAttribute('href', 'http://www.webkit.org');
</span><span class="cx">     testFunction('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
</span><ins>+    shouldBe('document.querySelectorAll(&quot;#target' + selector + '&quot;).length', shouldMatch ? '1' : '0');
+    shouldBe('document.querySelectorAll(&quot;.target' + selector + '&quot;).length', shouldMatch ? '1' : '0');
</ins><span class="cx"> 
</span><span class="cx">     element.removeAttribute('href');
</span><span class="cx">     shouldBeFalse('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
</span><ins>+    shouldBe('document.querySelectorAll(&quot;#target' + selector + '&quot;).length', '0');
+    shouldBe('document.querySelectorAll(&quot;.target' + selector + '&quot;).length', '0');
</ins><span class="cx"> 
</span><span class="cx">     element.setAttributeNS('http://www.webkit.org', 'href', 'http://www.webkit.org');
</span><span class="cx">     shouldBeFalse('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
</span><ins>+    shouldBe('document.querySelectorAll(&quot;#target' + selector + '&quot;).length', '0');
+    shouldBe('document.querySelectorAll(&quot;.target' + selector + '&quot;).length', '0');
</ins><span class="cx"> 
</span><span class="cx">     document.documentElement.removeChild(element);
</span><span class="cx"> }
</span><span class="lines">@@ -29,6 +41,6 @@
</span><span class="cx">     for (var i = 0; i &lt; htmlTags.length; ++i) {
</span><span class="cx">         var tag = htmlTags[i];
</span><span class="cx">         var shouldMatch = tag === 'a' || tag === 'area' || tag === 'link';
</span><del>-        testHTMLElement(tag, ':link', shouldMatch);
</del><ins>+        testHTMLElement(tag, selector, shouldMatch);
</ins><span class="cx">     }
</span><span class="cx"> }
</span><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsfastselectorswebkitanylinkbasicsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/selectors/webkit-any-link-basics-expected.txt (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/webkit-any-link-basics-expected.txt        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/LayoutTests/fast/selectors/webkit-any-link-basics-expected.txt        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -4,815 +4,2165 @@
</span><span class="cx"> 
</span><span class="cx"> 
</span><span class="cx"> Testing a
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing abbr
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing acronym
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing address
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing applet
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing area
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing article
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing aside
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing audio
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing b
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing base
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing basefont
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing bdi
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing bdo
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing bgsound
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing big
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing blockquote
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing body
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing br
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing button
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing canvas
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing caption
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing center
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing cite
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing code
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing col
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing colgroup
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing command
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing webkitShadowContent
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing datalist
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing dd
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing del
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing details
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing dfn
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing dir
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing div
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing dl
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing dt
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing em
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing embed
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing fieldset
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing figcaption
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing figure
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing font
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing footer
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing form
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing frame
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing frameset
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing h1
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing h2
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing h3
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing h4
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing h5
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing h6
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing head
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing header
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing hgroup
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing hr
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing html
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing i
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing iframe
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing image
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing img
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing input
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing ins
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing isindex
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing kbd
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing keygen
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing label
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing layer
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing legend
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing li
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing link
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is true
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is true
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 1
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing listing
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing main
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing map
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing mark
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing marquee
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing menu
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing meta
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing meter
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing nav
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing nobr
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing noembed
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing noframes
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing nolayer
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing object
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing ol
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing optgroup
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing option
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing output
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing p
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing param
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing plaintext
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing pre
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing progress
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing q
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing rb
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing rp
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing rt
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing rtc
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing ruby
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing s
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing samp
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing script
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing section
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing select
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing small
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing source
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing span
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing strike
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing strong
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing style
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing sub
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing summary
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing sup
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing table
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing tbody
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing td
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing template
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing textarea
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing tfoot
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing th
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing thead
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing title
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing tr
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing track
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing tt
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing u
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing ul
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing var
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing video
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing wbr
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing xmp
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> Testing noscript
</span><del>-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
-PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
</del><ins>+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:-webkit-any-link&quot;) is false
+PASS document.querySelectorAll(&quot;#target:-webkit-any-link&quot;).length is 0
+PASS document.querySelectorAll(&quot;.target:-webkit-any-link&quot;).length is 0
</ins><span class="cx"> PASS successfullyParsed is true
</span><span class="cx"> 
</span><span class="cx"> TEST COMPLETE
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/Source/WebCore/ChangeLog        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -1,3 +1,40 @@
</span><ins>+2014-10-28  Benjamin Poulain  &lt;benjamin@webkit.org&gt;
+
+        CSS4 Selectors: Add the pseudo class :any-link
+        https://bugs.webkit.org/show_bug.cgi?id=138128
+
+        Reviewed by Andreas Kling.
+
+        Defined here: http://dev.w3.org/csswg/selectors4/#the-any-link-pseudo
+
+        After :link and :-webkit-any-link were fixed, :any-link behaves
+        exactly like :-webkit-any-link. All I had left to do here was
+        make them synonyms when evaluating selectors.
+
+        Defined here: http://dev.w3.org/csswg/selectors4/#the-any-link-pseudo
+
+        After :link and :-webkit-any-link were fixed, :any-link behaves
+        exactly like :-webkit-any-link. All I had left to do here was
+        make them synonyms when evaluating selectors.
+
+        Tests: fast/selectors/any-link-basics-2.html
+               fast/selectors/any-link-basics.html
+               fast/selectors/any-link-styling.html
+
+        * css/CSSSelector.cpp:
+        (WebCore::CSSSelector::selectorText):
+        * css/CSSSelector.h:
+        * css/RuleSet.cpp:
+        (WebCore::RuleSet::addRule):
+        * css/SelectorChecker.cpp:
+        (WebCore::SelectorChecker::checkOne):
+        * css/SelectorChecker.h:
+        (WebCore::SelectorChecker::isCommonPseudoClassSelector):
+        * css/SelectorPseudoClassAndCompatibilityElementMap.in:
+        * cssjit/SelectorCompiler.cpp:
+        (WebCore::SelectorCompiler::addPseudoClassType):
+        (WebCore::SelectorCompiler::SelectorCodeGenerator::generateElementLinkMatching):
+
</ins><span class="cx"> 2014-10-28  Jer Noble  &lt;jer.noble@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [EME][Mac] Adopt new AVStreamSession API: pass storageDirectoryAtURL at creation-time
</span></span></pre></div>
<a id="trunkSourceWebCorecssCSSSelectorcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/CSSSelector.cpp (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/CSSSelector.cpp        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/Source/WebCore/css/CSSSelector.cpp        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -303,7 +303,12 @@
</span><span class="cx">                 str.append(')');
</span><span class="cx">                 break;
</span><span class="cx">             }
</span><ins>+#if ENABLE(CSS_SELECTORS_LEVEL4)
</ins><span class="cx">             case CSSSelector::PseudoClassAnyLink:
</span><ins>+                str.appendLiteral(&quot;:any-link&quot;);
+                break;
+#endif
+            case CSSSelector::PseudoClassAnyLinkDeprecated:
</ins><span class="cx">                 str.appendLiteral(&quot;:-webkit-any-link&quot;);
</span><span class="cx">                 break;
</span><span class="cx">             case CSSSelector::PseudoClassAutofill:
</span></span></pre></div>
<a id="trunkSourceWebCorecssCSSSelectorh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/CSSSelector.h (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/CSSSelector.h        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/Source/WebCore/css/CSSSelector.h        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -94,7 +94,10 @@
</span><span class="cx">             PseudoClassLink,
</span><span class="cx">             PseudoClassVisited,
</span><span class="cx">             PseudoClassAny,
</span><ins>+#if ENABLE(CSS_SELECTORS_LEVEL4)
</ins><span class="cx">             PseudoClassAnyLink,
</span><ins>+#endif
+            PseudoClassAnyLinkDeprecated,
</ins><span class="cx">             PseudoClassAutofill,
</span><span class="cx">             PseudoClassHover,
</span><span class="cx">             PseudoClassDrag,
</span></span></pre></div>
<a id="trunkSourceWebCorecssRuleSetcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/RuleSet.cpp (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/RuleSet.cpp        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/Source/WebCore/css/RuleSet.cpp        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -242,7 +242,10 @@
</span><span class="cx">             switch (selector-&gt;pseudoClassType()) {
</span><span class="cx">             case CSSSelector::PseudoClassLink:
</span><span class="cx">             case CSSSelector::PseudoClassVisited:
</span><ins>+#if ENABLE(CSS_SELECTORS_LEVEL4)
</ins><span class="cx">             case CSSSelector::PseudoClassAnyLink:
</span><ins>+#endif
+            case CSSSelector::PseudoClassAnyLinkDeprecated:
</ins><span class="cx">                 linkSelector = selector;
</span><span class="cx">                 break;
</span><span class="cx">             case CSSSelector::PseudoClassFocus:
</span></span></pre></div>
<a id="trunkSourceWebCorecssSelectorCheckercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/SelectorChecker.cpp (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/SelectorChecker.cpp        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/Source/WebCore/css/SelectorChecker.cpp        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -780,7 +780,10 @@
</span><span class="cx">             break;
</span><span class="cx">         case CSSSelector::PseudoClassAutofill:
</span><span class="cx">             return isAutofilled(element);
</span><ins>+#if ENABLE(CSS_SELECTORS_LEVEL4)
</ins><span class="cx">         case CSSSelector::PseudoClassAnyLink:
</span><ins>+#endif
+        case CSSSelector::PseudoClassAnyLinkDeprecated:
</ins><span class="cx">         case CSSSelector::PseudoClassLink:
</span><span class="cx">             // :visited and :link matches are separated later when applying the style. Here both classes match all links...
</span><span class="cx">             return element-&gt;isLink();
</span></span></pre></div>
<a id="trunkSourceWebCorecssSelectorCheckerh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/SelectorChecker.h (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/SelectorChecker.h        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/Source/WebCore/css/SelectorChecker.h        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -99,7 +99,10 @@
</span><span class="cx">         return false;
</span><span class="cx">     CSSSelector::PseudoClassType pseudoType = selector-&gt;pseudoClassType();
</span><span class="cx">     return pseudoType == CSSSelector::PseudoClassLink
</span><ins>+#if ENABLE(CSS_SELECTORS_LEVEL4)
</ins><span class="cx">         || pseudoType == CSSSelector::PseudoClassAnyLink
</span><ins>+#endif
+        || pseudoType == CSSSelector::PseudoClassAnyLinkDeprecated
</ins><span class="cx">         || pseudoType == CSSSelector::PseudoClassVisited
</span><span class="cx">         || pseudoType == CSSSelector::PseudoClassFocus;
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebCorecssSelectorPseudoClassAndCompatibilityElementMapin"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/SelectorPseudoClassAndCompatibilityElementMap.in (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/SelectorPseudoClassAndCompatibilityElementMap.in        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/Source/WebCore/css/SelectorPseudoClassAndCompatibilityElementMap.in        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -1,11 +1,14 @@
</span><span class="cx"> -khtml-drag
</span><span class="cx"> -webkit-any(
</span><del>--webkit-any-link
</del><ins>+-webkit-any-link, PseudoClassAnyLinkDeprecated, PseudoElementUnknown
</ins><span class="cx"> -webkit-autofill
</span><span class="cx"> -webkit-drag
</span><span class="cx"> -webkit-full-page-media
</span><span class="cx"> active
</span><span class="cx"> after, PseudoClassUnknown, PseudoElementAfter
</span><ins>+#if ENABLE(CSS_SELECTORS_LEVEL4)
+any-link
+#endif
</ins><span class="cx"> before, PseudoClassUnknown, PseudoElementBefore
</span><span class="cx"> checked
</span><span class="cx"> corner-present
</span></span></pre></div>
<a id="trunkSourceWebCorecssjitSelectorCompilercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/cssjit/SelectorCompiler.cpp (175300 => 175301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/cssjit/SelectorCompiler.cpp        2014-10-29 04:11:14 UTC (rev 175300)
+++ trunk/Source/WebCore/cssjit/SelectorCompiler.cpp        2014-10-29 04:21:21 UTC (rev 175301)
</span><span class="lines">@@ -566,7 +566,10 @@
</span><span class="cx">         return FunctionType::CannotCompile;
</span><span class="cx"> 
</span><span class="cx">     // Optimized pseudo selectors.
</span><ins>+#if ENABLE(CSS_SELECTORS_LEVEL4)
</ins><span class="cx">     case CSSSelector::PseudoClassAnyLink:
</span><ins>+#endif
+    case CSSSelector::PseudoClassAnyLinkDeprecated:
</ins><span class="cx">     case CSSSelector::PseudoClassLink:
</span><span class="cx">     case CSSSelector::PseudoClassRoot:
</span><span class="cx">     case CSSSelector::PseudoClassTarget:
</span><span class="lines">@@ -2447,7 +2450,7 @@
</span><span class="cx"> 
</span><span class="cx"> void SelectorCodeGenerator::generateElementLinkMatching(Assembler::JumpList&amp; failureCases, const SelectorFragment&amp; fragment)
</span><span class="cx"> {
</span><del>-    if (fragment.pseudoClasses.contains(CSSSelector::PseudoClassLink) || fragment.pseudoClasses.contains(CSSSelector::PseudoClassAnyLink) || fragment.pseudoClasses.contains(CSSSelector::PseudoClassVisited))
</del><ins>+    if (fragment.pseudoClasses.contains(CSSSelector::PseudoClassLink) || fragment.pseudoClasses.contains(CSSSelector::PseudoClassAnyLink) || fragment.pseudoClasses.contains(CSSSelector::PseudoClassVisited) || fragment.pseudoClasses.contains(CSSSelector::PseudoClassAnyLinkDeprecated))
</ins><span class="cx">         generateElementIsLink(failureCases);
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>