Changeset 143554 in webkit
- Timestamp:
- Feb 20, 2013, 7:22:31 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r143553 r143554 1 2013-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 1 12 2013-02-20 Filip Pizlo <fpizlo@apple.com> 2 13 -
trunk/LayoutTests/fast/dom/constructed-objects-prototypes-expected.txt
r142205 r143554 46 46 PASS (new inner.PageTransitionEvent()).isInner is true 47 47 PASS (new inner.PageTransitionEvent()).constructor.isInner is true 48 PASS (new inner.Path()).isInner is true 49 PASS (new inner.Path()).constructor.isInner is true 48 50 PASS (new inner.PopStateEvent()).isInner is true 49 51 PASS (new inner.PopStateEvent()).constructor.isInner is true -
trunk/Source/WebCore/ChangeLog
r143551 r143554 1 2013-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 1 11 \2013-02-20 Mark Lam <mark.lam@apple.com> 2 12 -
trunk/Source/WebCore/html/canvas/DOMPath.h
r141624 r143554 63 63 m_path = path->path(); 64 64 } 65 #if ENABLE(SVG)66 65 DOMPath(const String& pathData) 67 66 : CanvasPathMethods() 68 67 { 68 #if ENABLE(SVG) 69 69 buildPathFromString(pathData, m_path); 70 #else 71 UNUSED_PARAM(pathData); 72 #endif 70 73 } 71 #endif72 74 }; 73 75 }
Note:
See TracChangeset
for help on using the changeset viewer.