mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
We were incorrectly always appending to the nearest ancestor in the partial update case, even when the node was eligible for replacement.
6 lines
159 B
HTML
6 lines
159 B
HTML
<body><svg><symbol><set id="set"></set></symbol></body>
|
|
<script>
|
|
document.body.offsetWidth;
|
|
set.prepend("x");
|
|
document.body.offsetWidth;
|
|
</script>
|