HomeSort by relevance Sort by last modified time
    Searched refs:rootStyle (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToLengthConversionData.h 44 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; }
60 void setRootStyle(const RenderStyle* rootStyle) { m_rootStyle = rootStyle; }
CSSToLengthConversionData.cpp 39 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, float zoom, bool computingFontSize)
41 , m_rootStyle(rootStyle)
51 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, bool computingFontSize)
53 , m_rootStyle(rootStyle)
61 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize)
63 , m_rootStyle(rootStyle)
CSSPrimitiveValue.cpp 598 const RenderStyle* rootStyle = conversionData.rootStyle();
617 if (rootStyle)
618 factor = computingFontSize ? rootStyle->fontDescription().specifiedSize() : rootStyle->fontDescription().computedSize();
    [all...]
CSSGradientValue.cpp 69 RenderStyle* rootStyle = renderer->document().documentElement()->renderStyle();
70 CSSToLengthConversionData conversionData(renderer->style(), rootStyle, renderer->view());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp     [all...]
Document.h 792 // Decide which element is to define the viewport's overflow policy. If |rootStyle| is set, use
796 Element* viewportDefiningElement(RenderStyle* rootStyle = 0) const;
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
dom_util.js 204 var rootStyle = document.defaultView.getComputedStyle(root, null);
205 var isRootVisible = !cvox.DomUtil.isInvisibleStyle(rootStyle);
209 var isSubtreeInvisible = cvox.DomUtil.isInvisibleStyle(rootStyle, true);
    [all...]

Completed in 282 milliseconds