Changeset 159035 in webkit


Ignore:
Timestamp:
Nov 10, 2013 5:58:06 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

CSS direction must be reset to ltr on <math> element.
<https://webkit.org/b/124121>

Patch by Frédéric Wang <fred.wang@free.fr> on 2013-11-10
Reviewed by Darin Adler.

Source/WebCore:

Test: mathml/presentation/direction.html

  • css/mathml.css:

(math): set direction: ltr; on the <math> element.

LayoutTests:

  • mathml/presentation/direction-expected.html: Added.
  • mathml/presentation/direction.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r159031 r159035  
     12013-11-10  Frédéric Wang  <fred.wang@free.fr>
     2
     3        CSS direction must be reset to ltr on <math> element.
     4        <https://webkit.org/b/124121>
     5
     6        Reviewed by Darin Adler.
     7
     8        * mathml/presentation/direction-expected.html: Added.
     9        * mathml/presentation/direction.html: Added.
     10
    1112013-11-10  Oliver Hunt  <oliver@apple.com>
    212
  • trunk/Source/WebCore/ChangeLog

    r159034 r159035  
     12013-11-10  Frédéric Wang  <fred.wang@free.fr>
     2
     3        CSS direction must be reset to ltr on <math> element.
     4        <https://webkit.org/b/124121>
     5
     6        Reviewed by Darin Adler.
     7
     8        Test: mathml/presentation/direction.html
     9
     10        * css/mathml.css:
     11        (math): set direction: ltr; on the <math> element.
     12
    1132013-11-10  Sam Weinig  <sam@webkit.org>
    214
  • trunk/Source/WebCore/css/mathml.css

    r157070 r159035  
    44    -webkit-line-box-contain: glyphs replaced;
    55    text-indent: 0;
     6    direction: ltr;
    67}
    78mtext {
Note: See TracChangeset for help on using the changeset viewer.