org.htmlunit.javascript.host.html.HTMLIFrameElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xlt Show documentation
Show all versions of xlt Show documentation
XLT (Xceptance LoadTest) is an extensive load and performance test tool developed and maintained by Xceptance.
The newest version!
/*
* Copyright (c) 2002-2024 Gargoyle Software Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.javascript.host.html;
import static org.htmlunit.BrowserVersionFeatures.JS_FRAME_CONTENT_DOCUMENT_ACCESS_DENIED_THROWS;
import static org.htmlunit.BrowserVersionFeatures.JS_IFRAME_ALWAYS_EXECUTE_ONLOAD;
import static org.htmlunit.javascript.configuration.SupportedBrowser.CHROME;
import static org.htmlunit.javascript.configuration.SupportedBrowser.EDGE;
import static org.htmlunit.javascript.configuration.SupportedBrowser.FF;
import static org.htmlunit.javascript.configuration.SupportedBrowser.FF_ESR;
import static org.htmlunit.javascript.configuration.SupportedBrowser.IE;
import org.htmlunit.html.BaseFrameElement;
import org.htmlunit.html.FrameWindow;
import org.htmlunit.html.FrameWindow.PageDenied;
import org.htmlunit.html.HtmlInlineFrame;
import org.htmlunit.javascript.JavaScriptEngine;
import org.htmlunit.javascript.configuration.JsxClass;
import org.htmlunit.javascript.configuration.JsxConstructor;
import org.htmlunit.javascript.configuration.JsxGetter;
import org.htmlunit.javascript.configuration.JsxSetter;
import org.htmlunit.javascript.host.Window;
import org.htmlunit.javascript.host.WindowProxy;
import org.htmlunit.javascript.host.event.Event;
/**
* A JavaScript object for {@link HtmlInlineFrame}.
*
* @author Marc Guillemot
* @author Chris Erskine
* @author Ahmed Ashour
* @author Ronald Brill
*/
@JsxClass(domClass = HtmlInlineFrame.class)
public class HTMLIFrameElement extends HTMLElement {
/** During {@link #setOnload(Object)}, was the element attached to the page. */
private boolean isAttachedToPageDuringOnload_;
/**
* Creates an instance.
*/
public HTMLIFrameElement() {
}
/**
* JavaScript constructor.
*/
@Override
@JsxConstructor({CHROME, EDGE, FF, FF_ESR})
public void jsConstructor() {
super.jsConstructor();
}
/**
* Returns the value of URL loaded in the frame.
* @return the value of this attribute
*/
@JsxGetter
public String getSrc() {
return getFrame().getSrcAttribute();
}
/**
* Sets the value of the source of the contained frame.
* @param src the new value
*/
@JsxSetter
public void setSrc(final String src) {
getFrame().setSrcAttribute(src);
isAttachedToPageDuringOnload_ = false;
}
/**
* Returns the document the frame contains, if any.
* @return {@code null} if no document is contained
* @see Gecko DOM Reference
*/
@JsxGetter
public DocumentProxy getContentDocument() {
final FrameWindow frameWindow = getFrame().getEnclosedWindow();
if (PageDenied.NONE != frameWindow.getPageDenied()) {
if (getBrowserVersion().hasFeature(JS_FRAME_CONTENT_DOCUMENT_ACCESS_DENIED_THROWS)) {
throw JavaScriptEngine.reportRuntimeError("Error access denied");
}
return null;
}
return ((Window) frameWindow.getScriptableObject()).getDocument_js();
}
/**
* Returns the window the frame contains, if any.
* @return the window
* @see Gecko DOM Reference
* @see MSDN documentation
*/
@JsxGetter
public WindowProxy getContentWindow() {
final FrameWindow frameWin = getFrame().getEnclosedWindow();
if (frameWin.isClosed()) {
return null;
}
return Window.getProxy(frameWin);
}
/**
* Returns the value of the name attribute.
* @return the value of this attribute
*/
@JsxGetter
@Override
public String getName() {
return getFrame().getNameAttribute();
}
/**
* Sets the value of the name attribute.
* @param name the new value
*/
@JsxSetter
@Override
public void setName(final String name) {
getFrame().setNameAttribute(name);
}
private BaseFrameElement getFrame() {
return (BaseFrameElement) getDomNodeOrDie();
}
/**
* {@inheritDoc}
*/
@Override
public void setOnload(final Object eventHandler) {
super.setOnload(eventHandler);
isAttachedToPageDuringOnload_ = getDomNodeOrDie().isAttachedToPage();
}
/**
* Gets the {@code border} attribute.
* @return the {@code border} attribute
*/
@JsxGetter(IE)
public String getBorder() {
return getDomNodeOrDie().getAttributeDirect("border");
}
/**
* Sets the {@code border} attribute.
* @param border the {@code border} attribute
*/
@JsxSetter(IE)
public void setBorder(final String border) {
getDomNodeOrDie().setAttribute("border", border);
}
/**
* Returns the value of the {@code align} property.
* @return the value of the {@code align} property
*/
@JsxGetter
public String getAlign() {
return getAlign(true);
}
/**
* Sets the value of the {@code align} property.
* @param align the value of the {@code align} property
*/
@JsxSetter
public void setAlign(final String align) {
setAlign(align, false);
}
/**
* Returns the value of the {@code width} property.
* @return the value of the {@code width} property
*/
@JsxGetter(propertyName = "width")
public String getWidth_js() {
return getWidthOrHeight("width", Boolean.TRUE);
}
/**
* Sets the value of the {@code width} property.
* @param width the value of the {@code width} property
*/
@JsxSetter(propertyName = "width")
public void setWidth_js(final String width) {
setWidthOrHeight("width", width, true);
}
/**
* Returns the value of the {@code width} property.
* @return the value of the {@code width} property
*/
@JsxGetter(propertyName = "height")
public String getHeight_js() {
return getWidthOrHeight("height", Boolean.TRUE);
}
/**
* Sets the value of the {@code height} property.
* @param height the value of the {@code height} property
*/
@JsxSetter(propertyName = "height")
public void setHeight_js(final String height) {
setWidthOrHeight("height", height, true);
}
/**
* {@inheritDoc}
*/
@Override
public void executeEventLocally(final Event event) {
if (Event.TYPE_LOAD != event.getType()
|| !isAttachedToPageDuringOnload_ || getBrowserVersion().hasFeature(JS_IFRAME_ALWAYS_EXECUTE_ONLOAD)) {
super.executeEventLocally(event);
}
}
/**
* To be called when the frame is being refreshed.
*/
public void onRefresh() {
isAttachedToPageDuringOnload_ = false;
}
}