aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/devtools_tests/sources/test.html
blob: b8e1aa0e334b2727dba8ff3cfd646a29435b3734 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html><meta charset=utf-8>
<script src="classic.js"></script>
<script>
    console.log("inline classic");
    new Worker("worker.js");
</script>
<script type="module">
    import module from "./module.js";
    console.log("inline module");
</script>
<script src="https://servo.org/js/load-table.js"></script>