case-insensitive-parent.html (596B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Case-insensitive parent selector matching</title> 5 <link rel="help" href="https://crbug.com/1418575"> 6 <link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org"> 7 <link rel="match" href="case-insensitive-parent-ref.html"> 8 <style>FoReIgNobject span { color: green; }</style> 9 </head> 10 <body> 11 <svg width="500" height="100" xmlns="http://www.w3.org/2000/svg"> 12 <foreignObject width="500" height="100"> 13 <span>Test passes if the text is green.</span> 14 </foreignObject> 15 </svg> 16 </body> 17 </html>