/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* This file is available under and governed by the GNU General Public
* License version 2 only, as published by the Free Software Foundation.
* However, the following notice accompanied the original version of this
* file and, per its terms, should not be removed:
*
* Copyright (c) 2000 World Wide Web Consortium,
* (Massachusetts Institute of Technology, Institut National de
* Recherche en Informatique et en Automatique, Keio University). All
* Rights Reserved. This program is distributed under the W3C's Software
* Intellectual Property License. This program is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY; without even
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE.
* See W3C License http://www.w3.org/Consortium/Legal/ for more details.
*/
/**
* The <code>CSS2Properties</code> interface represents a convenience
* mechanism for retrieving and setting properties within a
* <code>CSSStyleDeclaration</code>. The attributes of this interface
* correspond to all the properties specified in CSS2. Getting an attribute
* of this interface is equivalent to calling the
* <code>getPropertyValue</code> method of the
* <code>CSSStyleDeclaration</code> interface. Setting an attribute of this
* interface is equivalent to calling the <code>setProperty</code> method of
* the <code>CSSStyleDeclaration</code> interface.
* <p> A conformant implementation of the CSS module is not required to
* implement the <code>CSS2Properties</code> interface. If an implementation
* does implement this interface, the expectation is that language-specific
* methods can be used to cast from an instance of the
* <code>CSSStyleDeclaration</code> interface to the
* <code>CSS2Properties</code> interface.
* <p> If an implementation does implement this interface, it is expected to
* understand the specific syntax of the shorthand properties, and apply
* their semantics; when the <code>margin</code> property is set, for
* example, the <code>marginTop</code>, <code>marginRight</code>,
* <code>marginBottom</code> and <code>marginLeft</code> properties are
* actually being set by the underlying implementation.
* <p> When dealing with CSS "shorthand" properties, the shorthand properties
* should be decomposed into their component longhand properties as
* appropriate, and when querying for their value, the form returned should
* be the shortest form exactly equivalent to the declarations made in the
* ruleset. However, if there is no shorthand declaration that could be
* added to the ruleset without changing in any way the rules already
* declared in the ruleset (i.e., by adding longhand rules that were
* previously not declared in the ruleset), then the empty string should be
* returned for the shorthand property.
* <p> For example, querying for the <code>font</code> property should not
* Arial, sans-serif" suffices. (The normals are initial values, and are
* implied by use of the longhand property.)
* <p> If the values for all the longhand properties that compose a particular
* string are the initial values, then a string consisting of all the
* initial values should be returned (e.g. a <code>border-width</code> value
* of "medium" should be returned as such, not as "").
* <p> For some shorthand properties that take missing values from other
* sides, such as the <code>margin</code>, <code>padding</code>, and
* <code>border-[width|style|color]</code> properties, the minimum number of
* sides possible should be used; i.e., "0px 10px" will be returned instead
* of "0px 10px 0px 10px".
* <p> If the value of a shorthand property can not be decomposed into its
* component longhand properties, as is the case for the <code>font</code>
* property with a value of "menu", querying for the values of the component
* longhand properties should return the empty string.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
*/
public interface CSS2Properties {
/**
* See the azimuth property definition in CSS2.
*/
/**
* See the azimuth property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the background property definition in CSS2.
*/
/**
* See the background property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the background-attachment property definition in CSS2.
*/
/**
* See the background-attachment property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the background-color property definition in CSS2.
*/
/**
* See the background-color property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the background-image property definition in CSS2.
*/
/**
* See the background-image property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the background-position property definition in CSS2.
*/
/**
* See the background-position property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the background-repeat property definition in CSS2.
*/
/**
* See the background-repeat property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border property definition in CSS2.
*/
/**
* See the border property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-collapse property definition in CSS2.
*/
/**
* See the border-collapse property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-color property definition in CSS2.
*/
/**
* See the border-color property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-spacing property definition in CSS2.
*/
/**
* See the border-spacing property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-style property definition in CSS2.
*/
/**
* See the border-style property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-top property definition in CSS2.
*/
/**
* See the border-top property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-right property definition in CSS2.
*/
/**
* See the border-right property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-bottom property definition in CSS2.
*/
/**
* See the border-bottom property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-left property definition in CSS2.
*/
/**
* See the border-left property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-top-color property definition in CSS2.
*/
/**
* See the border-top-color property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-right-color property definition in CSS2.
*/
/**
* See the border-right-color property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-bottom-color property definition in CSS2.
*/
/**
* See the border-bottom-color property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-left-color property definition in CSS2.
*/
/**
* See the border-left-color property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-top-style property definition in CSS2.
*/
/**
* See the border-top-style property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-right-style property definition in CSS2.
*/
/**
* See the border-right-style property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-bottom-style property definition in CSS2.
*/
/**
* See the border-bottom-style property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-left-style property definition in CSS2.
*/
/**
* See the border-left-style property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-top-width property definition in CSS2.
*/
/**
* See the border-top-width property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-right-width property definition in CSS2.
*/
/**
* See the border-right-width property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-bottom-width property definition in CSS2.
*/
/**
* See the border-bottom-width property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-left-width property definition in CSS2.
*/
/**
* See the border-left-width property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the border-width property definition in CSS2.
*/
/**
* See the border-width property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the bottom property definition in CSS2.
*/
/**
* See the bottom property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the caption-side property definition in CSS2.
*/
/**
* See the caption-side property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the clear property definition in CSS2.
*/
/**
* See the clear property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the clip property definition in CSS2.
*/
/**
* See the clip property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the color property definition in CSS2.
*/
/**
* See the color property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the content property definition in CSS2.
*/
/**
* See the content property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the counter-increment property definition in CSS2.
*/
/**
* See the counter-increment property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the counter-reset property definition in CSS2.
*/
/**
* See the counter-reset property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the cue property definition in CSS2.
*/
/**
* See the cue property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the cue-after property definition in CSS2.
*/
/**
* See the cue-after property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the cue-before property definition in CSS2.
*/
/**
* See the cue-before property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the cursor property definition in CSS2.
*/
/**
* See the cursor property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the direction property definition in CSS2.
*/
/**
* See the direction property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the display property definition in CSS2.
*/
/**
* See the display property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the elevation property definition in CSS2.
*/
/**
* See the elevation property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the empty-cells property definition in CSS2.
*/
/**
* See the empty-cells property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the float property definition in CSS2.
*/
/**
* See the float property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the font property definition in CSS2.
*/
/**
* See the font property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the font-family property definition in CSS2.
*/
/**
* See the font-family property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the font-size property definition in CSS2.
*/
/**
* See the font-size property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the font-size-adjust property definition in CSS2.
*/
/**
* See the font-size-adjust property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the font-stretch property definition in CSS2.
*/
/**
* See the font-stretch property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the font-style property definition in CSS2.
*/
/**
* See the font-style property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the font-variant property definition in CSS2.
*/
/**
* See the font-variant property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the font-weight property definition in CSS2.
*/
/**
* See the font-weight property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the height property definition in CSS2.
*/
/**
* See the height property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the left property definition in CSS2.
*/
/**
* See the left property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the letter-spacing property definition in CSS2.
*/
/**
* See the letter-spacing property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the line-height property definition in CSS2.
*/
/**
* See the line-height property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the list-style property definition in CSS2.
*/
/**
* See the list-style property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the list-style-image property definition in CSS2.
*/
/**
* See the list-style-image property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the list-style-position property definition in CSS2.
*/
/**
* See the list-style-position property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the list-style-type property definition in CSS2.
*/
/**
* See the list-style-type property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the margin property definition in CSS2.
*/
/**
* See the margin property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the margin-top property definition in CSS2.
*/
/**
* See the margin-top property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the margin-right property definition in CSS2.
*/
/**
* See the margin-right property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the margin-bottom property definition in CSS2.
*/
/**
* See the margin-bottom property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the margin-left property definition in CSS2.
*/
/**
* See the margin-left property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the marker-offset property definition in CSS2.
*/
/**
* See the marker-offset property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the marks property definition in CSS2.
*/
/**
* See the marks property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the max-height property definition in CSS2.
*/
/**
* See the max-height property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the max-width property definition in CSS2.
*/
/**
* See the max-width property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the min-height property definition in CSS2.
*/
/**
* See the min-height property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the min-width property definition in CSS2.
*/
/**
* See the min-width property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the orphans property definition in CSS2.
*/
/**
* See the orphans property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the outline property definition in CSS2.
*/
/**
* See the outline property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the outline-color property definition in CSS2.
*/
/**
* See the outline-color property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the outline-style property definition in CSS2.
*/
/**
* See the outline-style property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the outline-width property definition in CSS2.
*/
/**
* See the outline-width property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the overflow property definition in CSS2.
*/
/**
* See the overflow property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the padding property definition in CSS2.
*/
/**
* See the padding property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the padding-top property definition in CSS2.
*/
/**
* See the padding-top property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the padding-right property definition in CSS2.
*/
/**
* See the padding-right property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the padding-bottom property definition in CSS2.
*/
/**
* See the padding-bottom property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the padding-left property definition in CSS2.
*/
/**
* See the padding-left property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the page property definition in CSS2.
*/
/**
* See the page property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the page-break-after property definition in CSS2.
*/
/**
* See the page-break-after property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the page-break-before property definition in CSS2.
*/
/**
* See the page-break-before property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the page-break-inside property definition in CSS2.
*/
/**
* See the page-break-inside property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the pause property definition in CSS2.
*/
/**
* See the pause property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the pause-after property definition in CSS2.
*/
/**
* See the pause-after property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the pause-before property definition in CSS2.
*/
/**
* See the pause-before property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the pitch property definition in CSS2.
*/
/**
* See the pitch property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the pitch-range property definition in CSS2.
*/
/**
* See the pitch-range property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the play-during property definition in CSS2.
*/
/**
* See the play-during property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the position property definition in CSS2.
*/
/**
* See the position property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the quotes property definition in CSS2.
*/
/**
* See the quotes property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the richness property definition in CSS2.
*/
/**
* See the richness property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the right property definition in CSS2.
*/
/**
* See the right property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the size property definition in CSS2.
*/
/**
* See the size property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the speak property definition in CSS2.
*/
/**
* See the speak property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the speak-header property definition in CSS2.
*/
/**
* See the speak-header property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the speak-numeral property definition in CSS2.
*/
/**
* See the speak-numeral property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the speak-punctuation property definition in CSS2.
*/
/**
* See the speak-punctuation property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the speech-rate property definition in CSS2.
*/
/**
* See the speech-rate property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the stress property definition in CSS2.
*/
/**
* See the stress property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the table-layout property definition in CSS2.
*/
/**
* See the table-layout property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the text-align property definition in CSS2.
*/
/**
* See the text-align property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the text-decoration property definition in CSS2.
*/
/**
* See the text-decoration property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the text-indent property definition in CSS2.
*/
/**
* See the text-indent property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the text-shadow property definition in CSS2.
*/
/**
* See the text-shadow property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the text-transform property definition in CSS2.
*/
/**
* See the text-transform property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the top property definition in CSS2.
*/
/**
* See the top property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the unicode-bidi property definition in CSS2.
*/
/**
* See the unicode-bidi property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the vertical-align property definition in CSS2.
*/
/**
* See the vertical-align property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the visibility property definition in CSS2.
*/
/**
* See the visibility property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the voice-family property definition in CSS2.
*/
/**
* See the voice-family property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the volume property definition in CSS2.
*/
/**
* See the volume property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the white-space property definition in CSS2.
*/
/**
* See the white-space property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the widows property definition in CSS2.
*/
/**
* See the widows property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the width property definition in CSS2.
*/
/**
* See the width property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the word-spacing property definition in CSS2.
*/
/**
* See the word-spacing property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
/**
* See the z-index property definition in CSS2.
*/
/**
* See the z-index property definition in CSS2.
* @exception DOMException
* SYNTAX_ERR: Raised if the new value has a syntax error and is
* unparsable.
* <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
*/
throws DOMException;
}