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

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

Issue 2036893003: [CSS Typed OM] Rename StyleValue -> CSSStyleValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update more union types Created 4 years, 6 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/StylePropertyMap.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.idl b/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.idl
index fe4eb6d40f3517856f29399f9a58afbee01c98fa..48520fe74f17fee2eada421cd4abef7049a79bf1 100644
--- a/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.idl
+++ b/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.idl
@@ -5,12 +5,12 @@
[
RuntimeEnabled=CSSTypedOM,
] interface StylePropertyMap {
- [RaisesException] void append(DOMString property, (StyleValue or sequence<StyleValue> or DOMString) value);
+ [RaisesException] void append(DOMString property, (CSSStyleValue or sequence<CSSStyleValue> or DOMString) value);
[RaisesException, ImplementedAs=remove] void delete(DOMString property);
- [RaisesException] StyleValue? get(DOMString property);
- [RaisesException] sequence<StyleValue> getAll(DOMString property);
+ [RaisesException] CSSStyleValue? get(DOMString property);
+ [RaisesException] sequence<CSSStyleValue> getAll(DOMString property);
[RaisesException] boolean has(DOMString property);
- [RaisesException] void set(DOMString property, (StyleValue or sequence<StyleValue> or DOMString) value);
- iterable<DOMString, (StyleValue or sequence<StyleValue>)>;
+ [RaisesException] void set(DOMString property, (CSSStyleValue or sequence<CSSStyleValue> or DOMString) value);
+ iterable<DOMString, (CSSStyleValue or sequence<CSSStyleValue>)>;
sequence<DOMString> getProperties();
};
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/StylePropertyMap.cpp ('k') | third_party/WebKit/Source/core/css/cssom/StyleValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698