1
0
Fork 0
firefox/layout/reftests/pagination/inline-block-frag-offset-2.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

35 lines
567 B
HTML

<!DOCTYPE html>
<html class="reftest-paged">
<head>
<style>
@page {
size: 5in 3in;
margin: 0.5in;
}
* {
margin: 0;
}
.green {
display: inline-block;
width: 1in;
height: 3in;
background-color: green;
transform: translateX(0.5in);
}
.blue {
width: 1in;
height: 1in;
background-color: blue;
transform: translateY(1.5in);
}
</style>
</head>
<body>
<div class="green">
<div class="blue"></div>
</div>
</body>
</html>