| Index: third_party/polymer/v0_8/components-chromium/polymer/src/lib/style-defaults-extracted.js
|
| diff --git a/third_party/polymer/v0_8/components-chromium/polymer/src/lib/style-defaults-extracted.js b/third_party/polymer/v0_8/components-chromium/polymer/src/lib/style-defaults-extracted.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e28fb37f5b0558f036e09a50734682cc51389e4a
|
| --- /dev/null
|
| +++ b/third_party/polymer/v0_8/components-chromium/polymer/src/lib/style-defaults-extracted.js
|
| @@ -0,0 +1,21 @@
|
| +
|
| +
|
| + (function() {
|
| +
|
| + var defaultSheet = document.createElement('style');
|
| +
|
| + function applyCss(cssText) {
|
| + defaultSheet.textContent += cssText;
|
| + defaultSheet.__cssRules =
|
| + Polymer.StyleUtil.parser.parse(defaultSheet.textContent);
|
| + }
|
| +
|
| + applyCss('');
|
| +
|
| + // exports
|
| + Polymer.StyleDefaults = {
|
| + applyCss: applyCss,
|
| + defaultSheet: defaultSheet
|
| + };
|
| +
|
| + })();
|
|
|