CSS21-t1502-no-inherited-font-family.xhtml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>CSS 2.1: Font matching algorithm</title>
  5. <link rel="author" title="L. David Baron" href="https://dbaron.org/" />
  6. <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
  7. <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#algorithm" />
  8. <meta name="assert" content="That the 'UA-dependent default 'font-family'' described in step (5) does not vary based on the ancestor's font-family property." />
  9. </head>
  10. <body>
  11. <div style="font-family: Arial, Helvetica, sans-serif">
  12. <div style="font-family: FontDoesNotExist">
  13. Every line of text in this page should be in the same font.
  14. </div>
  15. </div>
  16. <div style="font-family: Arial, Helvetica">
  17. <div style="font-family: FontDoesNotExist">
  18. Every line of text in this page should be in the same font.
  19. </div>
  20. </div>
  21. <div style="font-family: Arial">
  22. <div style="font-family: FontDoesNotExist">
  23. Every line of text in this page should be in the same font.
  24. </div>
  25. </div>
  26. <div style="font-family: Times New Roman, Times, serif">
  27. <div style="font-family: FontDoesNotExist">
  28. Every line of text in this page should be in the same font.
  29. </div>
  30. </div>
  31. <div style="font-family: Times New Roman, Times">
  32. <div style="font-family: FontDoesNotExist">
  33. Every line of text in this page should be in the same font.
  34. </div>
  35. </div>
  36. <div style="font-family: Times New Roman">
  37. <div style="font-family: FontDoesNotExist">
  38. Every line of text in this page should be in the same font.
  39. </div>
  40. </div>
  41. <div style="font-family: Courier New, Courier, monospace">
  42. <div style="font-family: FontDoesNotExist">
  43. Every line of text in this page should be in the same font.
  44. </div>
  45. </div>
  46. <div style="font-family: Verdana">
  47. <div style="font-family: FontDoesNotExist">
  48. Every line of text in this page should be in the same font.
  49. </div>
  50. </div>
  51. </body>
  52. </html>