1
0
Fork 0
firefox/layout/reftests/columns/fieldset-columns-004.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

27 lines
513 B
HTML

<!DOCTYPE html>
<html>
<style>
fieldset.outer {
column-count: 1;
transform: translateX(3px);
position: relative;
width: 100px;
height: 50px;
border: 1px solid blue;
margin: 0;
}
div.fixed {
position: fixed;
top: 0;
left: 0;
background: green;
}
</style>
<!-- ABC should be inside the fieldset since 'transform' creates a stacking context. -->
<fieldset class="outer">
<legend>Legend</legend>
<div class="fixed">ABC</div>
</fieldset>
</html>