0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00
elinks/test/js/assert/document.currentScript.html

22 lines
398 B
HTML
Raw Normal View History

2024-10-18 18:17:05 +02:00
<!DOCTYPE html>
<html>
<body>
<script id="first">
console.error('document.currentScript.html');
</script>
<script id="second">
console.assert(document.currentScript.id === 'second', 'second');
</script>
<script id="func">
function myFunction() {
console.assert(document.currentScript.id === 'main', 'main');
}
</script>
<script id="main">
myFunction();
console.exit();
</script>
</body>
</html>