Home
last modified time | relevance | path

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

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/style/
H A DStyleRareInheritedData.cpp41 , textSecurity(RenderStyle::initialTextSecurity()) in StyleRareInheritedData()
77 , textSecurity(o.textSecurity) in StyleRareInheritedData()
129 && textSecurity == o.textSecurity in operator ==()
H A DStyleRareInheritedData.h74 unsigned textSecurity : 2; // ETextSecurity variable
H A DRenderStyle.cpp399 || rareInheritedData->textSecurity != other->rareInheritedData->textSecurity in diff()
H A DRenderStyle.h781 …ETextSecurity textSecurity() const { return static_cast<ETextSecurity>(rareInheritedData->textSecu… in textSecurity() function
1130 …void setTextSecurity(ETextSecurity aTextSecurity) { SET_VAR(rareInheritedData, textSecurity, aText… in setTextSecurity()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/
H A DRenderText.h120 bool isSecure() const { return style()->textSecurity() != TSNONE; } in isSecure()
H A DRenderText.cpp205 ETextSecurity oldSecurity = oldStyle ? oldStyle->textSecurity() : TSNONE; in styleDidChange()
206 …sResetText || oldTransform != style()->textTransform() || oldSecurity != style()->textSecurity()) { in styleDidChange()
1192 switch (style()->textSecurity()) { in setTextInternal()
1253 if (!m_needsTranscoding || style()->textSecurity() != TSNONE) in textWithoutTranscoding()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/editing/
H A Dvisible_units.cpp95 …recatedNode()->renderer() && start.deprecatedNode()->renderer()->style()->textSecurity() != TSNONE; in previousBoundary()
169 …recatedNode()->renderer() && start.deprecatedNode()->renderer()->style()->textSecurity() != TSNONE; in nextBoundary()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp1343 return primitiveValueCache->createValue(style->textSecurity()); in getPropertyCSSValue()
H A DCSSStyleSelector.cpp5316 HANDLE_INHERIT_AND_INITIAL_AND_PRIMITIVE(textSecurity, TextSecurity) in applyProperty()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/
H A 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.
H A DChangeLog-2007-10-1456050 Disable textSecurity when placeholder is visible.