org.w3c.dom.html.HTMLFontElement Maven / Gradle / Ivy
The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//
package org.w3c.dom.html;
import org.w3c.dom.*;
/**
Local change to font. See the
FONT element definition
in HTML 4.0. This element is deprecated in HTML 4.0.
Property Summary
color
getColor
setColor
Font color. See the
color attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
face
getFace
setFace
Font face identifier. See the
face attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
size
getSize
setSize
Font size. See the
size attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
*/
public interface HTMLFontElement
extends HTMLElement
{
/** Assigns the value of the color
property.
*/
void setColor (String color);
/**
* Returns the value of the color
property.
*/
String getColor ();
/** Assigns the value of the face
property.
*/
void setFace (String face);
/**
* Returns the value of the face
property.
*/
String getFace ();
/** Assigns the value of the size
property.
*/
void setSize (String size);
/**
* Returns the value of the size
property.
*/
String getSize ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy