Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iframe wrapper for the debugger custom page</title>
<style type="text/css">
html, body {
height: 100%;
width: 100%;
}
iframe {
border-style: none;
height: 100%;
position: absolute;
width: 100%;
}
</style>
</head>
<body>
<!-- Bug 1454025: Update this test to target http://damp.iframe.com to assert
remote frames. Blocked because the test reaches the iframe window
directly (Bug 1597549).
-->
<script>
// We are using eval + sourceURL in order to prevent doing any HTTP request
// and speed up the test runtime.
for(let i = 0; i < 500; i++) {
eval("function evalScript() {} //# sourceURL=eval/eval-script-" + i +".js");
}
</script>
</body>
</html>