Title: [237635] trunk/Source/WebCore
Revision
237635
Author
[email protected]
Date
2018-10-31 07:21:57 -0700 (Wed, 31 Oct 2018)

Log Message

Missing from r237634

* layout/inlineformatting/InlineFormattingState.cpp:
(WebCore::Layout::InlineFormattingState::formattingContext):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (237634 => 237635)


--- trunk/Source/WebCore/ChangeLog	2018-10-31 13:51:56 UTC (rev 237634)
+++ trunk/Source/WebCore/ChangeLog	2018-10-31 14:21:57 UTC (rev 237635)
@@ -1,5 +1,12 @@
 2018-10-31  Zalan Bujtas  <[email protected]>
 
+        Missing from r237634
+
+        * layout/inlineformatting/InlineFormattingState.cpp:
+        (WebCore::Layout::InlineFormattingState::formattingContext):
+
+2018-10-31  Zalan Bujtas  <[email protected]>
+
         [LFC] Do not pass LayoutState& to compute* and layout* functions
         https://bugs.webkit.org/show_bug.cgi?id=191100
 

Modified: trunk/Source/WebCore/layout/inlineformatting/InlineFormattingState.cpp (237634 => 237635)


--- trunk/Source/WebCore/layout/inlineformatting/InlineFormattingState.cpp	2018-10-31 13:51:56 UTC (rev 237634)
+++ trunk/Source/WebCore/layout/inlineformatting/InlineFormattingState.cpp	2018-10-31 14:21:57 UTC (rev 237635)
@@ -47,7 +47,7 @@
 std::unique_ptr<FormattingContext> InlineFormattingState::formattingContext(const Box& formattingContextRoot)
 {
     ASSERT(formattingContextRoot.establishesInlineFormattingContext());
-    return std::make_unique<InlineFormattingContext>(formattingContextRoot, this);
+    return std::make_unique<InlineFormattingContext>(formattingContextRoot, *this);
 }
 
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to