/** * * @copyright Copyright 2001-2008 Laszlo Systems, Inc. All Rights Reserved. * Use is subject to license terms. * * @affects lzstylesheet * @access private * @topic LFC * @subtopic Services */ /** * This service represents a style sheet * Source: http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet * Introduced in DOM Level 2: * interface StyleSheet { * readonly attribute DOMString type; * attribute boolean disabled; * readonly attribute Node ownerNode; * readonly attribute StyleSheet parentStyleSheet; * readonly attribute DOMString href; * readonly attribute DOMString title; * readonly attribute MediaList media; * }; */ class LzStyleSheet { function LzStyleSheet( title, href, media, sstype ) { this.type = sstype; this.disabled = false; this.ownerNode = null; this.parentStyleSheet = null; this.href = href; this.title = title; this.media = media; } /** @access private */ var type = null; /** @access private */ var disabled = null; /** @access private */ var ownerNode = null; /** @access private */ var parentStyleSheet = null; /** @access private */ var href = null; /** @access private */ var title = null; /** @access private */ var media = null; } // End of LzStyleSheet