1
0
Fork 0
firefox/toolkit/components/processtools/tests/browser/dummy.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

19 lines
440 B
HTML

<!doctype html>
<html>
<head>
<title>Dummy test page</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"></meta>
</head>
<body>
<p>Dummy test page</p>
<div id="holder" class="">Holder</div>
<script>
let text = "";
for (let i = 0; i < 1000; i++) {
text += "more";
document.getElementById("holder").innerHTML = text;
}
document.getElementById("holder").classList.add("loaded");
</script>
</body>
</html>