* Added api to allow scripts once to be loaded in a page * Small nits * Review fixes
11 lines
259 B
HTML
11 lines
259 B
HTML
<html><head><title>load some js code</title></head>
|
|
<body>
|
|
<!--
|
|
Just attempt to load a JavaScript file to test JavaScript blocking.
|
|
-->
|
|
<script src="normal.js"></script>
|
|
<script src="another.js"></script>
|
|
<img src="some.svg" alt="some svg">
|
|
</body>
|
|
</html>
|