chromium/third_party/blink/web_tests/virtual/text-antialias/firstline/capitalize-transform.html

<!doctype HTML>
<style>div::first-line {
    text-transform: uppercase
</style>
:<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<!-- The capitalized form of the text below has only one character, whereas
the lowercase has two. -->
<div lang=el> ά</div>
<div id=target></div>
<script>
test(function() {
  target.innerText += "test";
}, "Should not crash");
</script>