org.htmlunit.javascript.host.html.HTMLFrameElement 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.
/*
* 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.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.HtmlFrame;
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;
/**
* The JavaScript object {@code HTMLFrameElement}.
*
* @author Marc Guillemot
* @author Chris Erskine
* @author Ahmed Ashour
* @author Frank Danek
* @author Ronald Brill
*/
@JsxClass(domClass = HtmlFrame.class)
public class HTMLFrameElement extends HTMLElement {
/**
* Creates an instance.
*/
public HTMLFrameElement() {
}
/**
* 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);
}
/**
* 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() {
return Window.getProxy(getFrame().getEnclosedWindow());
}
/**
* 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();
}
/**
* 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);
}
/**
* {@inheritDoc}
*/
@Override
protected boolean isEndTagForbidden() {
return true;
}
}