-
- All Known Subinterfaces:
DocumentCSS
public interface DocumentStyle
TheDocumentStyle
interface provides a mechanism by which the style sheets embedded in a document can be retrieved. The expectation is that an instance of theDocumentStyle
interface can be obtained by using binding-specific casting methods on an instance of theDocument
interface.See also the Document Object Model (DOM) Level 2 Style Specification.
- Since:
- 1.4, DOM Level 2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StyleSheetList
getStyleSheets()
A list containing all the style sheets explicitly linked into or embedded in a document.
-
-
-
Method Detail
-
getStyleSheets
StyleSheetList getStyleSheets()
A list containing all the style sheets explicitly linked into or embedded in a document. For HTML documents, this includes external style sheets, included via the HTML LINK element, and inline STYLE elements. In XML, this includes external style sheets, included via style sheet processing instructions (see [XML StyleSheet]).
-
-