Home
last modified time | relevance | path

Searched refs:newRule (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/css/
DCSSMediaRule.cpp68 RefPtr<CSSRule> newRule = p.parseRule(parentStyleSheet(), rule); in insertRule() local
69 if (!newRule) { in insertRule()
75 if (newRule->isImportRule()) { in insertRule()
87 newRule->setParent(this); in insertRule()
88 unsigned returnedIndex = m_lstCSSRules->insertRule(newRule.get(), index); in insertRule()
DWebKitCSSKeyframesRule.cpp91 RefPtr<CSSRule> newRule = p.parseKeyframeRule(parentStyleSheet(), rule); in insertRule() local
92 if (newRule.get() && newRule.get()->isKeyframeRule()) in insertRule()
93 append(static_cast<WebKitCSSKeyframeRule*>(newRule.get())); in insertRule()
/external/icu4c/test/intltest/
Drndmcoll.cpp155 UnicodeString newRule(rule); // potential bug in Test() local
161 Collator * c = new RuleBasedCollator(newRule,status); in Test()
/external/webkit/WebCore/inspector/front-end/
DInjectedScript.js186 var newRule = stylesheet.cssRules[stylesheet.cssRules.length - 1];
187 newRule.style.cssText = rule.style.cssText;
200 return [InjectedScript._serializeRule(newRule), true];
203 return [InjectedScript._serializeRule(newRule), false];
DStylesSidebarPane.js604 var newRule = WebInspector.CSSStyleDeclaration.parseRule(newRulePayload);
605 self.rule = newRule;
606 …section: self, style: newRule.style, selectorText: newRule.selectorText, parentStyleSheet: newRule
608 self.identifier = newRule.selectorText + ":" + self.subtitleElement.textContent;