JSValue jsHTMLTableCellElementWidth(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSHTMLTableCellElement* castedThis = static_cast<JSHTMLTableCellElement*>(asObject(slot.slotBase())); UNUSED_PARAM(exec); HTMLTableCellElement* imp = static_cast<HTMLTableCellElement*>(castedThis->impl()); return jsString(exec, imp->width()); }
JSValue jsHTMLTableCellElementWidth(ExecState* exec, JSValue slotBase, const Identifier&) { JSHTMLTableCellElement* castedThis = static_cast<JSHTMLTableCellElement*>(asObject(slotBase)); UNUSED_PARAM(exec); HTMLTableCellElement* imp = static_cast<HTMLTableCellElement*>(castedThis->impl()); JSValue result = jsString(exec, imp->width()); return result; }
JSValue jsHTMLTableCellElementNoWrap(ExecState* exec, JSValue slotBase, const Identifier&) { JSHTMLTableCellElement* castedThis = static_cast<JSHTMLTableCellElement*>(asObject(slotBase)); UNUSED_PARAM(exec); HTMLTableCellElement* imp = static_cast<HTMLTableCellElement*>(castedThis->impl()); JSValue result = jsBoolean(imp->noWrap()); return result; }
JSValue jsHTMLTableCellElementVAlign(ExecState* exec, JSValue slotBase, const Identifier&) { JSHTMLTableCellElement* castedThis = static_cast<JSHTMLTableCellElement*>(asObject(slotBase)); UNUSED_PARAM(exec); HTMLTableCellElement* imp = static_cast<HTMLTableCellElement*>(castedThis->impl()); JSValue result = jsString(exec, imp->getAttribute(WebCore::HTMLNames::valignAttr)); return result; }
void setJSHTMLTableCellElementWidth(ExecState* exec, JSObject* thisObject, JSValue value) { JSHTMLTableCellElement* castedThisObj = static_cast<JSHTMLTableCellElement*>(thisObject); HTMLTableCellElement* imp = static_cast<HTMLTableCellElement*>(castedThisObj->impl()); imp->setWidth(valueToStringWithNullCheck(exec, value)); }
void setJSHTMLTableCellElementRowSpan(ExecState* exec, JSObject* thisObject, JSValue value) { JSHTMLTableCellElement* castedThisObj = static_cast<JSHTMLTableCellElement*>(thisObject); HTMLTableCellElement* imp = static_cast<HTMLTableCellElement*>(castedThisObj->impl()); imp->setRowSpan(value.toInt32(exec)); }
void setJSHTMLTableCellElementNoWrap(ExecState* exec, JSObject* thisObject, JSValue value) { JSHTMLTableCellElement* castedThisObj = static_cast<JSHTMLTableCellElement*>(thisObject); HTMLTableCellElement* imp = static_cast<HTMLTableCellElement*>(castedThisObj->impl()); imp->setNoWrap(value.toBoolean(exec)); }
void setJSHTMLTableCellElementWidth(ExecState* exec, JSObject* thisObject, JSValue value) { JSHTMLTableCellElement* castedThis = static_cast<JSHTMLTableCellElement*>(thisObject); HTMLTableCellElement* imp = static_cast<HTMLTableCellElement*>(castedThis->impl()); imp->setAttribute(WebCore::HTMLNames::widthAttr, valueToStringWithNullCheck(exec, value)); }
void setJSHTMLTableCellElementNoWrap(ExecState* exec, JSObject* thisObject, JSValue value) { JSHTMLTableCellElement* castedThis = static_cast<JSHTMLTableCellElement*>(thisObject); HTMLTableCellElement* imp = static_cast<HTMLTableCellElement*>(castedThis->impl()); imp->setBooleanAttribute(WebCore::HTMLNames::nowrapAttr, value.toBoolean(exec)); }