Revision 190c3feba3a42cbc4c32facd7994c190589d889e authored by Liam R. E. Quin on 26 March 2018, 01:04:45 UTC, committed by Liam R. E. Quin on 26 March 2018, 01:04:45 UTC
1 parent 2b4cdad
Raw File
region-fragment-002.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: Region overflow: last region</title>
    <link rel="author" title="Alan Stearns" href="mailto:stearns@adobe.com"/>
    <link rel="help" href="http://www.w3.org/TR/css3-regions/#the-flow-into-property"/>
    <link rel="help" href="http://www.w3.org/TR/css3-regions/#flow-from"/>
    <link rel="match" href="region-fragment-002-ref.xht"/>
    <meta name="flags" content=""/>
    <meta name="assert" content="The region-overflow setting only affects the last region in the chain."/>
    <style type="text/css">
      body{
        line-height: 20px;
      }
      .autoContent{
        flow-into: autoFlow;
      }
      .breakContent{
        line-height: 20px;
        flow-into: breakFlow;
      }
      .first{
        margin-bottom: 10px;
      }
      .second {
        clear: left;
      }
      .region{
        width: 10em;
        height: 30px;
        background-color: silver;
        float: left;
      }
      .auto{
        margin-right: 5px;
        region-fragment: auto;
        flow-from: autoFlow;
      }
      .break{
        region-fragment: break;
        flow-from: breakFlow;
      }
      .error{
        color: red;
      }
    </style>
  </head>
  <body>
    <p>This test passes if the top rectangles are identical and in the lower rectangles "auto 2" runs through the bottom edge of the rectangle and only "break 1" is visible in the bottom right rectangle.</p>
    <div class="auto region first">
      <div class="error">FAIL</div>
    </div>
    <div class="break region first">
      <div class="error">FAIL</div>
    </div>
    <div class="autoContent">
      <div>first</div>
      <div>auto 1</div>
      <div>auto 2</div>
    </div>
    <div class="breakContent">
      <div>first</div>
      <div>break 1</div>
      <div>break 2</div>
    </div>
    <div class="auto region second" style="clear: left;">
      <div class="error">FAIL</div>
    </div>
    <div class="break region">
      <div class="error">FAIL</div>
    </div>
  </body>
</html>
back to top