Searched defs:selectorText (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPageRule.cpp54 String CSSPageRule::selectorText() const function in class:WebCore::CSSPageRule
60 String pageSpecification = selector->selectorText();
69 void CSSPageRule::setSelectorText(const String& selectorText) argument
73 parser.parseSelector(selectorText, selectorList);
85 result.append(selectorText());
H A DCSSStyleRule.cpp73 builder.append(selector->selectorText());
78 String CSSStyleRule::selectorText() const function in class:WebCore::CSSStyleRule
92 void CSSStyleRule::setSelectorText(const String& selectorText) argument
96 p.parseSelector(selectorText, selectorList);
113 result.append(selectorText());
H A DCSSSelector.cpp604 String CSSSelector::selectorText(const String& rightSide) const function in class:WebCore::CSSSelector
633 str.append(cs->selectorList()->first()->selectorText());
649 str.append(subSelector->selectorText());
660 str.append(subSelector->selectorText());
680 return cs->tagHistory()->selectorText() + str.toString() + rightSide;
733 return tagHistory->selectorText("::-webkit-distributed(" + str.toString() + rightSide + ")");
734 return tagHistory->selectorText(" " + str.toString() + rightSide);
737 return tagHistory->selectorText("::-webkit-distributed(> " + str.toString() + rightSide + ")");
738 return tagHistory->selectorText(" > " + str.toString() + rightSide);
740 return tagHistory->selectorText("
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DStylesSidebarPane.js453 styleRules.push({ style: rule.style, selectorText: rule.selectorText, media: rule.media, sourceURL: rule.resourceURL(), rule: rule, editable: !!(rule.style && rule.style.id) });
497 attrStyle.selectorText = node.nodeNameInCorrectCase() + "[" + WebInspector.UIString("Attributes Style") + "]";
501 styleRules.push({ computedStyle: true, selectorText: "", style: nodeComputedStyle, editable: false });
505 var inlineStyle = { selectorText: "element.style", style: styles.inlineStyle, isAttribute: true };
520 styleRules.push({ style: rule.style, selectorText: rule.selectorText, media: rule.media, sourceURL: rule.resourceURL(), rule: rule, editable: !!(rule.style && rule.style.id) });
541 var inlineStyle = { selectorText: WebInspector.UIString("Style Attribute"), style: parentStyles.inlineStyle, isAttribute: true, isInherited: true, parentNode: parentNode };
562 styleRules.push({ style: rule.style, selectorText: rule.selectorText, medi
[all...]

Completed in 118 milliseconds