diff options
Diffstat (limited to 'layout/reftests/first-letter/1404167-1.html')
-rw-r--r-- | layout/reftests/first-letter/1404167-1.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/first-letter/1404167-1.html b/layout/reftests/first-letter/1404167-1.html new file mode 100644 index 0000000000..2c7b241488 --- /dev/null +++ b/layout/reftests/first-letter/1404167-1.html @@ -0,0 +1,16 @@ +<!doctype html> +<style> +text::first-letter { + font-size: 3em; +} +text { + font-size: 10px; +} +</style> +<svg width="500px" height="50px"> + <text x="0" y="40">The first-letter size should be 45px</text> +</svg> +<script> + document.body.offsetTop; + document.querySelector('text').style.fontSize = "15px"; +</script> |