mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-10 02:51:55 +00:00
14 lines
328 B
HTML
14 lines
328 B
HTML
<!DOCTYPE html>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
window.resultThingy = "FAIL";
|
|
</script>
|
|
<script type="module">
|
|
import { renamedValue } from "./js-export-rename-module.js";
|
|
window.resultThingy = "PASS: " + renamedValue;
|
|
</script>
|
|
<script>
|
|
test(() => {
|
|
println(resultThingy);
|
|
});
|
|
</script>
|