Searched defs:selectionStyle (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DTextPainter.cpp152 TextPainter::Style selectionStyle = textStyle; local
156 selectionStyle.fillColor = renderer.selectionForegroundColor();
157 selectionStyle.emphasisMarkColor = renderer.selectionEmphasisMarkColor();
161 selectionStyle.strokeColor = forceBlackText ? Color::black : renderer.resolveColor(pseudoStyle, CSSPropertyWebkitTextStrokeColor);
162 selectionStyle.strokeWidth = pseudoStyle->textStrokeWidth();
163 selectionStyle.shadow = forceBlackText ? 0 : pseudoStyle->textShadow();
168 selectionStyle.shadow = 0;
171 return selectionStyle;
H A DInlineTextBox.cpp452 TextPainter::Style selectionStyle = TextPainter::selectionPaintingStyle(renderer(), haveSelection, paintInfo.forceBlackText(), isPrinting, textStyle); local
454 bool paintSelectedTextSeparately = !paintSelectedTextOnly && textStyle != selectionStyle;
473 paintSelection(context, boxOrigin, styleToUse, font, selectionStyle.fillColor);
542 textPainter.paint(selectionStart, selectionEnd, length, selectionStyle);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGInlineTextBox.cpp273 RenderStyle* selectionStyle = style; local
275 selectionStyle = parentRenderer.getCachedPseudoStyle(SELECTION);
276 if (selectionStyle) {
277 const SVGRenderStyle& svgSelectionStyle = selectionStyle->svgStyle();
284 selectionStyle = style;
317 paintText(paintInfo.context, style, selectionStyle, fragment,
324 paintText(paintInfo.context, style, selectionStyle, fragment,
613 RenderStyle* selectionStyle, const SVGTextFragment& fragment,
617 ASSERT(selectionStyle);
638 if (style != selectionStyle) {
612 paintText(GraphicsContext* context, RenderStyle* style, RenderStyle* selectionStyle, const SVGTextFragment& fragment, RenderSVGResourceModeFlags resourceMode, bool hasSelection, bool paintSelectedTextOnly) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditor.cpp641 RefPtrWillBeRawPtr<EditingStyle> selectionStyle = EditingStyle::styleAtSelectionStart(frame().selection().selection(), local
643 if (!selectionStyle || !selectionStyle->style())
647 return String::number(selectionStyle->legacyFontSize(frame().document()));
648 return selectionStyle->style()->getPropertyValue(propertyID);
H A DEditorCommand.cpp140 RefPtrWillBeRawPtr<EditingStyle> selectionStyle = EditingStyle::styleAtSelectionStart(frame.selection().selection()); local
141 if (!selectionStyle || !selectionStyle->style())
144 RefPtrWillBeRawPtr<CSSValue> selectedCSSValue = selectionStyle->style()->getPropertyCSSValue(propertyID);

Completed in 132 milliseconds