Searched refs:newRule (Results 1 – 5 of 5) sorted by relevance
68 RefPtr<CSSRule> newRule = p.parseRule(parentStyleSheet(), rule); in insertRule() local69 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()
91 RefPtr<CSSRule> newRule = p.parseKeyframeRule(parentStyleSheet(), rule); in insertRule() local92 if (newRule.get() && newRule.get()->isKeyframeRule()) in insertRule()93 append(static_cast<WebKitCSSKeyframeRule*>(newRule.get())); in insertRule()
155 UnicodeString newRule(rule); // potential bug in Test() local161 Collator * c = new RuleBasedCollator(newRule,status); in Test()
186 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];
604 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;