blob: a14f1ead63295ea1c3b1aebeb50a88c44695ee9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="resources/js-test-pre.js"></script>
</head>
<body>
<script>
debug('Should see two console messages, the first a string, and the second a number.');
window.console.log('I am a string');
window.console.log(42);
</script>
<script src="resources/js-test-post.js"></script>
</body>
</html>
|