mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
53 lines
1.3 KiB
HTML
53 lines
1.3 KiB
HTML
<!--
|
|
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> |