| 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, CSSTokenS
treamValue fallback) |
| 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 fa
llback; |
| 15 }; |
| OLD | NEW |