wpt / css / CSS2 / positioning / top-offset-percentage-001.xht

Status: PASS | Duration: 9ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/CSS2/positioning/top-offset-percentage-001.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: Top offset using percentage</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-09-26 -->
        <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-top" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#position-props" />
		<link rel="match" href="top-offset-percentage-001-ref.xht" />

        <meta name="assert" content="Percentage offset values for the 'top' property are based off the height of the containing block." />
        <style type="text/css">
            #div1
            {
                border: solid black;
                height: 200px;
                position: relative;
                width: 100px;
            }
            div div
            {
                height: 50px;
                position: absolute;
                width: 50px;
            }
            #test
            {
                background: green;
                top: 50%;
            }
            #reference
            {
                background: red;
                bottom: 50px;
            }
        </style>
    </head>
    <body>
        <p>Test passes if a filled green square is not in any of the corners of the hollow black rectangle and there is <strong>no red</strong>.</p>
        <div id="div1">
            <div id="reference"></div>
            <div id="test"></div>
        </div>
    </body>
</html>

/css/CSS2/positioning/top-offset-percentage-001-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
  {
  border: black solid medium;
  height: 200px;
  width: 100px;
  }

  img {padding-top: 100px;}
  ]]></style>

 </head>

 <body>

  <p>Test passes if a filled green square is not in any of the corners of the hollow black rectangle and there is <strong>no red</strong>.</p>

  <div><img src="support/1x1-green.png" width="50" height="50" alt="Image download support must be enabled" /></div>

 </body>
</html>