mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
We don't have a text node in these, so no fragments either. Maintaining a special case for this situation seems much simpler than reworking `contenteditable`s to always have a fragment.
10 lines
254 B
HTML
10 lines
254 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<div contenteditable style="width: 100px; height: 20px"></div>
|
|
<script>
|
|
test(() => {
|
|
document.querySelector("div").focus();
|
|
println(internals.dumpDisplayList());
|
|
});
|
|
</script>
|