JSValue jsCSSStyleDeclarationLength(ExecState* exec, JSValue slotBase, const Identifier&) { JSCSSStyleDeclaration* castedThis = static_cast<JSCSSStyleDeclaration*>(asObject(slotBase)); UNUSED_PARAM(exec); CSSStyleDeclaration* imp = static_cast<CSSStyleDeclaration*>(castedThis->impl()); JSValue result = jsNumber(imp->length()); return result; }
QVariantMap DumpRenderTreeSupportQt::computedStyleIncludingVisitedInfo(const QWebElement& element) { QVariantMap res; WebCore::Element* webElement = element.m_element; if (!webElement) return res; RefPtr<WebCore::CSSComputedStyleDeclaration> computedStyleDeclaration = CSSComputedStyleDeclaration::create(webElement, true); CSSStyleDeclaration* style = static_cast<WebCore::CSSStyleDeclaration*>(computedStyleDeclaration.get()); for (unsigned i = 0; i < style->length(); i++) { QString name = style->item(i); QString value = style->getPropertyValue(name); res[convertToPropertyName(name)] = QVariant(value); } return res; }
JSValue* JSCSSStyleDeclaration::getValueProperty(ExecState* exec, int token) const { switch (token) { case CssTextAttrNum: { CSSStyleDeclaration* imp = static_cast<CSSStyleDeclaration*>(impl()); return jsStringOrNull(exec, imp->cssText()); } case LengthAttrNum: { CSSStyleDeclaration* imp = static_cast<CSSStyleDeclaration*>(impl()); return jsNumber(exec, imp->length()); } case ParentRuleAttrNum: { CSSStyleDeclaration* imp = static_cast<CSSStyleDeclaration*>(impl()); return toJS(exec, WTF::getPtr(imp->parentRule())); } case ConstructorAttrNum: return getConstructor(exec); } return 0; }