Searched refs:rootStyle (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSToLengthConversionData.h44 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, const RenderView*, float zoom, bool computingFontSize = false);
45 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, const RenderView*, bool computingFontSize = false);
46 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize = false);
49 const RenderStyle* rootStyle() const { return m_rootStyle; } function in class:blink::CSSToLengthConversionData
60 void setRootStyle(const RenderStyle* rootStyle) { m_rootStyle = rootStyle; } argument
H A DCSSToLengthConversionData.cpp39 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, float zoom, bool computingFontSize) argument
41 , m_rootStyle(rootStyle)
51 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, bool computingFontSize) argument
53 , m_rootStyle(rootStyle)
61 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize) argument
63 , m_rootStyle(rootStyle)
H A DCSSPrimitiveValue.cpp608 const RenderStyle* rootStyle = conversionData.rootStyle(); local
627 if (rootStyle)
628 factor = computingFontSize ? rootStyle->fontDescription().specifiedSize() : rootStyle->fontDescription().computedSize();
H A DCSSGradientValue.cpp70 RenderStyle* rootStyle = renderer->document().documentElement()->renderStyle(); local
71 CSSToLengthConversionData conversionData(renderer->style(), rootStyle, renderer->view());
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Ddom_util.js239 var rootStyle = document.defaultView.getComputedStyle(root, null);
240 var isRootVisible = !cvox.DomUtil.isInvisibleStyle(rootStyle);
244 var isSubtreeInvisible = cvox.DomUtil.isInvisibleStyle(rootStyle, true);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.cpp2438 Element* Document::viewportDefiningElement(RenderStyle* rootStyle) const
2450 if (!rootStyle) {
2451 rootStyle = rootElement->renderStyle();
2452 if (!rootStyle)
2455 if (bodyElement && rootStyle->isOverflowVisible() && isHTMLHtmlElement(*rootElement))
H A DDocument.h771 // Decide which element is to define the viewport's overflow policy. If |rootStyle| is set, use
775 Element* viewportDefiningElement(RenderStyle* rootStyle = 0) const;

Completed in 1296 milliseconds