Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 [ | |
| 2 Exposed=(Window,PaintWorklet), | |
| 3 RuntimeEnabled=CSSTypedOM, | |
| 4 ImplementedAs=CSSStyleVariableReferenceValue, | |
| 5 Constructor(), | |
| 6 Constructor(DOMString variable) | |
|
meade_UTC10
2016/07/06 05:40:12
In the other files, we've always put the construct
| |
| 7 // TODO: add fallback: Constructor(DOMString variable, DOMString fallback) | |
|
meade_UTC10
2016/07/06 05:40:12
Should be TODO(anthonyhsk): ...
| |
| 8 ] interface CSSVariableReferenceValue { | |
| 9 attribute DOMString variable; | |
|
meade_UTC10
2016/07/06 05:40:12
Let's make this readonly.
readonly attribute DOMS
| |
| 10 // TODO: add fallback: attribute CSSTokenStreamValue fallback; | |
| 11 }; | |
| OLD | NEW |