tor-browser

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

Text_with_SVG_background.html (750B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>mix-blend-mode with simple SVG graphical elements API Test: Text with SVG background</title>
      5    <link rel="author" title="windtale" href="mailto:windtale@163.com">
      6    <link rel="help" href="http://www.w3.org/TR/compositing-1/#mix-blend-mode">
      7    <meta name="flags" content="svg">
      8    <meta name="assert" content="Text with SVG background">
      9    <style type="text/css">
     10        #lblTxt {
     11 		mix-blend-mode: darken;
     12        }
     13        #svgMain {
     14            top: 100px;
     15            left: 100px;
     16            width: 200px;
     17            height: 200px;
     18 		background: blue;
     19        }
     20    </style>
     21 
     22 </head>
     23 <body>
     24 
     25 <svg id="svgMain">
     26 <text id="lblTxt" y="55">Text with SVG background</text>
     27 </svg>
     28 
     29 </body>
     30 </html>