tor-browser

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

css3-border-image-source.html (958B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3  <head>
      4    <meta charset="utf-8" />
      5    <title>CSS Border Test:border image source property</title>
      6    <link rel="author" title="yanshasha" href="mailto:yanshasha133@gmail.com" />
      7    <link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com" /> <!-- 2013-08-26 -->
      8    <link rel="help" href="http://www.w3.org/TR/css3-background/#border-image-source" />
      9    <link rel="match" href="reference/css3-border-image-source-ref.html" />
     10    <style type="text/css">
     11            div {
     12                background-color: yellow;
     13                width: 100px;
     14                height: 100px;
     15                border: solid 60px red;
     16                border-image-source: url(support/green-60-60.png);
     17            }
     18    </style>
     19  </head>
     20  <body>
     21    <p>
     22      The test passes if there are four green squares at each corner of the yellow square and no red border can be seen.
     23    </p>
     24    <div></div>
     25  </body>
     26 </html>