2a7f31813e
This could cause imports that linked to HTML files to hang, possibly from network requests that failed.
13 lines
222 B
HTML
13 lines
222 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
</head>
|
|
<script>
|
|
window.onload = function () {
|
|
document.getElementById('target').textContent = 'This is a test.';
|
|
};
|
|
</script>
|
|
<body>
|
|
<p id="target"/>
|
|
</body>
|
|
</html>
|