Searched defs:styleSelector (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DCanvasSurface.cpp191 CSSStyleSelector* CanvasSurface::styleSelector() function in class:WebCore::CanvasSurface
193 return static_cast<HTMLCanvasElement*>(this)->document()->styleSelector();
H A DElement.cpp85 m_pushedStyleSelector = m_parent->document()->styleSelector();
96 ASSERT(m_pushedStyleSelector == m_parent->document()->styleSelector());
97 if (m_pushedStyleSelector != m_parent->document()->styleSelector())
770 if (document()->attached() && document()->styleSelector()->hasSelectorForAttribute(attr->name().localName()))
1084 RefPtr<RenderStyle> newStyle = document()->styleSelector()->styleForElement(this);
1321 CSSStyleSelector* styleSelector = document()->styleSelectorIfExists(); local
1322 if (styleSelector && attached())
1323 styleSelector->pushParent(this);
1331 if (CSSStyleSelector* styleSelector = document()->styleSelectorIfExists())
1332 styleSelector
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGInlineText.cpp238 CSSStyleSelector* styleSelector = document->styleSelector(); local
239 ASSERT(styleSelector);
255 scaledFont.update(styleSelector->fontSelector());
/external/webkit/Source/WebCore/html/
H A DHTMLCanvasElement.cpp431 CSSStyleSelector* HTMLCanvasElement::styleSelector() function in class:WebCore::HTMLCanvasElement
433 return document()->styleSelector();
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp1760 CSSStyleSelector* styleSelector = canvas()->styleSelector(); local
1761 styleSelector->applyPropertyToStyle(CSSPropertyFont, tempDecl->getPropertyCSSValue(CSSPropertyFont).get(), newStyle.get());
1764 state().m_font.update(styleSelector->fontSelector());
1766 styleSelector->fontSelector()->registerForInvalidationCallbacks(&state());
/external/webkit/Source/WebCore/css/
H A DCSSStyleSelector.cpp3160 void RuleSet::addRulesFromSheet(CSSStyleSheet* sheet, const MediaQueryEvaluator& medium, CSSStyleSelector* styleSelector) argument
3167 if (sheet->media() && !medium.eval(sheet->media(), styleSelector))
3178 if (!import->media() || medium.eval(import->media(), styleSelector))
3179 addRulesFromSheet(import->styleSheet(), medium, styleSelector);
3185 if ((!r->media() || medium.eval(r->media(), styleSelector)) && rules) {
3192 } else if (childItem->isFontFaceRule() && styleSelector) {
3195 styleSelector->fontSelector()->addFontFaceRule(fontFaceRule);
3196 } else if (childItem->isKeyframesRule() && styleSelector) {
3198 styleSelector->addKeyframeStyle(static_cast<WebKitCSSKeyframesRule*>(childItem));
3202 } else if (item->isFontFaceRule() && styleSelector) {
[all...]

Completed in 477 milliseconds