mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
11 lines
345 B
HTML
11 lines
345 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<svg><symbol id="foo"></symbol><use href="#foo"></use></svg>
|
|
<script>
|
|
test(() => {
|
|
document.body.offsetWidth; // force layout
|
|
foo.setAttribute("id", "bar");
|
|
document.body.offsetWidth; // force layout
|
|
println("PASS (didn't fall apart)");
|
|
});
|
|
</script>
|