Changeset 58360 in webkit


Ignore:
Timestamp:
Apr 27, 2010 5:38:04 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-27 Jochen Eisinger <jochen@chromium.org>

Reviewed by Shinichiro Hamaji.

Fix gyp build on Mac OS X with enable_svg=0.
https://bugs.webkit.org/show_bug.cgi?id=38192

  • WebCore.gyp/WebCore.gyp: Only generate SVG symbols if enable_svg!=0.
  • css/CSSComputedStyleDeclaration.cpp: (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Add missing unimplemented CSS properties to switch statement.
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r58352 r58360  
     12010-04-27  Jochen Eisinger  <jochen@chromium.org>
     2
     3        Reviewed by Shinichiro Hamaji.
     4
     5        Fix gyp build on Mac OS X with enable_svg=0.
     6        https://bugs.webkit.org/show_bug.cgi?id=38192
     7
     8        * WebCore.gyp/WebCore.gyp: Only generate SVG symbols if enable_svg!=0.
     9        * css/CSSComputedStyleDeclaration.cpp:
     10        (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Add missing unimplemented CSS properties to switch statement.
     11
    1122010-04-27  Kinuko Yasuda  <kinuko@chromium.org>
    213
  • trunk/WebCore/WebCore.gyp/WebCore.gyp

    r57812 r58360  
    289289            '../css/makeprop.pl',
    290290            '../css/CSSPropertyNames.in',
    291             '../css/SVGCSSPropertyNames.in',
    292291          ],
    293292          'outputs': [
     
    301300            '--',
    302301            '<@(_inputs)'
     302          ],
     303          'conditions': [
     304            ['enable_svg!=0', {
     305              'inputs': [
     306                '../css/SVGCSSPropertyNames.in',
     307              ],
     308            }],
    303309          ],
    304310        },
     
    308314            '../css/makevalues.pl',
    309315            '../css/CSSValueKeywords.in',
    310             '../css/SVGCSSValueKeywords.in',
    311316          ],
    312317          'outputs': [
     
    320325            '--',
    321326            '<@(_inputs)'
     327          ],
     328          'conditions': [
     329            ['enable_svg!=0', {
     330              'inputs': [
     331                '../css/SVGCSSValueKeywords.in',
     332              ],
     333            }],
    322334          ],
    323335        },
  • trunk/WebCore/css/CSSComputedStyleDeclaration.cpp

    r58273 r58360  
    14321432
    14331433        /* Other unimplemented properties */
     1434        case CSSPropertyBackgroundRepeatX:
     1435        case CSSPropertyBackgroundRepeatY:
    14341436        case CSSPropertyContent: // FIXME: needs implementation, bug 23668
    14351437        case CSSPropertyCounterIncrement:
     
    14521454        case CSSPropertyWebkitMarqueeSpeed:
    14531455        case CSSPropertyWebkitMask:
     1456        case CSSPropertyWebkitMaskRepeatX:
     1457        case CSSPropertyWebkitMaskRepeatY:
    14541458        case CSSPropertyWebkitPaddingStart:
    14551459        case CSSPropertyWebkitPerspectiveOriginX:
Note: See TracChangeset for help on using the changeset viewer.