mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
55 lines
1.4 KiB
HTML
55 lines
1.4 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<title>CSS Test: Float is computed to 'none' when element is absolutely positioned</title>
|
|
|
|
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo" title="9.7 Relationships between 'display', 'position', and 'float'" />
|
|
<link rel="match" href="reference/ref-filled-green-100px-square.xht" />
|
|
|
|
<meta name="flags" content="" />
|
|
<meta name="assert" content="Float is computed to 'none' when 'position: absolute' is specified." />
|
|
|
|
<style type="text/css"><![CDATA[
|
|
div
|
|
{
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
|
|
div#rel-pos-container
|
|
{
|
|
position: relative;
|
|
width: auto;
|
|
}
|
|
|
|
div#abspos-green-overlapping
|
|
{
|
|
background-color: green;
|
|
float: right;
|
|
left: auto;
|
|
position: absolute;
|
|
top: auto;
|
|
}
|
|
|
|
div#static-red-overlapped
|
|
{
|
|
background-color: red;
|
|
position: static;
|
|
}
|
|
]]></style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
|
|
|
<div id="rel-pos-container">
|
|
<div id="abspos-green-overlapping"></div>
|
|
<div id="static-red-overlapped"></div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |