OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:inlineStyle
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ElementData.h
59
const StylePropertySet*
inlineStyle
() const { return m_inlineStyle.get(); }
Element.h
250
const StylePropertySet*
inlineStyle
() const { return elementData() ? elementData()->m_inlineStyle.get() : 0; }
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
StylesSidebarPane.js
369
* @param {?WebInspector.CSSStyleDeclaration}
inlineStyle
372
function inlineCallback(
inlineStyle
, attributesStyle)
374
resultStyles.
inlineStyle
=
inlineStyle
;
546
if (styles.
inlineStyle
&& node.nodeType() === Node.ELEMENT_NODE) {
547
var
inlineStyle
= { selectorText: "element.style", style: styles.
inlineStyle
, isAttribute: true };
548
styleRules.push(
inlineStyle
);
579
if (parentStyles.
inlineStyle
) {
580
if (this._containsInherited(parentStyles.
inlineStyle
)) {
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp
740
const StylePropertySet*
inlineStyle
= element->
inlineStyle
();
741
if (!m_mutableStyle || !
inlineStyle
)
752
if (propertyID == CSSPropertyWebkitTextDecorationsInEffect &&
inlineStyle
->getPropertyCSSValue(textDecorationPropertyForEditing())) {
761
extractedStyle->setProperty(textDecorationPropertyForEditing(),
inlineStyle
->getPropertyValue(textDecorationPropertyForEditing()),
inlineStyle
->propertyIsImportant(textDecorationPropertyForEditing()));
765
if (!
inlineStyle
->getPropertyCSSValue(propertyID))
768
if (propertyID == CSSPropertyUnicodeBidi &&
inlineStyle
->getPropertyCSSValue(CSSPropertyDirection)) {
773
extractedStyle->setProperty(propertyID,
inlineStyle
->getPropertyValue(propertyID),
inlineStyle
->propertyIsImportant(propertyID))
[
all
...]
ReplaceSelectionCommand.cpp
477
const StylePropertySet*
inlineStyle
= element->
inlineStyle
();
478
RefPtr<EditingStyle> newInlineStyle = EditingStyle::create(
inlineStyle
);
479
if (
inlineStyle
) {
509
if (!
inlineStyle
|| newInlineStyle->isEmpty()) {
516
} else if (newInlineStyle->style()->propertyCount() !=
inlineStyle
->propertyCount()) {
770
RefPtr<EditingStyle> style = EditingStyle::create(wrappingStyleSpan->
inlineStyle
());
[
all
...]
ApplyStyleCommand.cpp
79
|| !element->
inlineStyle
() || element->
inlineStyle
()->isEmpty()))
393
RefPtr<MutableStylePropertySet>
inlineStyle
= copyStyleOrCreateEmpty(element->
inlineStyle
());
396
RefPtr<CSSValue> value =
inlineStyle
->getPropertyCSSValue(CSSPropertyFontSize);
402
inlineStyle
->setProperty(CSSPropertyFontSize, cssValuePool().createValue(desiredFontSize, CSSPrimitiveValue::CSS_PX), false);
403
setNodeAttribute(element.get(), styleAttr, AtomicString(
inlineStyle
->asText()));
405
if (
inlineStyle
->isEmpty()) {
519
RefPtr<MutableStylePropertySet>
inlineStyle
= copyStyleOrCreateEmpty(element->
inlineStyle
());
[
all
...]
Completed in 98 milliseconds