1/*
2 This file is part of the WebKit open source project.
3 This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19*/
20
21#include "config.h"
22#include "JSHTMLParagraphElement.h"
23
24#include "CustomElementReactionQueue.h"
25#include "HTMLNames.h"
26#include "JSDOMAttribute.h"
27#include "JSDOMBinding.h"
28#include "JSDOMConstructorNotConstructable.h"
29#include "JSDOMConvertStrings.h"
30#include "JSDOMExceptionHandling.h"
31#include "JSDOMWrapperCache.h"
32#include "ScriptExecutionContext.h"
33#include <JavaScriptCore/HeapSnapshotBuilder.h>
34#include <JavaScriptCore/JSCInlines.h>
35#include <wtf/GetPtr.h>
36#include <wtf/PointerPreparations.h>
37#include <wtf/URL.h>
38
39
40namespace WebCore {
41using namespace JSC;
42
43// Attributes
44
45JSC::EncodedJSValue jsHTMLParagraphElementConstructor(JSC::ExecState*, JSC::EncodedJSValue, JSC::PropertyName);
46bool setJSHTMLParagraphElementConstructor(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue);
47JSC::EncodedJSValue jsHTMLParagraphElementAlign(JSC::ExecState*, JSC::EncodedJSValue, JSC::PropertyName);
48bool setJSHTMLParagraphElementAlign(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue);
49
50class JSHTMLParagraphElementPrototype : public JSC::JSNonFinalObject {
51public:
52 using Base = JSC::JSNonFinalObject;
53 static JSHTMLParagraphElementPrototype* create(JSC::VM& vm, JSDOMGlobalObject* globalObject, JSC::Structure* structure)
54 {
55 JSHTMLParagraphElementPrototype* ptr = new (NotNull, JSC::allocateCell<JSHTMLParagraphElementPrototype>(vm.heap)) JSHTMLParagraphElementPrototype(vm, globalObject, structure);
56 ptr->finishCreation(vm);
57 return ptr;
58 }
59
60 DECLARE_INFO;
61 static JSC::Structure* createStructure(JSC::VM& vm, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
62 {
63 return JSC::Structure::create(vm, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), info());
64 }
65
66private:
67 JSHTMLParagraphElementPrototype(JSC::VM& vm, JSC::JSGlobalObject*, JSC::Structure* structure)
68 : JSC::JSNonFinalObject(vm, structure)
69 {
70 }
71
72 void finishCreation(JSC::VM&);
73};
74
75using JSHTMLParagraphElementConstructor = JSDOMConstructorNotConstructable<JSHTMLParagraphElement>;
76
77template<> JSValue JSHTMLParagraphElementConstructor::prototypeForStructure(JSC::VM& vm, const JSDOMGlobalObject& globalObject)
78{
79 return JSHTMLElement::getConstructor(vm, &globalObject);
80}
81
82template<> void JSHTMLParagraphElementConstructor::initializeProperties(VM& vm, JSDOMGlobalObject& globalObject)
83{
84 putDirect(vm, vm.propertyNames->prototype, JSHTMLParagraphElement::prototype(vm, globalObject), JSC::PropertyAttribute::DontDelete | JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
85 putDirect(vm, vm.propertyNames->name, jsNontrivialString(&vm, String("HTMLParagraphElement"_s)), JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
86 putDirect(vm, vm.propertyNames->length, jsNumber(0), JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
87}
88
89template<> const ClassInfo JSHTMLParagraphElementConstructor::s_info = { "HTMLParagraphElement", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSHTMLParagraphElementConstructor) };
90
91/* Hash table for prototype */
92
93static const HashTableValue JSHTMLParagraphElementPrototypeTableValues[] =
94{
95 { "constructor", static_cast<unsigned>(JSC::PropertyAttribute::DontEnum), NoIntrinsic, { (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsHTMLParagraphElementConstructor), (intptr_t) static_cast<PutPropertySlot::PutValueFunc>(setJSHTMLParagraphElementConstructor) } },
96 { "align", static_cast<unsigned>(JSC::PropertyAttribute::CustomAccessor | JSC::PropertyAttribute::DOMAttribute), NoIntrinsic, { (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsHTMLParagraphElementAlign), (intptr_t) static_cast<PutPropertySlot::PutValueFunc>(setJSHTMLParagraphElementAlign) } },
97};
98
99const ClassInfo JSHTMLParagraphElementPrototype::s_info = { "HTMLParagraphElementPrototype", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSHTMLParagraphElementPrototype) };
100
101void JSHTMLParagraphElementPrototype::finishCreation(VM& vm)
102{
103 Base::finishCreation(vm);
104 reifyStaticProperties(vm, JSHTMLParagraphElement::info(), JSHTMLParagraphElementPrototypeTableValues, *this);
105}
106
107const ClassInfo JSHTMLParagraphElement::s_info = { "HTMLParagraphElement", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSHTMLParagraphElement) };
108
109JSHTMLParagraphElement::JSHTMLParagraphElement(Structure* structure, JSDOMGlobalObject& globalObject, Ref<HTMLParagraphElement>&& impl)
110 : JSHTMLElement(structure, globalObject, WTFMove(impl))
111{
112}
113
114void JSHTMLParagraphElement::finishCreation(VM& vm)
115{
116 Base::finishCreation(vm);
117 ASSERT(inherits(vm, info()));
118
119}
120
121JSObject* JSHTMLParagraphElement::createPrototype(VM& vm, JSDOMGlobalObject& globalObject)
122{
123 return JSHTMLParagraphElementPrototype::create(vm, &globalObject, JSHTMLParagraphElementPrototype::createStructure(vm, &globalObject, JSHTMLElement::prototype(vm, globalObject)));
124}
125
126JSObject* JSHTMLParagraphElement::prototype(VM& vm, JSDOMGlobalObject& globalObject)
127{
128 return getDOMPrototype<JSHTMLParagraphElement>(vm, globalObject);
129}
130
131JSValue JSHTMLParagraphElement::getConstructor(VM& vm, const JSGlobalObject* globalObject)
132{
133 return getDOMConstructor<JSHTMLParagraphElementConstructor>(vm, *jsCast<const JSDOMGlobalObject*>(globalObject));
134}
135
136template<> inline JSHTMLParagraphElement* IDLAttribute<JSHTMLParagraphElement>::cast(ExecState& state, EncodedJSValue thisValue)
137{
138 return jsDynamicCast<JSHTMLParagraphElement*>(state.vm(), JSValue::decode(thisValue));
139}
140
141EncodedJSValue jsHTMLParagraphElementConstructor(ExecState* state, EncodedJSValue thisValue, PropertyName)
142{
143 VM& vm = state->vm();
144 auto throwScope = DECLARE_THROW_SCOPE(vm);
145 auto* prototype = jsDynamicCast<JSHTMLParagraphElementPrototype*>(vm, JSValue::decode(thisValue));
146 if (UNLIKELY(!prototype))
147 return throwVMTypeError(state, throwScope);
148 return JSValue::encode(JSHTMLParagraphElement::getConstructor(state->vm(), prototype->globalObject()));
149}
150
151bool setJSHTMLParagraphElementConstructor(ExecState* state, EncodedJSValue thisValue, EncodedJSValue encodedValue)
152{
153 VM& vm = state->vm();
154 auto throwScope = DECLARE_THROW_SCOPE(vm);
155 auto* prototype = jsDynamicCast<JSHTMLParagraphElementPrototype*>(vm, JSValue::decode(thisValue));
156 if (UNLIKELY(!prototype)) {
157 throwVMTypeError(state, throwScope);
158 return false;
159 }
160 // Shadowing a built-in constructor
161 return prototype->putDirect(vm, vm.propertyNames->constructor, JSValue::decode(encodedValue));
162}
163
164static inline JSValue jsHTMLParagraphElementAlignGetter(ExecState& state, JSHTMLParagraphElement& thisObject, ThrowScope& throwScope)
165{
166 UNUSED_PARAM(throwScope);
167 UNUSED_PARAM(state);
168 auto& impl = thisObject.wrapped();
169 JSValue result = toJS<IDLDOMString>(state, throwScope, impl.attributeWithoutSynchronization(WebCore::HTMLNames::alignAttr));
170 return result;
171}
172
173EncodedJSValue jsHTMLParagraphElementAlign(ExecState* state, EncodedJSValue thisValue, PropertyName)
174{
175 return IDLAttribute<JSHTMLParagraphElement>::get<jsHTMLParagraphElementAlignGetter, CastedThisErrorBehavior::Assert>(*state, thisValue, "align");
176}
177
178static inline bool setJSHTMLParagraphElementAlignSetter(ExecState& state, JSHTMLParagraphElement& thisObject, JSValue value, ThrowScope& throwScope)
179{
180 UNUSED_PARAM(throwScope);
181 CustomElementReactionDisallowedScope customElementReactionDisallowedScope;
182 auto& impl = thisObject.wrapped();
183 auto nativeValue = convert<IDLDOMString>(state, value);
184 RETURN_IF_EXCEPTION(throwScope, false);
185 AttributeSetter::call(state, throwScope, [&] {
186 return impl.setAttributeWithoutSynchronization(WebCore::HTMLNames::alignAttr, WTFMove(nativeValue));
187 });
188 return true;
189}
190
191bool setJSHTMLParagraphElementAlign(ExecState* state, EncodedJSValue thisValue, EncodedJSValue encodedValue)
192{
193 return IDLAttribute<JSHTMLParagraphElement>::set<setJSHTMLParagraphElementAlignSetter>(*state, thisValue, encodedValue, "align");
194}
195
196void JSHTMLParagraphElement::heapSnapshot(JSCell* cell, HeapSnapshotBuilder& builder)
197{
198 auto* thisObject = jsCast<JSHTMLParagraphElement*>(cell);
199 builder.setWrappedObjectForCell(cell, &thisObject->wrapped());
200 if (thisObject->scriptExecutionContext())
201 builder.setLabelForCell(cell, "url " + thisObject->scriptExecutionContext()->url().string());
202 Base::heapSnapshot(cell, builder);
203}
204
205
206}
207