1
0
Fork 0
firefox/layout/reftests/forms/fieldset/fieldset-height-resize-1.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

37 lines
633 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Testcase, bug 1576864</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
fieldset {
background: aqua;
color: black;
position: absolute;
top: 20px;
left: 20px;
}
</style>
<script>
window.onload=function(){
document.body.offsetHeight;
document.getElementById("set").style.height = "200px";
}
</script>
</head>
<body>
<fieldset id="set" style="width:200px; height:40px;">
This should be in a square.
</fieldset>
</body>
</html>