mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-13 22:52:52 +00:00
This makes https://cling.com/ load, and more of the animated elements on https://shopify.com/ start appearing.
13 lines
312 B
HTML
13 lines
312 B
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>
|