2021-03-20 05:22:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-03-20 05:22:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibWeb/Bindings/HTMLImageElementPrototype.h>
|
|
|
|
#include <LibWeb/Bindings/HTMLImageElementWrapper.h>
|
|
|
|
#include <LibWeb/Bindings/ImageConstructor.h>
|
|
|
|
#include <LibWeb/Bindings/NodeWrapperFactory.h>
|
|
|
|
#include <LibWeb/DOM/ElementFactory.h>
|
|
|
|
#include <LibWeb/DOM/Window.h>
|
|
|
|
#include <LibWeb/Namespace.h>
|
|
|
|
|
|
|
|
namespace Web::Bindings {
|
|
|
|
|
|
|
|
ImageConstructor::ImageConstructor(JS::GlobalObject& global_object)
|
|
|
|
: NativeFunction(*global_object.function_prototype())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImageConstructor::initialize(JS::GlobalObject& global_object)
|
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
|
|
|
auto& window = static_cast<WindowObject&>(global_object);
|
|
|
|
NativeFunction::initialize(global_object);
|
|
|
|
|
2021-07-06 02:15:08 +03:00
|
|
|
define_direct_property(vm.names.prototype, &window.ensure_web_prototype<HTMLImageElementPrototype>("HTMLImageElement"), 0);
|
|
|
|
define_direct_property(vm.names.length, JS::Value(0), JS::Attribute::Configurable);
|
2021-03-20 05:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ImageConstructor::~ImageConstructor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-10-20 21:16:30 +01:00
|
|
|
JS::ThrowCompletionOr<JS::Value> ImageConstructor::call()
|
2021-03-20 05:22:27 +00:00
|
|
|
{
|
2021-10-20 21:16:30 +01:00
|
|
|
return vm().throw_completion<JS::TypeError>(global_object(), JS::ErrorType::ConstructorWithoutNew, "Image");
|
2021-03-20 05:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/embedded-content.html#dom-image
|
2021-10-20 21:16:30 +01:00
|
|
|
JS::ThrowCompletionOr<JS::Object*> ImageConstructor::construct(FunctionObject&)
|
2021-03-20 05:22:27 +00:00
|
|
|
{
|
|
|
|
auto& window = static_cast<WindowObject&>(global_object());
|
2021-09-09 13:55:31 +02:00
|
|
|
auto& document = window.impl().associated_document();
|
2021-03-20 05:22:27 +00:00
|
|
|
auto image_element = DOM::create_element(document, HTML::TagNames::img, Namespace::HTML);
|
|
|
|
|
|
|
|
if (vm().argument_count() > 0) {
|
2021-10-20 21:16:30 +01:00
|
|
|
u32 width = TRY(vm().argument(0).to_u32(global_object()));
|
2021-03-20 05:22:27 +00:00
|
|
|
image_element->set_attribute(HTML::AttributeNames::width, String::formatted("{}", width));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vm().argument_count() > 1) {
|
2021-10-20 21:16:30 +01:00
|
|
|
u32 height = TRY(vm().argument(1).to_u32(global_object()));
|
2021-03-20 05:22:27 +00:00
|
|
|
image_element->set_attribute(HTML::AttributeNames::height, String::formatted("{}", height));
|
|
|
|
}
|
|
|
|
|
|
|
|
return wrap(global_object(), image_element);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|