⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jsoptionconstructor.cpp

📁 linux下开源浏览器WebKit的源码,市面上的很多商用浏览器都是移植自WebKit
💻 CPP
字号:
/* * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB.  If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */#include "config.h"#include "JSOptionConstructor.h"#include "HTMLNames.h"#include "HTMLOptionElement.h"#include "JSHTMLOptionElement.h"#include "ScriptExecutionContext.h"#include "Text.h"using namespace JSC;namespace WebCore {ASSERT_CLASS_FITS_IN_CELL(JSOptionConstructor)const ClassInfo JSOptionConstructor::s_info = { "OptionConstructor", 0, 0, 0 };JSOptionConstructor::JSOptionConstructor(ExecState* exec, ScriptExecutionContext* context)    : DOMObject(JSOptionConstructor::createStructure(exec->lexicalGlobalObject()->objectPrototype())){    ASSERT(context->isDocument());    m_document = static_cast<JSDocument*>(asObject(toJS(exec, static_cast<Document*>(context))));    putDirect(exec->propertyNames().prototype, JSHTMLOptionElementPrototype::self(exec), None);    putDirect(exec->propertyNames().length, jsNumber(exec, 4), ReadOnly|DontDelete|DontEnum);}static JSObject* constructHTMLOptionElement(ExecState* exec, JSObject* constructor, const ArgList& args){    Document* document = static_cast<JSOptionConstructor*>(constructor)->document();    RefPtr<HTMLOptionElement> element = static_pointer_cast<HTMLOptionElement>(document->createElement(HTMLNames::optionTag, false));    ExceptionCode ec = 0;    RefPtr<Text> text = document->createTextNode("");    if (!args.at(exec, 0).isUndefined())        text->setData(args.at(exec, 0).toString(exec), ec);    if (ec == 0)        element->appendChild(text.release(), ec);    if (ec == 0 && !args.at(exec, 1).isUndefined())        element->setValue(args.at(exec, 1).toString(exec));    if (ec == 0)        element->setDefaultSelected(args.at(exec, 2).toBoolean(exec));    if (ec == 0)        element->setSelected(args.at(exec, 3).toBoolean(exec));    if (ec) {        setDOMException(exec, ec);        return 0;    }    return asObject(toJS(exec, element.release()));}ConstructType JSOptionConstructor::getConstructData(ConstructData& constructData){    constructData.native.function = constructHTMLOptionElement;    return ConstructTypeHost;}void JSOptionConstructor::mark(){    DOMObject::mark();    if (!m_document->marked())        m_document->mark();}} // namespace WebCore

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -