Home
last modified time | relevance | path

Searched refs:textSecurity (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/rendering/style/
DStyleRareInheritedData.cpp54 , textSecurity(RenderStyle::initialTextSecurity()) in StyleRareInheritedData()
102 , textSecurity(o.textSecurity) in StyleRareInheritedData()
153 && textSecurity == o.textSecurity in operator ==()
DStyleRareInheritedData.h87 unsigned textSecurity : 2; // ETextSecurity variable
DRenderStyle.cpp399 || rareInheritedData->textSecurity != other->rareInheritedData->textSecurity in diff()
DRenderStyle.h780 …ETextSecurity textSecurity() const { return static_cast<ETextSecurity>(rareInheritedData->textSecu… in textSecurity() function
1143 …void setTextSecurity(ETextSecurity aTextSecurity) { SET_VAR(rareInheritedData, textSecurity, aText… in setTextSecurity()
/external/webkit/Source/WebCore/rendering/
DRenderText.cpp173 ETextSecurity oldSecurity = oldStyle ? oldStyle->textSecurity() : TSNONE; in styleDidChange()
174 …sResetText || oldTransform != style()->textTransform() || oldSecurity != style()->textSecurity()) { in styleDidChange()
1139 switch (style()->textSecurity()) { in setTextInternal()
1178 if (!m_needsTranscoding || style()->textSecurity() != TSNONE) in textWithoutTranscoding()
/external/webkit/Source/WebCore/editing/
Dvisible_units.cpp95 …recatedNode()->renderer() && start.deprecatedNode()->renderer()->style()->textSecurity() != TSNONE; in previousBoundary()
169 …recatedNode()->renderer() && start.deprecatedNode()->renderer()->style()->textSecurity() != TSNONE; in nextBoundary()
/external/webkit/Source/WebCore/css/
DCSSComputedStyleDeclaration.cpp1376 return primitiveValueCache->createValue(style->textSecurity()); in getPropertyCSSValue()
DCSSStyleSelector.cpp5562 HANDLE_INHERIT_AND_INITIAL_AND_PRIMITIVE(textSecurity, TextSecurity) in applyProperty()
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3134021 …:previousBoundary): When searching for boundaries in renderers that use the textSecurity property,
36063 (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Added cases for textSecurity.
36083 (WebCore::StyleCSS3InheritedData::StyleCSS3InheritedData): Initialize textSecurity.
36084 (WebCore::RenderStyle::diff): Added case for textSecurity.
36087 (WebCore::RenderStyle::textSecurity): Added.
36091 (WebCore::RenderText::setStyle): Added case for textSecurity.
DChangeLog-2007-10-1456050 Disable textSecurity when placeholder is visible.