summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug787134.html
blob: 59aee4e463d3834e7a0998528e5dfe20e83ed38d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=787134
-->
<head>
  <title>Test for Bug 787134</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="reflect.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=787134">Mozilla Bug 787134</a>
<p id="display"></p>
<p><a id="link-test1" href="example link">example link</a></p>
<pre id="test">
<script>
    var div = document.createElement('div');
    div.innerHTML = '<a href=#></a>';
    var a = div.firstChild;
    ok(a.matches(':link'), "Should match a link not in a document");
    is(div.querySelector(':link'), a, "Should find a link not in a document");
    a = document.querySelector('#link-test1');
    ok(a.matches(':link'), "Should match a link in a document with an invalid URL");
</script>
</pre>
</body>
</html>