wpt / css / CSS2 / floats-clear / floats-030.xht

Status: FAIL | Duration: 17ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/CSS2/floats-clear/floats-030.xht

<!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: Position of floated elements in relation to previous elements</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#float-position" title="9.5.1 Positioning the float: the 'float' property"/>
		<link rel="match" href="floats-030-ref.xht" />

        <meta name="flags" content="image" />
        <meta name="assert" content="Outer top of a floating box cannot be higher than the outer top of any block or floated box generated by an element earlier in the source document." />
        <style type="text/css">
            #d1
            {
                border: solid 5px black;
                margin: 10px;
                height: 150px;
            }
            #span1, img
            {
                height: 1in;
                width: 1in;
            }
            #span1
            {
                background-color: orange;
                float: left;
                margin-top: 10px;
                padding-top: 10px;
            }
        </style>
    </head>
    <body>
        <p>Test passes if the orange box is within the black box, below the words "Filler Text 1", and to the left of both the blue box and the words "Filler Text 2".</p>
        <div id="d1">
            <div>Filler Text 1</div>
            <span>Filler Text 2</span>
            <img alt="blue box" src="support/blue15x15.png" />
            <span id="span1"></span>
        </div>
    </body>
</html>

/css/CSS2/floats-clear/floats-030-ref.xht

<!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 Reftest Reference</title>

  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />

  <style type="text/css"><![CDATA[
  div#wrapper
  {
  border: solid 5px black;
  height: 150px;
  margin: 10px;
  }

  img#orange {margin-top: 10px;}

  span, img#blue {vertical-align: 20px;}
  ]]></style>

 </head>

 <body>

  <p>Test passes if the orange box is within the black box, below the words "Filler Text 1", and to the left of both the blue box and the words "Filler Text 2".</p>

  <div id="wrapper">
    <div>Filler Text 1</div>
    <div><img id="orange" src="support/swatch-orange.png" width="96" height="106" alt="Image download support must be enabled" /><span>Filler Text 2</span> <img id="blue" alt="Image download support must be enabled" src="support/blue15x15.png" width="96" height="96" /></div>
  </div>

 </body>
</html>