mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 10:57:34 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
30
accessible/tests/mochitest/tree/dockids.html
Normal file
30
accessible/tests/mochitest/tree/dockids.html
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="next" href="http://www.mozilla.org">
|
||||
<style>
|
||||
head, link, a { display: block; }
|
||||
link:after { content: "Link to " attr(href); }
|
||||
</style>
|
||||
<script>
|
||||
window.onload = function() {
|
||||
document.documentElement.appendChild(document.createElement("input"));
|
||||
|
||||
var l = document.createElement("link");
|
||||
l.href = "http://www.mozilla.org";
|
||||
l.textContent = "Another ";
|
||||
document.documentElement.appendChild(l);
|
||||
|
||||
l = document.createElement("a");
|
||||
l.href = "http://www.mozilla.org";
|
||||
l.textContent = "Yet another link to mozilla";
|
||||
document.documentElement.appendChild(l);
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
Hey, I'm a <body> with three links that are not inside me and an input
|
||||
that's not inside me.
|
||||
</body>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue