span-with-overflowing-text-and-box-decorations-ref.html (540B)
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 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 7 8 <style> 9 span { 10 text-shadow: red -2px -5px; 11 border: 2px solid black; 12 box-shadow: 3px 3px red, -1em 0 .4em olive; 13 } 14 15 body { 16 background: pink; 17 font: 12px/1 Ahem; 18 } 19 </style> 20 21 <span>This text should render correctly</span>