Commit e93d8c95 authored by pdr@chromium.org's avatar pdr@chromium.org

Fix typo: LayoutObject -> pagedFlowThread

No change in behavior, just a minor cleanup.

NOTRY=true
R=leviw

Review URL: https://codereview.chromium.org/1308093002

git-svn-id: svn://svn.chromium.org/blink/trunk@201018 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent e627902b
......@@ -11,10 +11,10 @@ namespace blink {
LayoutPagedFlowThread* LayoutPagedFlowThread::createAnonymous(Document& document, const ComputedStyle& parentStyle)
{
LayoutPagedFlowThread* LayoutObject = new LayoutPagedFlowThread();
LayoutObject->setDocumentForAnonymous(&document);
LayoutObject->setStyle(ComputedStyle::createAnonymousStyleWithDisplay(parentStyle, BLOCK));
return LayoutObject;
LayoutPagedFlowThread* pagedFlowThread = new LayoutPagedFlowThread();
pagedFlowThread->setDocumentForAnonymous(&document);
pagedFlowThread->setStyle(ComputedStyle::createAnonymousStyleWithDisplay(parentStyle, BLOCK));
return pagedFlowThread;
}
int LayoutPagedFlowThread::pageCount()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment