mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
9 lines
276 B
HTML
9 lines
276 B
HTML
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println("Hello");
|
|
document.body.offsetWidth // Force a layout
|
|
println("friends"); // This will append a text child to the output element, and should update the layout tree.
|
|
});
|
|
</script>
|