tor-browser

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

foreign_content_011.html (710B)


      1 <!DOCTYPE html>
      2 <html>
      3    <head>
      4        <title>HTML 5 Foreign Content SVG in HTML </title>
      5        <meta description="Test to verify SVG elements are styled using ID Selector" />
      6        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      7 
      8        <style>
      9            #d1
     10            {
     11                fill: green;
     12            }
     13        </style>
     14    </head>
     15 
     16    <body>
     17        <div class="testdata">
     18            <p id="instructions">Test passes if a green square is visible below this line.</p>
     19        </div>
     20        <div id="d1">
     21            <svg width="100px" height="100px">
     22                <rect width="100px" height="100px" />
     23            </svg>
     24        </div>
     25    </body>
     26 </html>