Home | History | Annotate | Download | only in rendering

Lines Matching defs:newStyle

1911 void RenderObject::styleWillChange(StyleDifference diff, const RenderStyle* newStyle)
1916 if (newStyle) {
1917 bool visibilityChanged = m_style->visibility() != newStyle->visibility()
1918 || m_style->zIndex() != newStyle->zIndex()
1919 || m_style->hasAutoZIndex() != newStyle->hasAutoZIndex();
1927 if (m_style->visibility() != newStyle->visibility()) {
1929 if (newStyle->visibility() == VISIBLE)
1940 if (m_parent && (newStyle->outlineSize() < m_style->outlineSize() || shouldRepaintForStyleDifference(diff)))
1942 if (isFloating() && (m_style->floating() != newStyle->floating()))
1946 else if (isOutOfFlowPositioned() && (m_style->position() != newStyle->position()))
1952 && (!newStyle->isFloating() && !newStyle->hasOutOfFlowPosition())
1978 bool newStyleSlowScroll = newStyle && !shouldBlitOnFixedBackgroundImage && newStyle->hasFixedBackgroundImage();
1984 if (newStyleSlowScroll && newStyle->hasEntirelyFixedBackground())
2063 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(style(), child->style()->display());
2066 newStyle->inheritColumnPropertiesFrom(style());
2068 newStyle->setColumnSpan(ColumnSpanAll);
2074 newStyle->setPosition(child->style()->position());
2076 child->setStyle(newStyle.release());