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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.idl

Issue 2122193003: [Typed-OM] Add CSSTokenStreamValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add test for CSSTokenStreamValue 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.idl b/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.idl
similarity index 60%
copy from third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.idl
copy to third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.idl
index 8173d5e004b40a480a2ec31406aa891e5fe4eeb4..9746a4be696a73c82a3a5d1a93db2e03fa0c7f77 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.idl
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.idl
@@ -5,8 +5,7 @@
[
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM,
-] interface CSSTransformComponent {
- readonly attribute DOMString cssText;
- boolean is2D();
- CSSMatrixTransformComponent asMatrix();
+] interface CSSTokenStreamValue : CSSStyleValue {
+ iterable<DOMString>;
+// TODO(anthonyhkf): change to iterable<(DOMString or CSSVariableReferenceValue)>;
};

Powered by Google App Engine
This is Rietveld 408576698