UNPKG
cssom-papandreou
Version:
latest (0.3.0-patch2)
0.3.0-patch2
0.3.0-patch1
0.2.6-patch1
0.2.4-patch6
0.2.4-patch5andthreequarters
0.2.4-patch5andahalf
0.2.4-patch5
0.2.4-patch4
0.2.4-patch3
0.2.4-patch2
0.2.4-patch1
0.2.3-patch2
0.2.3-patch1
0.2.2-patch3
0.2.2-patch2
0.2.2-patch1
0.2.1-patch1
0.2.0-patch1
CSS Object Model implementation and CSS parser
github.com/NV/CSSOM
papandreou/CSSOM
cssom-papandreou
/
lib
/
StyleSheet.js
18 lines
(13 loc)
•
272 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//.CommonJS
var
CSSOM
= {};
///CommonJS
/** *
@constructor
*
@see
http://dev.w3.org/csswg/cssom/#the-stylesheet-interface */
CSSOM
.
StyleSheet
=
function
StyleSheet
(
) {
this
.
parentStyleSheet
=
null
; };
//.CommonJS
exports
.
StyleSheet
=
CSSOM
.
StyleSheet
;
///CommonJS