tor-browser

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

details-page-break-before-2-print.html (613B)


      1 <!DOCTYPE html>
      2 <!-- Any copyright is dedicated to the Public Domain.
      3   - http://creativecommons.org/publicdomain/zero/1.0/ -->
      4 
      5 <html>
      6  <link rel="match" href="details-two-pages-print-ref.html">
      7  <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-details-and-summary-elements">
      8  <style>
      9  summary {
     10    /* Hide the triangle for comparing with div in reftest. */
     11    list-style-type: none;
     12  }
     13  </style>
     14  <body>
     15    <details open>
     16      <summary>Summary<div style="page-break-before: always;"></div></summary>
     17      <p>This is the details.</p>
     18    </details>
     19  </body>
     20 </html>