tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

page-name-and-break-003-print.html (605B)


      1 <!DOCTYPE html>
      2 <html>
      3  <title>CSS page name change and break-after: page in a nested element.</title>
      4  <link rel="author" title="Emily McDonough" href="mailto:emcdonough@mozilla.com"/>
      5  <link rel="match" href="page-name-and-break-print-ref.html"/>
      6  <link rel="help" href="https://drafts.csswg.org/css-page-3/#page-breaks"/>
      7  <meta name="assert" content="Ensure CSS page name change and break-after: page at the same point only causes one page break."/>
      8  <body>
      9    <div style="page: a">
     10      <div style="break-after: page">AAA</div>
     11    </div>
     12    <div style="page: b">BBB</div>
     13  </body>
     14 </html>