1
0
Fork 0
firefox/testing/web-platform/tests/css/css-flexbox/flexbox-basic-iframe-horiz-001-ref.xhtml
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

60 lines
1.3 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
<style>
div.flexbox {
width: 200px;
background: lightgreen;
margin-bottom: 5px;
line-height: 8px;
}
iframe {
width: 10px;
height: 20px;
border: 1px dotted green;
}
</style>
</head>
<body>
<div class="flexbox">
<iframe/>
</div>
<div class="flexbox" style="height: 22px">
some words
<iframe style="float:right"/>
</div>
<div class="flexbox">
<iframe style="width: 122.5px"
/><iframe style="width: 73.5px"/>
</div>
<div class="flexbox">
<iframe style="width: 93px"
/><iframe style="width: 103px"/>
</div>
<div class="flexbox">
<iframe style="width: 114px"
/><iframe style="width: 82px"/>
</div>
<div class="flexbox">
<iframe style="width: 106px"
/><iframe style="width: 90px"/>
</div>
<div class="flexbox">
<iframe style="width: 46px"
/><iframe style="width: 150px"/>
</div>
</body>
</html>