Searched defs:isInTopLayer (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleAdjuster.cpp113 // element to adjustRenderStyle, so we can't just use element->isInTopLayer().
114 static bool isInTopLayer(const Element* element, const RenderStyle* style) function in namespace:blink
116 return (element && element->isInTopLayer()) || (style && style->styleType() == BACKDROP);
164 if (isInTopLayer(e, style) && (style->position() == StaticPosition || style->position() == RelativePosition))
191 || isInTopLayer(e, style)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.h455 bool isInTopLayer() const { return hasElementFlag(IsInTopLayer); } function in class:blink::Element
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayer.cpp2452 bool RenderLayer::isInTopLayer() const function in class:blink::RenderLayer
2455 return node && node->isElementNode() && toElement(node)->isInTopLayer();

Completed in 120 milliseconds