gecko-dev/layout/reftests/first-letter/1404167-4.html

17 строки
307 B
HTML

<!doctype html>
<style>
div::first-letter {
color: green;
}
div::first-line {
color: blue;
}
</style>
<div>My first letter should be green, and the whole line 20px in size</div>
<script>
document.body.offsetTop;
document.querySelector('div').style.fontSize = "20px";
document.body.offsetTop;
</script>