We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ca6cd8 commit f2fddfbCopy full SHA for f2fddfb
docs/pages/index.md
@@ -20,6 +20,7 @@ $ npm install wc-compiler --save-dev
20
- `[get|set|has]Attribute`
21
1. `<template>` / `DocumentFragment`
22
1. `addEventListener` (as a no-op)
23
+1. Supports `CSSStyleSheet` (all methods act as no-ops)
24
1. Recursive rendering of nested custom elements
25
1. Metadata and runtime hints to support various progressive hydration and lazy loading strategies
26
src/dom-shim.js
@@ -2,7 +2,8 @@ function noop() { }
2
3
// https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleSheet/CSSStyleSheet
4
class CSSStyleSheet {
5
- constructor() { }
+ insertRule() { }
6
+ deleteRule() { }
7
replace() { }
8
replaceSync() { }
9
}
0 commit comments