⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 94006 in webkit


Ignore:
Timestamp:
Aug 29, 2011, 1:06:52 PM (15 years ago)
Author:
commit-queue@webkit.org
Message:

As per HTML specification, default font style of dfn tag should be italic.
https://bugs.webkit.org/show_bug.cgi?id=56670

Patch by Nayan Kumar K <nayankk@motorola.com> on 2011-08-29
Reviewed by Adam Barth.

Source/WebCore:

Test: fast/css/dfn-default-font-style.html

  • css/html.css:

(i, cite, em, var, address, dfn):

LayoutTests:

  • fast/css/dfn-default-font-style-expected.txt: Added.
  • fast/css/dfn-default-font-style.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r94002 r94006  
     12011-08-29  Nayan Kumar K  <nayankk@motorola.com>
     2
     3        As per HTML specification, default font style of dfn tag should be italic.
     4        https://bugs.webkit.org/show_bug.cgi?id=56670
     5
     6        Reviewed by Adam Barth.
     7
     8        * fast/css/dfn-default-font-style-expected.txt: Added.
     9        * fast/css/dfn-default-font-style.html: Added.
     10
    1112011-08-29  Chris Palmer  <palmer@google.com>
    212
  • trunk/Source/WebCore/ChangeLog

    r94005 r94006  
     12011-08-29  Nayan Kumar K  <nayankk@motorola.com>
     2
     3        As per HTML specification, default font style of dfn tag should be italic.
     4        https://bugs.webkit.org/show_bug.cgi?id=56670
     5
     6        Reviewed by Adam Barth.
     7
     8        Test: fast/css/dfn-default-font-style.html
     9
     10        * css/html.css:
     11        (i, cite, em, var, address, dfn):
     12
    1132011-08-29  Patrick Gansterer  <paroga@webkit.org>
    214
  • trunk/Source/WebCore/css/html.css

    r92585 r94006  
    849849}
    850850
    851 i, cite, em, var, address {
     851i, cite, em, var, address, dfn {
    852852    font-style: italic
    853853}
Note: See TracChangeset for help on using the changeset viewer.