Files
codeql/javascript/extractor/tests/html/input/tst.html
2018-11-07 07:48:25 +00:00

18 lines
610 B
HTML

<html>
<head>
<title>Test page</title>
<script src="external.js"></script>
<script>
alert("Hello, world!");
</script>
<script>;</script>
</head>
<body>
<a href="javascript:void(alert('Nope!'))">click here</a>
<div onclick="alert('I said don\'t click!')">don't click here</div>
<a onclick="return false;">can't click this one</a>
</body>
<script type="text/x-handlebars-template">Hello, {{name}}!</script>
<script TYPE="text/x-handlebars-template">HELLO, {{name}}!</script>
<script type=''></script>
</html>