zotero/test/tests/data/test-js.html

14 lines
222 B
HTML
Raw Normal View History

<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>