mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-18 23:12:02 +00:00
9 lines
292 B
HTML
9 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>
|