Title: [186129] trunk/Source/WebCore
- Revision
- 186129
- Author
- [email protected]
- Date
- 2015-06-30 13:31:10 -0700 (Tue, 30 Jun 2015)
Log Message
Addressing post-review comments in r185756.
* html/RubyTextElement.cpp:
(WebCore::RubyTextElement::createElementRenderer):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (186128 => 186129)
--- trunk/Source/WebCore/ChangeLog 2015-06-30 20:03:28 UTC (rev 186128)
+++ trunk/Source/WebCore/ChangeLog 2015-06-30 20:31:10 UTC (rev 186129)
@@ -1,5 +1,12 @@
2015-06-30 Zalan Bujtas <[email protected]>
+ Addressing post-review comments in r185756.
+
+ * html/RubyTextElement.cpp:
+ (WebCore::RubyTextElement::createElementRenderer):
+
+2015-06-30 Zalan Bujtas <[email protected]>
+
Addressing post-review comments in r185916
* platform/LayoutUnit.h:
Modified: trunk/Source/WebCore/html/RubyTextElement.cpp (186128 => 186129)
--- trunk/Source/WebCore/html/RubyTextElement.cpp 2015-06-30 20:03:28 UTC (rev 186128)
+++ trunk/Source/WebCore/html/RubyTextElement.cpp 2015-06-30 20:31:10 UTC (rev 186129)
@@ -48,7 +48,7 @@
RenderPtr<RenderElement> RubyTextElement::createElementRenderer(Ref<RenderStyle>&& style, const RenderTreePosition& insertionPosition)
{
// RenderRubyText requires its parent to be RenderRubyRun.
- if (isRuby(insertionPosition.parent()) && style.get().display() == BLOCK)
+ if (isRuby(insertionPosition.parent()) && style->display() == BLOCK)
return createRenderer<RenderRubyText>(*this, WTF::move(style));
return HTMLElement::createElementRenderer(WTF::move(style), insertionPosition);
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes