OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 body { font-family: sans-serif; } | |
4 </style> | |
5 <script> | |
6 if (window.internals) | |
7 window.internals.settings.setSansSerifFontFamily("Times", "zyyy"); | |
8 | |
9 onload = function() { | |
10 document.body.offsetLeft; | |
11 if (window.internals) | |
12 window.internals.settings.setSansSerifFontFamily("Arial", "zyyy"); | |
13 } | |
14 </script> | |
15 <body> | |
16 <div> | |
17 <p>This is a test for checking whether style recalc is correctly triggered or no t<a href="#" title="dummy">when</a> updating <a href="#" title="dummy2">sans ser if</a> font-family<a href="#" title="dummy3"> settings</a>. | |
18 </p> | |
19 </div> | |
20 </body> | |
21 | |
OLD | NEW |