Interface DOMImplementationCSS
- All Superinterfaces:
DOMImplementation
This interface allows the DOM user to create a
CSSStyleSheet
outside the context of a document. There is no way to associate the new
CSSStyleSheet with a document in DOM Level 2.
See also the Document Object Model (DOM) Level 2 Style Specification.
- Since:
- 1.4, DOM Level 2
-
Method Summary
Modifier and TypeMethodDescriptioncreateCSSStyleSheet(String title, String media) Creates a newCSSStyleSheet.Methods declared in interface DOMImplementation
createDocument, createDocumentType, getFeature, hasFeatureModifier and TypeMethodDescriptioncreateDocument(String namespaceURI, String qualifiedName, DocumentType doctype) Creates a DOM Document object of the specified type with its document element.createDocumentType(String qualifiedName, String publicId, String systemId) Creates an emptyDocumentTypenode.getFeature(String feature, String version) This method returns a specialized object which implements the specialized APIs of the specified feature and version, as specified in DOM Features.booleanhasFeature(String feature, String version) Test if the DOM implementation implements a specific feature and version, as specified in DOM Features.
-
Method Details
-
createCSSStyleSheet
Creates a newCSSStyleSheet.- Parameters:
title- The advisory title. See also the section.media- The comma-separated list of media associated with the new style sheet. See also the section.- Returns:
- A new CSS style sheet.
- Throws:
DOMException- SYNTAX_ERR: Raised if the specified media string value has a syntax error and is unparsable.
-