chromium/third_party/blink/web_tests/css2.1/t1004-c43-rpl-bbx-00-d-ag.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: Replaced Elements</title>
  <script src="../resources/ahem.js"></script>
  <style type="text/css">
   p { color: navy; }
   div { margin: 1em; }
   img { display: block; margin-bottom: 5px; }
   span { color: blue; font: 15px Ahem; vertical-align: top; background: red; display: block; width: 1em; }
   .b img, .b span { font-size: 4em; height: 1em; }
  </style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" title="10.4 Minimum and maximum widths: 'min-width' and 'max-width'">
  <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" title="10.6.2 Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements">
 </head>
 <body>
  <p> There should be no red anywhere. </p>
  <p> There should be two identical squares after this line: </p>
  <div class="a">
   <img alt="FAIL: Replaced content did not get replaced." src="support/swatch-blue.png">
   <span>X</span>
  </div>
  <p> There should be two identical squares after this line: </p>
  <div class="b">
   <img alt="FAIL: Replaced content did not get replaced." src="support/swatch-blue.png">
   <span>X</span>
  </div>
 </body>
</html>