span-with-overflowing-text-hidden-ref.html (443B)
1 <!DOCTYPE html> 2 <html> 3 <title>View transitions: span with overflowing text is rendered correctly (ref)</title> 4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> 5 <link rel="author" href="mailto:khushalsagar@chromium.org"> 6 7 <style> 8 div { 9 background: grey; 10 } 11 span { 12 text-shadow: red 2px 5px; 13 visibility: hidden; 14 } 15 16 body { 17 background: pink; 18 } 19 </style> 20 21 <div> 22 <span>This text should render correctly</span> 23 </div>