svg-g-no-size-container.html (607B)
1 <!doctype html> 2 <title>CSS Container Queries Test: SVG <g> element not a size query container</title> 3 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#size-container"> 4 <link rel="match" href="svg-g-no-size-container-ref.html"> 5 <style> 6 g { 7 display: block; 8 width: 100px; 9 height: 100px; 10 container-type: size; 11 } 12 13 @supports not (container-type: size) { 14 text { fill: red; } 15 } 16 @container (width = 100px) { 17 text { fill: red; } 18 } 19 </style> 20 <p>You should see the word PASS below and no red.</p> 21 <svg> 22 <g><text x="0" y="20" id="text">PASS</text></g> 23 </svg>