| Index: LayoutTests/fast/text/update-sans-serif-and-recalc-style.html
|
| diff --git a/LayoutTests/fast/text/update-sans-serif-and-recalc-style.html b/LayoutTests/fast/text/update-sans-serif-and-recalc-style.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..13b31370820ea46791c7dcaea5cb4ffe0be48150
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/text/update-sans-serif-and-recalc-style.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +body { font-family: sans-serif; }
|
| +</style>
|
| +<script>
|
| +if (window.internals)
|
| + window.internals.settings.setSansSerifFontFamily("Times", "zyyy");
|
| +
|
| +onload = function() {
|
| + document.body.offsetLeft;
|
| + if (window.internals)
|
| + window.internals.settings.setSansSerifFontFamily("Arial", "zyyy");
|
| +}
|
| +</script>
|
| +<body>
|
| +<div>
|
| +<p>This is a test for checking whether style recalc is correctly triggered or not<a href="#" title="dummy">when</a> updating <a href="#" title="dummy2">sans serif</a> font-family<a href="#" title="dummy3"> settings</a>.
|
| +</p>
|
| +</div>
|
| +</body>
|
| +
|
|
|