| /* |
| * Copyright (C) 2004-2016 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #import "DOMHTMLImageElementInternal.h" |
| |
| #import "DOMNodeInternal.h" |
| #import "DOMPrivate.h" |
| #import "ExceptionHandlers.h" |
| #import <WebCore/HTMLImageElement.h> |
| #import <WebCore/HTMLNames.h> |
| #import <WebCore/HitTestResult.h> |
| #import <WebCore/JSExecState.h> |
| #import <WebCore/ThreadCheck.h> |
| #import <WebCore/WebScriptObjectPrivate.h> |
| #import <wtf/GetPtr.h> |
| #import <wtf/URL.h> |
| |
| #define IMPL static_cast<WebCore::HTMLImageElement*>(reinterpret_cast<WebCore::Node*>(_internal)) |
| |
| @implementation DOMHTMLImageElement |
| |
| - (NSString *)name |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getNameAttribute(); |
| } |
| |
| - (void)setName:(NSString *)newName |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::nameAttr, newName); |
| } |
| |
| - (NSString *)align |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getAttribute(WebCore::HTMLNames::alignAttr); |
| } |
| |
| - (void)setAlign:(NSString *)newAlign |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::alignAttr, newAlign); |
| } |
| |
| - (NSString *)alt |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getAttribute(WebCore::HTMLNames::altAttr); |
| } |
| |
| - (void)setAlt:(NSString *)newAlt |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::altAttr, newAlt); |
| } |
| |
| - (NSString *)border |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getAttribute(WebCore::HTMLNames::borderAttr); |
| } |
| |
| - (void)setBorder:(NSString *)newBorder |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::borderAttr, newBorder); |
| } |
| |
| - (NSString *)crossOrigin |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->crossOrigin(); |
| } |
| |
| - (void)setCrossOrigin:(NSString *)newCrossOrigin |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setCrossOrigin(newCrossOrigin); |
| } |
| |
| - (int)height |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->height(); |
| } |
| |
| - (void)setHeight:(int)newHeight |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setHeight(newHeight); |
| } |
| |
| - (int)hspace |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getIntegralAttribute(WebCore::HTMLNames::hspaceAttr); |
| } |
| |
| - (void)setHspace:(int)newHspace |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setIntegralAttribute(WebCore::HTMLNames::hspaceAttr, newHspace); |
| } |
| |
| - (BOOL)isMap |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->hasAttributeWithoutSynchronization(WebCore::HTMLNames::ismapAttr); |
| } |
| |
| - (void)setIsMap:(BOOL)newIsMap |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setBooleanAttribute(WebCore::HTMLNames::ismapAttr, newIsMap); |
| } |
| |
| - (NSString *)longDesc |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getURLAttribute(WebCore::HTMLNames::longdescAttr); |
| } |
| |
| - (void)setLongDesc:(NSString *)newLongDesc |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::longdescAttr, newLongDesc); |
| } |
| |
| - (NSString *)src |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getURLAttribute(WebCore::HTMLNames::srcAttr); |
| } |
| |
| - (void)setSrc:(NSString *)newSrc |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::srcAttr, newSrc); |
| } |
| |
| - (NSString *)srcset |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getAttribute(WebCore::HTMLNames::srcsetAttr); |
| } |
| |
| - (void)setSrcset:(NSString *)newSrcset |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::srcsetAttr, newSrcset); |
| } |
| |
| - (NSString *)sizes |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getAttribute(WebCore::HTMLNames::sizesAttr); |
| } |
| |
| - (void)setSizes:(NSString *)newSizes |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::sizesAttr, newSizes); |
| } |
| |
| - (NSString *)currentSrc |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->currentSrc(); |
| } |
| |
| - (NSString *)useMap |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getAttribute(WebCore::HTMLNames::usemapAttr); |
| } |
| |
| - (void)setUseMap:(NSString *)newUseMap |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::usemapAttr, newUseMap); |
| } |
| |
| - (int)vspace |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getIntegralAttribute(WebCore::HTMLNames::vspaceAttr); |
| } |
| |
| - (void)setVspace:(int)newVspace |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setIntegralAttribute(WebCore::HTMLNames::vspaceAttr, newVspace); |
| } |
| |
| - (int)width |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->width(); |
| } |
| |
| - (void)setWidth:(int)newWidth |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setWidth(newWidth); |
| } |
| |
| - (BOOL)complete |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->complete(); |
| } |
| |
| - (NSString *)lowsrc |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->getURLAttribute(WebCore::HTMLNames::lowsrcAttr); |
| } |
| |
| - (void)setLowsrc:(NSString *)newLowsrc |
| { |
| WebCore::JSMainThreadNullState state; |
| IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::lowsrcAttr, newLowsrc); |
| } |
| |
| - (int)naturalHeight |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->naturalHeight(); |
| } |
| |
| - (int)naturalWidth |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->naturalWidth(); |
| } |
| |
| - (int)x |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->x(); |
| } |
| |
| - (int)y |
| { |
| WebCore::JSMainThreadNullState state; |
| return IMPL->y(); |
| } |
| |
| - (NSString *)altDisplayString |
| { |
| WebCore::JSMainThreadNullState state; |
| return WebCore::displayString(IMPL->alt(), core(self)); |
| } |
| |
| - (NSURL *)absoluteImageURL |
| { |
| WebCore::JSMainThreadNullState state; |
| return [self _getURLAttribute:@"src"]; |
| } |
| |
| @end |
| |
| WebCore::HTMLImageElement* core(DOMHTMLImageElement *wrapper) |
| { |
| return wrapper ? reinterpret_cast<WebCore::HTMLImageElement*>(wrapper->_internal) : 0; |
| } |
| |
| #undef IMPL |