Changeset 73613 in webkit


Ignore:
Timestamp:
Dec 9, 2010 8:40:53 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-12-09 Peter Beverloo <peter@lvp-media.com>

Reviewed by Maciej Stachowiak.

Default CSS definitions for the figure and figcaption elements.

  • fast/html/figcaption-element-expected.txt: Added.
  • fast/html/figcaption-element.html: Added.
  • fast/html/figure-element-expected.txt: Added.
  • fast/html/figure-element.html: Added.
  • fast/html/script-tests/figcaption-element.js: Added.
  • fast/html/script-tests/figure-element.js: Added.

2010-12-09 Peter Beverloo <peter@lvp-media.com>

Reviewed by Maciej Stachowiak.

Default CSS definitions for the figure and figcaption elements.

Tests: fast/html/figcaption-element.html

fast/html/figure-element.html

  • css/html.css: (figure): The default figure-style equals a blockquote (figcaption): A non-sectioning block-level element
Location:
trunk
Files:
6 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r73612 r73613  
     12010-12-09  Peter Beverloo  <peter@lvp-media.com>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        Default CSS definitions for the figure and figcaption elements.
     6
     7        * fast/html/figcaption-element-expected.txt: Added.
     8        * fast/html/figcaption-element.html: Added.
     9        * fast/html/figure-element-expected.txt: Added.
     10        * fast/html/figure-element.html: Added.
     11        * fast/html/script-tests/figcaption-element.js: Added.
     12        * fast/html/script-tests/figure-element.js: Added.
     13
    1142010-12-09  Yael Aharon  <yael.aharon@nokia.com>
    215
  • trunk/WebCore/ChangeLog

    r73607 r73613  
     12010-12-09  Peter Beverloo  <peter@lvp-media.com>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        Default CSS definitions for the figure and figcaption elements.
     6
     7        Tests: fast/html/figcaption-element.html
     8               fast/html/figure-element.html
     9
     10        * css/html.css:
     11        (figure): The default figure-style equals a blockquote
     12        (figcaption): A non-sectioning block-level element
     13
    1142010-12-09  Yury Semikhatsky  <yurys@chromium.org>
    215
  • trunk/WebCore/css/html.css

    r73346 r73613  
    9191}
    9292
     93figcaption {
     94    display: block
     95}
     96
     97figure {
     98    display: block;
     99    margin: 1em 40px 1em 40px
     100}
     101
    93102q {
    94103    display: inline
Note: See TracChangeset for help on using the changeset viewer.