Searched refs:documentStyle (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DElementResolveContext.cpp45 RenderStyle* documentStyle = document.renderStyle(); local
46 m_rootElementStyle = documentElement && element != documentElement ? documentElement->renderStyle() : documentStyle;
48 m_rootElementStyle = documentStyle;
H A DFontBuilder.cpp640 void FontBuilder::createFontForDocument(PassRefPtr<FontSelector> fontSelector, RenderStyle* documentStyle) argument
643 fontDescription.setScript(localeToScriptCodeForFontSelection(documentStyle->locale()));
655 fontDescription.setComputedSize(getComputedSizeFromSpecifiedSize(fontDescription, documentStyle->effectiveZoom(), size));
662 getFontAndGlyphOrientation(documentStyle, fontOrientation, glyphOrientation);
665 documentStyle->setFontDescription(fontDescription);
666 documentStyle->font().update(fontSelector);
H A DStyleResolver.cpp593 RefPtr<RenderStyle> documentStyle = RenderStyle::create(); local
598 documentStyle->inheritFrom(iframeStyle);
602 documentStyle->setDisplay(BLOCK);
604 documentStyle->setRTLOrdering(document.visuallyOrdered() ? VisualOrder : LogicalOrder);
605 documentStyle->setZoom(frame && !document.printing() ? frame->pageZoomFactor() : 1);
606 documentStyle->setLocale(document.contentLanguage());
609 documentStyle->setUserModify(document.inDesignMode() ? READ_WRITE : READ_ONLY);
611 document.setStyleDependentState(documentStyle.get());
612 return documentStyle.release();
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLLinkElement.cpp592 RefPtr<RenderStyle> documentStyle = StyleResolver::styleForDocument(document()); local
594 MediaQueryEvaluator evaluator(frame->view()->mediaType(), frame, documentStyle.get());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.cpp1559 void Document::setStyleDependentState(RenderStyle* documentStyle) argument
1563 Pagination::setStylesForPaginationMode(pagination.mode, documentStyle);
1564 documentStyle->setColumnGap(pagination.gap);
1566 renderView()->updateColumnInfoFromStyle(documentStyle);
1574 fontBuilder.initForStyleResolve(*this, documentStyle, isSVGDocument());
1576 fontBuilder.createFontForDocument(selector, documentStyle);
1602 RefPtr<RenderStyle> documentStyle = renderView()->style(); local
1603 if (documentStyle->writingMode() != rootWritingMode || documentStyle->direction() != rootDirection) {
1604 RefPtr<RenderStyle> newStyle = RenderStyle::clone(documentStyle
1677 RefPtr<RenderStyle> documentStyle = StyleResolver::styleForDocument(*this, m_styleEngine->fontSelector()); local
[all...]
H A DDocument.h456 void setStyleDependentState(RenderStyle* documentStyle);

Completed in 207 milliseconds