Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: third_party/WebKit/Source/core/css/cssom/CSSVariableReferenceValue.idl

Issue 2126713002: [Typed-OM] Add CSSVariableReferenceValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renaming things, remove unused things, add license header Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698