You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="When ::first-letter captures a supplementary Unicode character (surrogate pair), text-transform:capitalize on the remaining text must correctly identify the previous character for word boundary detection.">
<style>
.test {
font-size: 36px;
text-transform: capitalize;
}
.test::first-letter {
color: green;
}
</style>
</head>
<body>
<!-- U+1D400 (MATHEMATICAL BOLD CAPITAL A) is a supplementary character (surrogate pair in UTF-16).
"bc" continues the same word, so capitalize should NOT uppercase "b".
"def" is a new word, so capitalize SHOULD uppercase "d". -->