HomeSort by relevance Sort by last modified time
    Searched full: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 608 const RenderStyle* rootStyle = conversionData.rootStyle();
627 if (rootStyle)
628 factor = computingFontSize ? rootStyle->fontDescription().specifiedSize() : rootStyle->fontDescription().computedSize();
    [all...]
CSSGradientValue.cpp 70 RenderStyle* rootStyle = renderer->document().documentElement()->renderStyle();
71 CSSToLengthConversionData conversionData(renderer->style(), rootStyle, renderer->view());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.h 771 // Decide which element is to define the viewport's overflow policy. If |rootStyle| is set, use
775 Element* viewportDefiningElement(RenderStyle* rootStyle = 0) const;
    [all...]
Document.cpp     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
dom_util.js 239 var rootStyle = document.defaultView.getComputedStyle(root, null);
240 var isRootVisible = !cvox.DomUtil.isInvisibleStyle(rootStyle);
244 var isSubtreeInvisible = cvox.DomUtil.isInvisibleStyle(rootStyle, true);
    [all...]

Completed in 625 milliseconds