|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
272 bytes
|
| Line | |
|---|
| 1 | //.CommonJS
|
|---|
| 2 | var CSSOM = {};
|
|---|
| 3 | ///CommonJS
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 | /**
|
|---|
| 7 | * @constructor
|
|---|
| 8 | * @see http://dev.w3.org/csswg/cssom/#the-stylesheet-interface
|
|---|
| 9 | */
|
|---|
| 10 | CSSOM.StyleSheet = function StyleSheet() {
|
|---|
| 11 | this.parentStyleSheet = null;
|
|---|
| 12 | };
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 | //.CommonJS
|
|---|
| 16 | exports.StyleSheet = CSSOM.StyleSheet;
|
|---|
| 17 | ///CommonJS
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.