<!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>[174878] 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/174878">174878</a></dd>
<dt>Author</dt> <dd>benjamin@webkit.org</dd>
<dt>Date</dt> <dd>2014-10-20 00:31:09 -0700 (Mon, 20 Oct 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>Update the &lt;link&gt;'s link status
https://bugs.webkit.org/show_bug.cgi?id=137861

Reviewed by Chris Dumez.

Source/WebCore:

In the latest HTML spec, &lt;link&gt; has the link status
if it has a 'href' attribute, exactly like &lt;a&gt; and &lt;area&gt;:
    https://html.spec.whatwg.org/multipage/scripting.html#selector-link

This patch updates WebKit accordingly.

Tests: fast/css/link-basics.html
       fast/selectors/link-basics-xhtml.xhtml
       fast/selectors/link-basics.html
       fast/selectors/webkit-any-link-basics.html

* html/HTMLLinkElement.cpp:
(WebCore::HTMLLinkElement::parseAttribute):

LayoutTests:

* fast/css/link-basics-expected.html: Added.
* fast/css/link-basics.html: Added.
* fast/selectors/link-basics-expected.txt: Added.
* fast/selectors/link-basics-xhtml-expected.txt: Added.
* fast/selectors/link-basics-xhtml.xhtml: Added.
* fast/selectors/link-basics.html: Added.
* fast/selectors/resources/html-link-type-tests.js: Added.
(testHTMLElement):
(testHTMLTagsForLink):
* fast/selectors/webkit-any-link-basics-expected.txt: Added.
* fast/selectors/webkit-any-link-basics.html: Added.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorehtmlHTMLLinkElementcpp">trunk/Source/WebCore/html/HTMLLinkElement.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsfastcsslinkbasicsexpectedhtml">trunk/LayoutTests/fast/css/link-basics-expected.html</a></li>
<li><a href="#trunkLayoutTestsfastcsslinkbasicshtml">trunk/LayoutTests/fast/css/link-basics.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="#trunkLayoutTestsfastselectorslinkbasicsxhtmlxhtml">trunk/LayoutTests/fast/selectors/link-basics-xhtml.xhtml</a></li>
<li><a href="#trunkLayoutTestsfastselectorslinkbasicshtml">trunk/LayoutTests/fast/selectors/link-basics.html</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="#trunkLayoutTestsfastselectorswebkitanylinkbasicshtml">trunk/LayoutTests/fast/selectors/webkit-any-link-basics.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (174877 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2014-10-20 07:09:44 UTC (rev 174877)
+++ trunk/LayoutTests/ChangeLog        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -1,3 +1,22 @@
</span><ins>+2014-10-20  Benjamin Poulain  &lt;benjamin@webkit.org&gt;
+
+        Update the &lt;link&gt;'s link status
+        https://bugs.webkit.org/show_bug.cgi?id=137861
+
+        Reviewed by Chris Dumez.
+
+        * fast/css/link-basics-expected.html: Added.
+        * fast/css/link-basics.html: Added.
+        * fast/selectors/link-basics-expected.txt: Added.
+        * fast/selectors/link-basics-xhtml-expected.txt: Added.
+        * fast/selectors/link-basics-xhtml.xhtml: Added.
+        * fast/selectors/link-basics.html: Added.
+        * fast/selectors/resources/html-link-type-tests.js: Added.
+        (testHTMLElement):
+        (testHTMLTagsForLink):
+        * fast/selectors/webkit-any-link-basics-expected.txt: Added.
+        * fast/selectors/webkit-any-link-basics.html: Added.
+
</ins><span class="cx"> 2014-10-18  Antti Koivisto  &lt;antti@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         REGRESSION (r173356): Safari can't install a profile, gets 'Download Failed error
</span></span></pre></div>
<a id="trunkLayoutTestsfastcsslinkbasicsexpectedhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/css/link-basics-expected.html (0 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/link-basics-expected.html                                (rev 0)
+++ trunk/LayoutTests/fast/css/link-basics-expected.html        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -0,0 +1,23 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+&lt;head&gt;
+    &lt;title&gt;Test styling with the :link selector&lt;/title&gt;
+    &lt;style&gt;
+        area, link {
+            display: block;
+        }
+        .webkit::before {
+            content: &quot;WebKit&quot;;
+        }
+        .green::before {
+            content: &quot;GREEN&quot;;
+        }
+    &lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+    &lt;p&gt;Test styling with the :link selector. Any type the text is &lt;em&gt;GREEN&lt;/em&gt;, its color should be green.&lt;/p&gt;
+    &lt;p&gt;&lt;a&gt;WebKit&lt;/a&gt; &lt;a style=&quot;color:lime&quot; href=&quot; &quot;&gt;GREEN&lt;/a&gt; &lt;a style=&quot;color:lime&quot; href=&quot;http://www.webkit.org/notvisited.html&quot;&gt;GREEN&lt;/a&gt;&lt;/p&gt;
+    &lt;p&gt;&lt;link class=&quot;webkit&quot;&gt; &lt;link class=&quot;green&quot; style=&quot;color:lime&quot; href=&quot; &quot;&gt; &lt;link class=&quot;green&quot; style=&quot;color:lime&quot; href=&quot;http://www.webkit.org/notvisited.html&quot;&gt;&lt;/p&gt;
+    &lt;p&gt;&lt;area class=&quot;webkit&quot;&gt; &lt;area class=&quot;green&quot; style=&quot;color:lime&quot; href=&quot; &quot;&gt; &lt;area class=&quot;green&quot; style=&quot;color:lime&quot; href=&quot;http://www.webkit.org/notvisited.html&quot;&gt;&lt;/p&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsfastcsslinkbasicshtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/css/link-basics.html (0 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/link-basics.html                                (rev 0)
+++ trunk/LayoutTests/fast/css/link-basics.html        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+&lt;head&gt;
+    &lt;title&gt;Test styling with the :link selector&lt;/title&gt;
+    &lt;style&gt;
+        :link {
+            color: lime;
+        }
+        area, link {
+            display: block;
+        }
+        :matches(area, link)::before {
+            content: &quot;WebKit&quot;;
+        }
+        :matches(area, link)[href]::before {
+            content: &quot;GREEN&quot;;
+        }
+    &lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+    &lt;p&gt;Test styling with the :link selector. Any type the text is &lt;em&gt;GREEN&lt;/em&gt;, its color should be green.&lt;/p&gt;
+    &lt;p&gt;&lt;a&gt;WebKit&lt;/a&gt; &lt;a href=&quot; &quot;&gt;GREEN&lt;/a&gt; &lt;a href=&quot;http://www.webkit.org/notvisited.html&quot;&gt;GREEN&lt;/a&gt;&lt;/p&gt;
+    &lt;p&gt;&lt;link&gt; &lt;link href=&quot; &quot;&gt; &lt;link href=&quot;http://www.webkit.org/notvisited.html&quot;&gt;&lt;/p&gt;
+    &lt;p&gt;&lt;area&gt; &lt;area href=&quot; &quot;&gt; &lt;area href=&quot;http://www.webkit.org/notvisited.html&quot;&gt;&lt;/p&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorslinkbasicsexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/link-basics-expected.txt (0 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/link-basics-expected.txt                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/link-basics-expected.txt        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -0,0 +1,819 @@
</span><ins>+Test the :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;: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
+Testing abbr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing acronym
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing address
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing applet
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing area
+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
+Testing article
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing aside
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing audio
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing b
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing base
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing basefont
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing bdi
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing bdo
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing bgsound
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing big
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing blockquote
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing body
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing br
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing button
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing canvas
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing caption
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing center
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing cite
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing code
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing col
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing colgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing command
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing webkitShadowContent
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing datalist
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dd
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing 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
+Testing details
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dfn
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dir
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing div
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dl
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing em
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing embed
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing fieldset
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing figcaption
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing figure
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing font
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing footer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing form
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing frame
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing frameset
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h2
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h3
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h4
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h5
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h6
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing head
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing header
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing hgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing hr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing html
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing i
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing iframe
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing image
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing img
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing input
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ins
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing isindex
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing kbd
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing keygen
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing label
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing layer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing legend
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing li
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing link
+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
+Testing listing
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing main
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing map
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing mark
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing marquee
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing menu
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing meta
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing meter
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing nav
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing nobr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing noembed
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing noframes
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing nolayer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing object
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ol
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing optgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing option
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing output
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing p
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing param
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing plaintext
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing pre
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing progress
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing q
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rb
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rtc
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ruby
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing s
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing samp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing script
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing section
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing select
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing small
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing source
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing span
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing strike
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing strong
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing style
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing sub
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing summary
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing sup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing table
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tbody
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing td
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing template
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing textarea
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tfoot
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing th
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing thead
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing title
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing track
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing u
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ul
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing var
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing video
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing wbr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing xmp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing noscript
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorslinkbasicsxhtmlexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/link-basics-xhtml-expected.txt (0 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/link-basics-xhtml-expected.txt                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/link-basics-xhtml-expected.txt        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -0,0 +1,819 @@
</span><ins>+Test the :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;: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
+Testing abbr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing acronym
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing address
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing applet
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing area
+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
+Testing article
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing aside
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing audio
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing b
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing base
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing basefont
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing bdi
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing bdo
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing bgsound
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing big
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing blockquote
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing body
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing br
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing button
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing canvas
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing caption
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing center
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing cite
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing code
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing col
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing colgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing command
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing webkitShadowContent
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing datalist
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dd
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing 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
+Testing details
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dfn
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dir
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing div
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dl
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing em
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing embed
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing fieldset
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing figcaption
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing figure
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing font
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing footer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing form
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing frame
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing frameset
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h2
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h3
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h4
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h5
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h6
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing head
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing header
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing hgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing hr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing html
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing i
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing iframe
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing image
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing img
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing input
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ins
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing isindex
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing kbd
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing keygen
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing label
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing layer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing legend
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing li
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing link
+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
+Testing listing
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing main
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing map
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing mark
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing marquee
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing menu
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing meta
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing meter
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing nav
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing nobr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing noembed
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing noframes
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing nolayer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing object
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ol
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing optgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing option
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing output
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing p
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing param
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing plaintext
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing pre
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing progress
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing q
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rb
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rtc
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ruby
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing s
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing samp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing script
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing section
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing select
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing small
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing source
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing span
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing strike
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing strong
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing style
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing sub
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing summary
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing sup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing table
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tbody
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing td
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing template
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing textarea
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tfoot
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing th
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing thead
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing title
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing track
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing u
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ul
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing var
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing video
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing wbr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing xmp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing noscript
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorslinkbasicsxhtmlxhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/link-basics-xhtml.xhtml (0 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/link-basics-xhtml.xhtml                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/link-basics-xhtml.xhtml        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -0,0 +1,13 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&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 :link pseudo class on various elements.');
+
+testHTMLTagsForLink(':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="trunkLayoutTestsfastselectorslinkbasicshtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/link-basics.html (0 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/link-basics.html                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/link-basics.html        2014-10-20 07:31:09 UTC (rev 174878)
</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 :link pseudo class on various elements.');
+
+testHTMLTagsForLink(':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="trunkLayoutTestsfastselectorsresourceshtmllinktypetestsjs"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/resources/html-link-type-tests.js (0 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/resources/html-link-type-tests.js                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/resources/html-link-type-tests.js        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -0,0 +1,34 @@
</span><ins>+function testHTMLElement(tagName, selector, shouldMatch) {
+    debug('Testing ' + tagName)
+    var element = document.createElement(tagName);
+    element.id = &quot;target&quot;;
+    document.documentElement.appendChild(element);
+
+    // An element without href never matches.
+    shouldBeFalse('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
+
+    var testFunction = shouldMatch ? shouldBeTrue : shouldBeFalse;
+    // Any value of href attribute should match.
+    element.setAttribute('href', '');
+    testFunction('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
+    element.setAttribute('href', 'http://www.webkit.org');
+    testFunction('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
+
+    element.removeAttribute('href');
+    shouldBeFalse('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
+
+    element.setAttributeNS('http://www.webkit.org', 'href', 'http://www.webkit.org');
+    shouldBeFalse('document.getElementById(&quot;target&quot;).matches(&quot;' + selector + '&quot;)');
+
+    document.documentElement.removeChild(element);
+}
+
+htmlTags = ['a', 'abbr', 'acronym', 'address', 'applet', 'area', 'article', 'aside', 'audio', 'b', 'base', 'basefont', 'bdi', 'bdo', 'bgsound', 'big', 'blockquote', 'body', 'br', 'button', 'canvas', 'caption', 'center', 'cite', 'code', 'col', 'colgroup', 'command', 'webkitShadowContent', 'datalist', 'dd', 'del', 'details', 'dfn', 'dir', 'div', 'dl', 'dt', 'em', 'embed', 'fieldset', 'figcaption', 'figure', 'font', 'footer', 'form', 'frame', 'frameset', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'i', 'iframe', 'image', 'img', 'input', 'ins', 'isindex', 'kbd', 'keygen', 'label', 'layer', 'legend', 'li', 'link', 'listing', 'main', 'map', 'mark', 'marquee', 'menu', 'meta', 'meter', 'nav', 'nobr', 'noembed', 'noframes', 'nolayer', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'plaintext', 'pre', 'progress', 'q', 'rb', 'rp', 'rt', 'rtc', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strike', 'stron
 g', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'title', 'tr', 'track', 'tt', 'u', 'ul', 'var', 'video', 'wbr', 'xmp', 'noscript'];
+
+function testHTMLTagsForLink(selector) {
+    for (var i = 0; i &lt; htmlTags.length; ++i) {
+        var tag = htmlTags[i];
+        var shouldMatch = tag === 'a' || tag === 'area' || tag === 'link';
+        testHTMLElement(tag, ':link', shouldMatch);
+    }
+}
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsfastselectorswebkitanylinkbasicsexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/webkit-any-link-basics-expected.txt (0 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/webkit-any-link-basics-expected.txt                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/webkit-any-link-basics-expected.txt        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -0,0 +1,819 @@
</span><ins>+Test the :-webkit-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;: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
+Testing abbr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing acronym
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing address
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing applet
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing area
+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
+Testing article
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing aside
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing audio
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing b
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing base
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing basefont
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing bdi
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing bdo
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing bgsound
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing big
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing blockquote
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing body
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing br
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing button
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing canvas
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing caption
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing center
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing cite
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing code
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing col
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing colgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing command
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing webkitShadowContent
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing datalist
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dd
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing 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
+Testing details
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dfn
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dir
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing div
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dl
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing dt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing em
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing embed
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing fieldset
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing figcaption
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing figure
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing font
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing footer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing form
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing frame
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing frameset
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h1
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h2
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h3
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h4
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h5
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing h6
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing head
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing header
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing hgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing hr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing html
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing i
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing iframe
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing image
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing img
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing input
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ins
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing isindex
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing kbd
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing keygen
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing label
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing layer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing legend
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing li
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing link
+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
+Testing listing
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing main
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing map
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing mark
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing marquee
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing menu
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing meta
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing meter
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing nav
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing nobr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing noembed
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing noframes
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing nolayer
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing object
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ol
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing optgroup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing option
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing output
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing p
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing param
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing plaintext
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing pre
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing progress
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing q
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rb
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing rtc
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ruby
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing s
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing samp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing script
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing section
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing select
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing small
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing source
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing span
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing strike
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing strong
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing style
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing sub
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing summary
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing sup
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing table
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tbody
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing td
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing template
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing textarea
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tfoot
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing th
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing thead
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing title
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing track
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing tt
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing u
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing ul
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing var
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing video
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing wbr
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing xmp
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+Testing noscript
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS document.getElementById(&quot;target&quot;).matches(&quot;:link&quot;) is false
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestsfastselectorswebkitanylinkbasicshtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/selectors/webkit-any-link-basics.html (0 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/selectors/webkit-any-link-basics.html                                (rev 0)
+++ trunk/LayoutTests/fast/selectors/webkit-any-link-basics.html        2014-10-20 07:31:09 UTC (rev 174878)
</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 :-webkit-any-link pseudo class on various elements.');
+
+testHTMLTagsForLink(':-webkit-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="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (174877 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-10-20 07:09:44 UTC (rev 174877)
+++ trunk/Source/WebCore/ChangeLog        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -1,3 +1,24 @@
</span><ins>+2014-10-20  Benjamin Poulain  &lt;benjamin@webkit.org&gt;
+
+        Update the &lt;link&gt;'s link status
+        https://bugs.webkit.org/show_bug.cgi?id=137861
+
+        Reviewed by Chris Dumez.
+
+        In the latest HTML spec, &lt;link&gt; has the link status
+        if it has a 'href' attribute, exactly like &lt;a&gt; and &lt;area&gt;:
+            https://html.spec.whatwg.org/multipage/scripting.html#selector-link
+
+        This patch updates WebKit accordingly.
+
+        Tests: fast/css/link-basics.html
+               fast/selectors/link-basics-xhtml.xhtml
+               fast/selectors/link-basics.html
+               fast/selectors/webkit-any-link-basics.html
+
+        * html/HTMLLinkElement.cpp:
+        (WebCore::HTMLLinkElement::parseAttribute):
+
</ins><span class="cx"> 2014-10-20  Chris Dumez  &lt;cdumez@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [Mac] Optimize cookiesForDOM() by filtering and serializing cookies in a single pass
</span></span></pre></div>
<a id="trunkSourceWebCorehtmlHTMLLinkElementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/html/HTMLLinkElement.cpp (174877 => 174878)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/html/HTMLLinkElement.cpp        2014-10-20 07:09:44 UTC (rev 174877)
+++ trunk/Source/WebCore/html/HTMLLinkElement.cpp        2014-10-20 07:31:09 UTC (rev 174878)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx">  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
</span><span class="cx">  *           (C) 1999 Antti Koivisto (koivisto@kde.org)
</span><span class="cx">  *           (C) 2001 Dirk Mueller (mueller@kde.org)
</span><del>- * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
</del><ins>+ * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2014 Apple Inc. All rights reserved.
</ins><span class="cx">  * Copyright (C) 2009 Rob Buis (rwlbuis@gmail.com)
</span><span class="cx">  * Copyright (C) 2011 Google Inc. All rights reserved.
</span><span class="cx">  *
</span><span class="lines">@@ -39,6 +39,7 @@
</span><span class="cx"> #include &quot;FrameLoaderClient.h&quot;
</span><span class="cx"> #include &quot;FrameTree.h&quot;
</span><span class="cx"> #include &quot;FrameView.h&quot;
</span><ins>+#include &quot;HTMLAnchorElement.h&quot;
</ins><span class="cx"> #include &quot;HTMLNames.h&quot;
</span><span class="cx"> #include &quot;HTMLParserIdioms.h&quot;
</span><span class="cx"> #include &quot;MediaList.h&quot;
</span><span class="lines">@@ -140,6 +141,10 @@
</span><span class="cx">         m_relAttribute = LinkRelAttribute(value);
</span><span class="cx">         process();
</span><span class="cx">     } else if (name == hrefAttr) {
</span><ins>+        bool wasLink = isLink();
+        setIsLink(!value.isNull() &amp;&amp; !shouldProhibitLinks(this));
+        if (wasLink != isLink())
+            didAffectSelector(AffectedSelectorLink | AffectedSelectorVisited);
</ins><span class="cx">         process();
</span><span class="cx">     } else if (name == typeAttr) {
</span><span class="cx">         m_type = value;
</span></span></pre>
</div>
</div>

</body>
</html>