com.gargoylesoftware.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 htmlunit Show documentation
Show all versions of htmlunit Show documentation
A headless browser intended for use in testing web-based applications.
/*
* Copyright (c) 2002-2021 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 com.gargoylesoftware.htmlunit.javascript.host.html;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.JS_FRAME_CONTENT_DOCUMENT_ACCESS_DENIED_THROWS;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF78;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE;
import com.gargoylesoftware.htmlunit.html.BaseFrameElement;
import com.gargoylesoftware.htmlunit.html.FrameWindow;
import com.gargoylesoftware.htmlunit.html.FrameWindow.PageDenied;
import com.gargoylesoftware.htmlunit.html.HtmlFrame;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxGetter;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxSetter;
import com.gargoylesoftware.htmlunit.javascript.host.Window;
import com.gargoylesoftware.htmlunit.javascript.host.WindowProxy;
import net.sourceforge.htmlunit.corejs.javascript.Context;
/**
* 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.
*/
@JsxConstructor({CHROME, EDGE, FF, FF78})
public HTMLFrameElement() {
}
/**
* 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 Context.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() {
final String border = getDomNodeOrDie().getAttributeDirect("border");
return 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;
}
}