1
0
Fork 0
firefox/testing/web-platform/tests/css/css-pseudo/first-letter-text-and-display-change.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
698 B
HTML

<!doctype html>
<title>CSS Test: Change display for the ::first-letter container while replacing text node</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo/#first-letter-pseudo">
<link rel="match" href="../reference/pass_if_letter_uppercase.html">
<style>
#container::first-letter { text-transform: uppercase }
#container.ib { display: inline-block }
</style>
<body>
<p>Test passes if the letter "F" in the words "Filler Text" below is in upper-case.</p>
<div id="container">Test not run</div>
</body>
<script>
container.offsetTop;
container.className = "ib";
container.appendChild(document.createTextNode("filler Text"));
container.firstChild.remove();
</script>