wpt / css / css-page / page-size-001-print.html

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

/css/css-page/page-size-001-print.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-page-3/#page-size-prop">
<link rel="match" href="page-size-001-print-ref.html">
<style>
  @page { size: 300px 400px; }
  body { margin: 0; }
</style>
<div style="break-before:page;">Page 1</div>
<div style="break-before:page;">Page 2</div>
<div style="break-before:page;">Page 3</div>

/css/css-page/page-size-001-print-ref.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<style>
  /* Assuming a default page margin of 0.5in (48px) on each side. */
  @page { size: 300px 400px; }
  body { margin: 0; }
</style>
<div style="height:304px;">Page 1</div>
<div style="height:304px;">Page 2</div>
<div style="height:304px;">Page 3</div>