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

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ElementResolveContext.cpp 52 RenderStyle* documentStyle = document.renderStyle();
53 m_rootElementStyle = documentElement && element != documentElement ? documentElement->renderStyle() : documentStyle;
55 m_rootElementStyle = documentStyle;
ViewportStyleResolver.cpp 182 RenderStyle* documentStyle = m_document->renderStyle();
185 bool documentStyleHasViewportUnits = documentStyle->hasViewportUnits();
186 documentStyle->setHasViewportUnits(false);
192 Length result = primitiveValue->convertToLength<AnyConversion>(CSSToLengthConversionData(documentStyle, documentStyle, width, height, 1.0f));
193 if (documentStyle->hasViewportUnits())
195 documentStyle->setHasViewportUnits(documentStyleHasViewportUnits);
FontBuilder.cpp 463 void FontBuilder::createFontForDocument(PassRefPtrWillBeRawPtr<FontSelector> fontSelector, RenderStyle* documentStyle)
466 fontDescription.setLocale(documentStyle->locale());
467 fontDescription.setScript(localeToScriptCodeForFontSelection(documentStyle->locale()));
472 updateComputedSize(fontDescription, documentStyle);
476 getFontAndGlyphOrientation(documentStyle, fontOrientation, glyphOrientation);
479 documentStyle->setFontDescription(fontDescription);
480 documentStyle->font().update(fontSelector);
StyleResolver.cpp 508 RefPtr<RenderStyle> documentStyle = RenderStyle::create();
509 documentStyle->setDisplay(BLOCK);
510 documentStyle->setRTLOrdering(document.visuallyOrdered() ? VisualOrder : LogicalOrder);
511 documentStyle->setZoom(frame && !document.printing() ? frame->pageZoomFactor() : 1);
512 documentStyle->setLocale(document.contentLanguage());
513 documentStyle->setZIndex(0);
514 documentStyle->setUserModify(document.inDesignMode() ? READ_WRITE : READ_ONLY);
516 document.setupFontBuilder(documentStyle.get());
518 return documentStyle.release();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp     [all...]
Document.h 454 void setupFontBuilder(RenderStyle* documentStyle);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.cpp 695 RefPtr<RenderStyle> documentStyle = StyleResolver::styleForDocument(*frame->document());

Completed in 399 milliseconds