Changeset 64814 in webkit


Ignore:
Timestamp:
Aug 5, 2010 9:11:02 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-05 François Sausset <François Sausset>

Reviewed by Kenneth Rohde Christiansen.

Make STIX font the default one to render MathML
https://bugs.webkit.org/show_bug.cgi?id=41961

  • css/mathml.css: (math):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64813 r64814  
     12010-08-05  François Sausset  <sausset@gmail.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        Make STIX font the default one to render MathML
     6        https://bugs.webkit.org/show_bug.cgi?id=41961
     7
     8        * css/mathml.css:
     9        (math):
     10
    1112010-08-05  Cosmin Truta  <ctruta@chromium.org>
    212
  • trunk/WebCore/css/mathml.css

    r64753 r64814  
    22
    33math {
    4     font-family: Symbol, "Times New Roman";
     4    font-family: STIXGeneral, Symbol, "Times New Roman", sans-serif;
    55    display: inline-block;
    66    padding: 0px;
     
    174174    vertical-align: -40%;
    175175}
     176
    176177mtr {
    177178    display: table-row;
    178179}
     180
    179181mtd {
    180182    display: table-cell;
     
    189191    text-align: right;
    190192}
     193
    191194mtable[rowalign="top"] mtd, mtable mtr[rowalign="top"] mtd, mtable mtr mtd[rowalign="top"] {
    192195    vertical-align: top;
    193196}
     197
    194198mtable[rowalign="bottom"] mtd, mtable mtr[rowalign="bottom"] mtd, mtable mtr mtd[rowalign="bottom"] {
    195199    vertical-align: bottom;
    196200}
     201
    197202mtable[rowalign="center"] mtd, mtable mtr[rowalign="center"] mtd, mtable mtr mtd[rowalign="center"] {
    198203    vertical-align: middle;
    199204}
     205
    200206mtable[frame="solid"] {
    201207    border: solid thin;
    202208}
     209
    203210mtable[frame="dashed"] {
    204211    border: dashed thin;
    205212}
     213
    206214mtable[rowlines="solid"], mtable[rowlines="dashed"], mtable[columnlines="solid"], mtable[columnlines="dashed"] {
    207215    border-collapse: collapse;
    208216}
     217
    209218mtable[rowlines="solid"] > mtr + mtr {
    210219    border-top: solid thin;
    211220}
     221
    212222mtable[rowlines="dashed"] > mtr + mtr {
    213223    border-top: dashed thin;
    214224}
     225
    215226mtable[columnlines="solid"] > mtr > mtd + mtd {
    216227    border-left: solid thin;
    217228}
     229
    218230mtable[columnlines="dashed"] > mtr > mtd + mtd {
    219231    border-left: dashed thin;
Note: See TracChangeset for help on using the changeset viewer.