foreign_content_013.html (730B)
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 CLASS Selector" /> 6 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 7 8 <style> 9 .svg1 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 class="svg1" width="100px" height="100px"> 22 <rect width="100px" height="100px"/> 23 </svg> 24 </div> 25 </body> 26 </html>