Title: [166283] trunk/Source/WebCore
Revision
166283
Author
wei...@apple.com
Date
2014-03-25 21:22:52 -0700 (Tue, 25 Mar 2014)

Log Message

Speculative iOS build fix.

* editing/cocoa/HTMLConverter.mm:
(HTMLConverter::_addAttachmentForElement):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (166282 => 166283)


--- trunk/Source/WebCore/ChangeLog	2014-03-26 04:16:53 UTC (rev 166282)
+++ trunk/Source/WebCore/ChangeLog	2014-03-26 04:22:52 UTC (rev 166283)
@@ -1,3 +1,10 @@
+2014-03-25  Sam Weinig  <s...@webkit.org>
+
+        Speculative iOS build fix.
+
+        * editing/cocoa/HTMLConverter.mm:
+        (HTMLConverter::_addAttachmentForElement):
+
 2014-03-25  Jer Noble  <jer.no...@apple.com>
 
         [MSE] Duplicate 'seeked' events.

Modified: trunk/Source/WebCore/editing/cocoa/HTMLConverter.mm (166282 => 166283)


--- trunk/Source/WebCore/editing/cocoa/HTMLConverter.mm	2014-03-26 04:16:53 UTC (rev 166282)
+++ trunk/Source/WebCore/editing/cocoa/HTMLConverter.mm	2014-03-26 04:22:52 UTC (rev 166283)
@@ -1505,7 +1505,7 @@
 #if PLATFORM(IOS)
         float verticalAlign = 0.0;
         if (element)
-            _caches->floatPropertyValueForNode(core(element), CSSPropertyVerticalAlign, verticalAlign)
+            _caches->floatPropertyValueForNode(*core(element), CSSPropertyVerticalAlign, verticalAlign)
         attachment.get().bounds = CGRectMake(0, (verticalAlign / 100) * element.clientHeight, element.clientWidth, element.clientHeight);
 #endif
         RetainPtr<NSString> string = adoptNS([[NSString alloc] initWithFormat:(needsParagraph ? @"%C\n" : @"%C"), static_cast<unichar>(NSAttachmentCharacter)]);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to