popover-and-svg.html (447B)
1 <!DOCTYPE html> 2 <meta charset="utf-8" /> 3 <title>Popover is only effective on HTMLElement, not on svg element</title> 4 <link rel="author" href="mailto:cathiechen@igalia.com"> 5 <link rel=help href="https://html.spec.whatwg.org/#the-popover-attribute"> 6 <link rel="match" href="popover-and-svg-ref.html"> 7 <style> 8 svg { 9 width: 100px; 10 height: 100px; 11 background-color:green; 12 } 13 [popover] { 14 top: 100px; 15 bottom: auto; 16 } 17 </style> 18 <svg popover></svg>