display-contents-svg-switch-child.html (543B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Display: display:contents on SVG switch child</title> 4 <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org"> 5 <link rel="help" href="https://drafts.csswg.org/css-display/#unbox-svg"> 6 <script src="/resources/testharness.js"></script> 7 <script src="/resources/testharnessreport.js"></script> 8 <svg> 9 <switch> 10 <tspan style="display:contents;color:green">Text</tspan> 11 </switch> 12 </svg> 13 <script> 14 test(() => {}, "Loading this page should not cause a crash."); 15 </script>