mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
55 lines
1.3 KiB
HTML
55 lines
1.3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<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.htm">
|
|
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="Float is computed to 'none' when 'position: absolute' is specified.">
|
|
|
|
<style type="text/css">
|
|
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> |