grid-container-ignores-first-letter-002.html (691B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Grid Layout Test: '::first-letter' is ignored in button grid containers</title> 4 <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org"> 5 <link rel="help" href="http://www.w3.org/TR/css-grid-1/#grid-containers"> 6 <link rel="help" href="http://www.w3.org/TR/css3-selectors/#first-letter"> 7 <link rel="match" href="grid-container-ignores-first-letter-002-ref.html"> 8 <style> 9 /* The combination of button, grid, nested inlines, and ::first-letter crashes Blink */ 10 button { display: grid } 11 button::first-letter { color: red } 12 </style> 13 <button> 14 <span> 15 <span>First letter should not be red</span> 16 </span> 17 </button>