summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/visuren/position-absolute-008a.xht
blob: bf8cb26127035584ff6532f5c5c0db0418c21f71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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>

  <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="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>