mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
29 lines
516 B
HTML
29 lines
516 B
HTML
<html>
|
|
<head>
|
|
<title>Test</title>
|
|
<script>
|
|
var x = 0;
|
|
someGlobal = true;
|
|
(function() {
|
|
var x1 = x;
|
|
var x2 = someGlobal;
|
|
})();
|
|
</script>
|
|
<script>
|
|
var x = "hi";
|
|
</script>
|
|
<script>
|
|
(function() {
|
|
var x1 = x;
|
|
var x2 = someGlobal;
|
|
})();
|
|
</script>
|
|
<script>
|
|
function x() {}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<button onclick="(function() { var x1 = x; var x2 = someGlobal; })()">b</button>
|
|
</body>
|
|
</html>
|