Searched refs:hasMarginBeforeQuirk (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.h138 bool hasMarginBeforeQuirk() const { return m_hasMarginBeforeQuirk; } function in class:blink::RenderBlock
141 bool hasMarginBeforeQuirk(const RenderBox* child) const;
H A DRenderBlockFlow.cpp137 bool hasMarginBeforeQuirk() const { return m_hasMarginBeforeQuirk; } function in class:blink::MarginInfo
421 setHasMarginBeforeQuirk(style()->hasMarginBeforeQuirk());
1192 bool topQuirk = hasMarginBeforeQuirk(child);
1283 && (!document().inQuirksMode() || !marginInfo.quirkContainer() || !marginInfo.hasMarginBeforeQuirk())))) {
1442 if ((document().inQuirksMode() && hasMarginBeforeQuirk(child) && (isTableCell() || isBody())) || child->style()->marginBeforeCollapse() == MSEPARATE)
1484 grandchildBlock->setHasMarginBeforeQuirk(grandchildBox->style()->hasMarginBeforeQuirk());
H A DRenderBlock.cpp4149 bool RenderBlock::hasMarginBeforeQuirk(const RenderBox* child) const function in class:blink::RenderBlock
4154 return child->isRenderBlock() ? toRenderBlock(child)->hasMarginBeforeQuirk() : child->style()->hasMarginBeforeQuirk();
4176 return child->isRenderBlock() ? toRenderBlock(child)->hasMarginBeforeQuirk() : child->style()->hasMarginBeforeQuirk();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h386 bool hasMarginBeforeQuirk() const { return marginBefore().quirk(); } function in class:blink::RenderStyle

Completed in 695 milliseconds