gecko-dev/toolkit/components/processtools/tests/browser/dummy.html
Tarek Ziadé 37386bc892 Bug 1529510 - Move ProcInfo to processtoolsservice;r=aklotz,mstange
With this change, we expose ProcInfo to Android.

Differential Revision: https://phabricator.services.mozilla.com/D94810
2020-11-12 17:42:54 +00:00

20 lines
496 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";
// eslint-disable-next-line no-unsanitized/property
document.getElementById("holder").innerHTML = text;
}
document.getElementById("holder").classList.add("loaded");
</script>
</body>
</html>