Title: [226122] trunk/Source/WebCore
Revision
226122
Author
[email protected]
Date
2017-12-19 09:03:48 -0800 (Tue, 19 Dec 2017)

Log Message

Unreviewed, try to fix the Windows build after r226097.

* editing/markup.cpp:
(WebCore::StyledMarkupAccumulator::appendCustomAttributes):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (226121 => 226122)


--- trunk/Source/WebCore/ChangeLog	2017-12-19 15:43:45 UTC (rev 226121)
+++ trunk/Source/WebCore/ChangeLog	2017-12-19 17:03:48 UTC (rev 226122)
@@ -1,3 +1,10 @@
+2017-12-19  Wenson Hsieh  <[email protected]>
+
+        Unreviewed, try to fix the Windows build after r226097.
+
+        * editing/markup.cpp:
+        (WebCore::StyledMarkupAccumulator::appendCustomAttributes):
+
 2017-12-18  Andy Estes  <[email protected]>
 
         [Apple Pay] Only include phonetic name properties in ApplePayPaymentContact when version >= 3

Modified: trunk/Source/WebCore/editing/markup.cpp (226121 => 226122)


--- trunk/Source/WebCore/editing/markup.cpp	2017-12-19 15:43:45 UTC (rev 226121)
+++ trunk/Source/WebCore/editing/markup.cpp	2017-12-19 17:03:48 UTC (rev 226122)
@@ -382,7 +382,7 @@
         // These attributes are only intended for File deserialization, and are removed from the generated attachment
         // element after we've deserialized and set its backing File.
         appendAttribute(out, element, { webkitattachmentpathAttr, file->path() }, namespaces);
-        appendAttribute(out, element, { webkitattachmentbloburlAttr, { file->url() }}, namespaces);
+        appendAttribute(out, element, { webkitattachmentbloburlAttr, file->url().string() }, namespaces);
     }
 #else
     UNUSED_PARAM(out);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to