tor-browser

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

contain-paint-ignored-cases-ruby-containing-block-001-ref.html (990B)


      1 <!doctype html>
      2 <html lang=en>
      3  <head>
      4    <meta charset=utf-8>
      5    <title>CSS Reftest Reference</title>
      6    <link rel="author" title="Yusuf Sermet" href="mailto:ysermet@mozilla.com">
      7    <style>
      8      rb,
      9      rbc,
     10      rt,
     11      rtc {
     12        background-color: yellow;
     13        font-size: 2em;
     14      }
     15      rbc {
     16        display: ruby-base-container;
     17      }
     18      .contained {
     19        width: 50px;
     20        height: 10px;
     21        background-color: blue;
     22        top: 0;
     23        left: 0;
     24        position: fixed;
     25      }
     26      .wrapper {
     27        display: inline-block;
     28      }
     29    </style>
     30  </head>
     31  <body>
     32    <div class="wrapper"><ruby><rt>&emsp;<div class="contained"></div></rt></ruby></div>
     33    <div class="wrapper"><ruby><rtc>&emsp;<div class="contained"></div></rtc></ruby></div>
     34    <div class="wrapper"><ruby><rb>&emsp;<div class="contained"></div></rb></ruby></div>
     35    <div class="wrapper"><ruby><rbc>&emsp;<div class="contained"></div></rbc></ruby></div>
     36  </body>
     37 </html>