2012-12-07 14:35:14 +00:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=787134
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>Test for Bug 787134</title>
|
|
|
|
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
|
|
|
<script type="application/javascript" 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;
|
2014-08-12 12:30:59 +00:00
|
|
|
ok(a.matches(':link'), "Should match a link not in a document");
|
2012-12-07 14:35:14 +00:00
|
|
|
is(div.querySelector(':link'), a, "Should find a link not in a document");
|
|
|
|
a = document.querySelector('#link-test1');
|
2014-08-12 12:30:59 +00:00
|
|
|
ok(a.matches(':link'), "Should match a link in a document with an invalid URL");
|
2012-12-07 14:35:14 +00:00
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|