1
0
Fork 0
firefox/testing/web-platform/tests/compat/webkit-box-rtl-flex.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

26 lines
488 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1034461">
<link rel="match" href="webkit-box-rtl-flex-ref.html">
<style>
#webkitbox {
width: 500px;
display: -webkit-box;
direction: rtl;
}
#redbox {
background: red;
-webkit-box-flex: 1;
}
#greenbox {
background: green;
-webkit-box-flex: 1;
}
</style>
<p>There should be a green box followed by a red box, both on the same line.
<div id="webkitbox">
<div id="redbox">A</div>
<div id="greenbox">B</div>
</div>