This commit is contained in:
NoryiE
2025-02-10 06:00:28 +00:00
parent b0a4a6da9c
commit 71a1fce096
2428 changed files with 0 additions and 1005324 deletions

View File

@@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Test iframe document</title>
<style>
.mark {
background: yellow;
}
</style>
<!-- The above is necessary to check if elements inside <head> will be ignored -->
</head>
<body>
<div id="iframes-nested-inc-target">
<p>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem
ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
</p>
<script>
// Can't use document.write here, as this fixture will be
// included after the document was fully loaded
var target = document.getElementById("iframes-nested-inc-target");
var iframe = document.createElement("iframe");
iframe.src = "inc.html";
target.appendChild(iframe);
</script>
</div>
</body>
</html>