wpt / css / css-page / page-margin-007-print.html

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

/css/css-page/page-margin-007-print.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-page-3/#at-page-rule">
<link rel="match" href="page-margin-007-print-ref.html">
<style>
  @page {
    size: 400px 200px;
    margin: 0;
  }
  @page :first {
    margin-left: 50px;
  }
  @page :left {
    margin: 50px;
  }
  :root {
    print-color-adjust: exact;
  }
  body {
    margin: 0;
  }
  .container {
    width: 300px;
    background: gray;
  }
  .container > div {
    box-sizing: border-box;
    border: solid;
    width: 250px;
  }
  .left {
    height: 100px;
    background: hotpink;
  }
  .left::before {
    content: "Margins on every side.";
  }
  .right {
    height: 200px;
    background: cyan;
  }
  .right::before {
    content: "No page margins.";
  }
  .first {
    height: 200px;
    background: yellow;
  }
</style>

<div class="container">
  <div class="first">
    Every page should have a colored box as tall as the page area (gray area).<br>
    This particular page should have a left-margin.<br>
    There should be 7 pages.
  </div>
  <div class="left"></div>
  <div class="right"></div>
  <div class="left"></div>
</div>
<div class="container" style="position:absolute;">
  <div class="right"></div>
  <div class="left"></div>
  <div class="right"></div>
</div>

/css/css-page/page-margin-007-print-ref.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<style>
  @page {
    size: 400px 200px;
    margin: 0;
  }
  :root {
    print-color-adjust: exact;
  }
  body {
    margin: 0;
  }
  .pagebox {
    display: flow-root;
  }
  .pagebox > div {
    width: 300px;
    background: gray;
  }
  .pagebox > div > div {
    box-sizing: border-box;
    border: solid;
    width: 250px;
    height: 100%;
  }
  .left {
    margin: 50px;
    height: 100px;
  }
  .left > div {
    background: hotpink;
  }
  .left > div::before {
    content: "Margins on every side.";
  }
  .right {
    height: 200px;
  }
  .right > div {
    background: cyan;
  }
  .right > div::before {
    content: "No page margins.";
  }
  .first {
    height: 200px;
    margin-left: 50px;
  }
  .first > div {
    background: yellow;
  }
</style>

<div class="pagebox">
  <div class="first">
    <div>
      Every page should have a colored box as tall as the page area (gray area).<br>
      This particular page should have a left-margin.<br>
      There should be 7 pages.
    </div>
  </div>
</div>
<div class="pagebox">
  <div class="left"><div></div></div>
</div>
<div class="pagebox">
  <div class="right"><div></div></div>
</div>
<div class="pagebox">
  <div class="left"><div></div></div>
</div>
<div class="pagebox">
  <div class="right"><div></div></div>
</div>
<div class="pagebox">
  <div class="left"><div></div></div>
</div>
<div class="pagebox">
  <div class="right"><div></div></div>
</div>