Chromium Code Reviews| 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 17d3945065a37198d9b0abd1b1401d1243079a6e..fd38c23f92148591993e05c3ce9a3a14e03b8957 100644 |
| --- a/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.idl |
| +++ b/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.idl |
| @@ -6,12 +6,12 @@ |
| RuntimeEnabled=CSSTypedOM, |
| GarbageCollected |
| ] interface StylePropertyMap { |
| - [RaisesException] void append(DOMString property, (StyleValue or sequence<StyleValue> or DOMString) value); |
| + [RaisesException] void append(DOMString property, (StyleValue or sequence<StyleValue> or DOMString)? value); |
|
Timothy Loh
2016/04/07 03:42:53
Is this changing these to be optional (allow null)
meade_UTC10
2016/04/07 05:41:30
Ah, I think I was trying something out. Fixed.
|
| [RaisesException, ImplementedAs=remove] void delete(DOMString property); |
| - StyleValue? get(DOMString property); |
| - sequence<StyleValue> getAll(DOMString property); |
| - boolean has(DOMString property); |
| - [RaisesException] void set(DOMString property, (StyleValue or sequence<StyleValue> or DOMString) value); |
| + [RaisesException] StyleValue? get(DOMString property); |
| + [RaisesException] sequence<StyleValue> 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>)>; |
| sequence<DOMString> getProperties(); |
| }; |