mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
10 lines
292 B
HTML
10 lines
292 B
HTML
<!DOCTYPE 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>
|