Changeset 103468 in webkit


Ignore:
Timestamp:
Dec 21, 2011 3:58:04 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Patch by Wyatt Carss <wcarss@chromium.org> on 2011-12-21
Reviewed by Ryosuke Niwa.

strong and b should be font-weight: bold, not bolder
https://bugs.webkit.org/show_bug.cgi?id=56400

Source/WebCore:

Test: fast/html/font-weight-bold-for-b-and-strong.html

  • css/html.css:

(strong, b):

LayoutTests:

Changed html.css to specify that strong and b are font-weight: bold,
not font-weight: bolder. Test added to confirm.

  • fast/html/font-weight-bold-for-b-and-strong-expected.png: Added.
  • fast/html/font-weight-bold-for-b-and-strong-expected.txt: Added.
  • fast/html/font-weight-bold-for-b-and-strong.html: Added.
  • WebCore/css/html.css:
Location:
trunk
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r103466 r103468  
     12011-12-21  Wyatt Carss  <wcarss@chromium.org>
     2
     3        Reviewed by Ryosuke Niwa.
     4
     5        strong and b should be font-weight: bold, not bolder
     6        https://bugs.webkit.org/show_bug.cgi?id=56400
     7
     8        Changed html.css to specify that strong and b are font-weight: bold,
     9        not font-weight: bolder. Test added to confirm.
     10
     11        * fast/html/font-weight-bold-for-b-and-strong-expected.png: Added.
     12        * fast/html/font-weight-bold-for-b-and-strong-expected.txt: Added.
     13        * fast/html/font-weight-bold-for-b-and-strong.html: Added.
     14        * WebCore/css/html.css:
     15
    1162011-12-21  Adrienne Walker  <enne@google.com>
    217
  • trunk/Source/WebCore/ChangeLog

    r103465 r103468  
     12011-12-21  Wyatt Carss  <wcarss@chromium.org>
     2
     3        Reviewed by Ryosuke Niwa.
     4
     5        strong and b should be font-weight: bold, not bolder
     6        https://bugs.webkit.org/show_bug.cgi?id=56400
     7
     8        Test: fast/html/font-weight-bold-for-b-and-strong.html
     9
     10        * css/html.css:
     11        (strong, b):
     12
    1132011-12-21  Florin Malita  <fmalita@google.com>
    214
  • trunk/Source/WebCore/css/html.css

    r101742 r103468  
    847847
    848848strong, b {
    849     font-weight: bolder
     849    font-weight: bold
    850850}
    851851
Note: See TracChangeset for help on using the changeset viewer.