OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:combinedtext
(Results
1 - 2
of
2
) sorted by null
/external/webkit/LayoutTests/dom/xhtml/level3/core/
textwholetext03.js
93
var
combinedText
;
105
combinedText
= text1.wholeText;
107
assertEquals("textwholetext03","Text I Text II",
combinedText
);
/external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp
524
RenderCombineText*
combinedText
= styleToUse->hasTextCombine() && textRenderer()->isCombineText() && toRenderCombineText(textRenderer())->isCombined() ? toRenderCombineText(textRenderer()) : 0;
526
bool shouldRotate = !isHorizontal() && !
combinedText
;
539
if (
combinedText
)
540
combinedText
->adjustTextOrigin(textOrigin, boxRect);
643
if (!
combinedText
)
646
combinedText
->charactersToRender(m_start, characters, length);
689
TextRun& emphasisMarkTextRun =
combinedText
? objectReplacementCharacterTextRun : textRun;
690
FloatPoint emphasisMarkTextOrigin =
combinedText
? FloatPoint(boxOrigin.x() + boxRect.width() / 2, boxOrigin.y() + font.fontMetrics().ascent()) : textOrigin;
691
if (
combinedText
)
696
paintTextWithShadows(context,
combinedText
? combinedText->originalFont() : font, emphasisMarkTextRun, emphasisMark, emphasisMarkOffset, 0, l (…)
[
all
...]
Completed in 157 milliseconds