org.htmlunit.cyberneko.html.dom.HTMLIFrameElementImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.security.antisamy
Show all versions of com.liferay.portal.security.antisamy
Liferay Portal Security AntiSamy
/*
* Copyright 2002-2009 Andy Clark, Marc Guillemot
* Copyright 2017-2023 Ronald Brill
*
* 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.cyberneko.html.dom;
import org.w3c.dom.Document;
import org.w3c.dom.html.HTMLIFrameElement;
/**
* @author Assaf Arkin
* @see org.w3c.dom.html.HTMLIFrameElement
* @see org.htmlunit.cyberneko.xerces.dom.ElementImpl
*/
public class HTMLIFrameElementImpl extends HTMLElementImpl implements HTMLIFrameElement {
@Override
public String getAlign() {
return capitalize(getAttribute("align"));
}
@Override
public void setAlign(final String align) {
setAttribute("align", align);
}
@Override
public String getFrameBorder() {
return getAttribute("frameborder");
}
@Override
public void setFrameBorder(final String frameBorder) {
setAttribute("frameborder", frameBorder);
}
@Override
public String getHeight() {
return getAttribute("height");
}
@Override
public void setHeight(final String height) {
setAttribute("height", height);
}
@Override
public String getLongDesc() {
return getAttribute("longdesc");
}
@Override
public void setLongDesc(final String longDesc) {
setAttribute("longdesc", longDesc);
}
@Override
public String getMarginHeight() {
return getAttribute("marginheight");
}
@Override
public void setMarginHeight(final String marginHeight) {
setAttribute("marginheight", marginHeight);
}
@Override
public String getMarginWidth() {
return getAttribute("marginwidth");
}
@Override
public void setMarginWidth(final String marginWidth) {
setAttribute("marginwidth", marginWidth);
}
@Override
public String getName() {
return getAttribute("name");
}
@Override
public void setName(final String name) {
setAttribute("name", name);
}
@Override
public String getScrolling() {
return capitalize(getAttribute("scrolling"));
}
@Override
public void setScrolling(final String scrolling) {
setAttribute("scrolling", scrolling);
}
@Override
public String getSrc() {
return getAttribute("src");
}
@Override
public void setSrc(final String src) {
setAttribute("src", src);
}
@Override
public String getWidth() {
return getAttribute("width");
}
@Override
public void setWidth(final String width) {
setAttribute("width", width);
}
/**
* Constructor requires owner document.
*
* @param owner The owner HTML document
*/
public HTMLIFrameElementImpl(final HTMLDocumentImpl owner, final String name) {
super(owner, name);
}
@Override
public Document getContentDocument() {
// TODO Auto-generated method stub
return null;
}
}