Changeset 143554 in webkit


Ignore:
Timestamp:
Feb 20, 2013, 7:22:31 PM (12 years ago)
Author:
krit@webkit.org
Message:

Enable CANVAS_PATH flag
https://bugs.webkit.org/show_bug.cgi?id=108508

Source/WebCore:

Uneviewed attempt to fix Qt minimal build.

  • html/canvas/DOMPath.h:

(WebCore::DOMPath::DOMPath):

LayoutTests:

Reviewed by Simon Fraser.

Unreviewed rebaseline after landing patch.

  • fast/dom/constructed-objects-prototypes-expected.txt:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r143553 r143554  
     12013-02-20  Dirk Schulze  <krit@webkit.org>
     2
     3        Enable CANVAS_PATH flag
     4        https://bugs.webkit.org/show_bug.cgi?id=108508
     5
     6        Reviewed by Simon Fraser.
     7
     8        Unreviewed rebaseline after landing patch.
     9
     10        * fast/dom/constructed-objects-prototypes-expected.txt:
     11
    1122013-02-20  Filip Pizlo  <fpizlo@apple.com>
    213
  • trunk/LayoutTests/fast/dom/constructed-objects-prototypes-expected.txt

    r142205 r143554  
    4646PASS (new inner.PageTransitionEvent()).isInner is true
    4747PASS (new inner.PageTransitionEvent()).constructor.isInner is true
     48PASS (new inner.Path()).isInner is true
     49PASS (new inner.Path()).constructor.isInner is true
    4850PASS (new inner.PopStateEvent()).isInner is true
    4951PASS (new inner.PopStateEvent()).constructor.isInner is true
  • trunk/Source/WebCore/ChangeLog

    r143551 r143554  
     12013-02-20  Dirk Schulze  <krit@webkit.org>
     2
     3        Enable CANVAS_PATH flag
     4        https://bugs.webkit.org/show_bug.cgi?id=108508
     5
     6        Uneviewed attempt to fix Qt minimal build.
     7
     8        * html/canvas/DOMPath.h:
     9        (WebCore::DOMPath::DOMPath):
     10
    111\2013-02-20  Mark Lam  <mark.lam@apple.com>
    212
  • trunk/Source/WebCore/html/canvas/DOMPath.h

    r141624 r143554  
    6363        m_path = path->path();
    6464    }
    65 #if ENABLE(SVG)
    6665    DOMPath(const String& pathData)
    6766        : CanvasPathMethods()
    6867    {
     68#if ENABLE(SVG)
    6969        buildPathFromString(pathData, m_path);
     70#else
     71        UNUSED_PARAM(pathData);
     72#endif
    7073    }
    71 #endif
    7274};
    7375}
Note: See TracChangeset for help on using the changeset viewer.