Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 [ | |
| 6 // TODO(anthonyhkf): add fallback: Constructor(DOMString variable, CSSToken StreamValue fallback) | |
|
Timothy Loh
2016/07/08 04:36:30
spacing is inconsistent btw, just use one space af
anthonyhkf
2016/07/13 00:14:32
Done.
| |
| 7 Constructor(DOMString variable), | |
| 8 Exposed=(Window,PaintWorklet), | |
| 9 RuntimeEnabled=CSSTypedOM, | |
| 10 // TODO(anthonyhkf): rename CSSStyleVariableReferenceValue | |
| 11 ImplementedAs=CSSStyleVariableReferenceValue | |
| 12 ] interface CSSVariableReferenceValue { | |
| 13 readonly attribute DOMString variable; | |
| 14 // TODO(anthonyhkf): add fallback: readonly attribute CSSTokenStreamValue f allback; | |
| 15 }; | |
| OLD | NEW |