mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
863 B
HTML
31 lines
863 B
HTML
<!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>
|