zotero/test/tests/data/test-js.html
Dan Stillman 2a7f31813e Disable JS in hidden browser when indexing HTML files without a charset
This could cause imports that linked to HTML files to hang, possibly
from network requests that failed.
2018-06-18 20:19:02 -04:00

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>