tor-browser

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

contain-style-breaks-001-ref.html (565B)


      1 <!doctype html>
      2 <html lang=en>
      3  <meta charset=utf-8>
      4  <title>CSS-contain test reference</title>
      5  <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
      6 <style>
      7 article {
      8  columns: 2 1ch;
      9  column-gap: 0;
     10  float: left;
     11  font-family: monospace;
     12  margin-right: 3em;
     13 }
     14 div {
     15  page-break-inside: avoid;
     16  break-inside: avoid;
     17 }
     18 </style>
     19 
     20 <p>Test passes if there are two identical blocks “A” letters below.
     21 <article>
     22  <div>
     23  A<br>
     24  A<br>
     25  A<br>
     26  A
     27  <div>
     28 </article>
     29 <article>
     30  <div>
     31  A<br>
     32  A<br>
     33  A<br>
     34  A
     35  <div>
     36 </article>