mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
Although most dimensions include the `<legend>` of a `<fieldset>`, when a background is defined for a `<fieldset>` we should clip it during painting as to exclude the background of the `<legend>`.
14 lines
260 B
HTML
14 lines
260 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<style>
|
|
fieldset {
|
|
background: blue;
|
|
}
|
|
</style>
|
|
<fieldset><legend>Legend</legend>Content</fieldset>
|
|
<script>
|
|
test(() => {
|
|
println(internals.dumpDisplayList());
|
|
});
|
|
</script>
|