OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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 | |
haraken
2014/09/10 15:33:43
Add a link to the spec.
adamk
2014/09/10 15:50:51
And please link to the whatwg version: http://dom.
bashi
2014/09/12 05:27:25
Done. Thank you for the pointer!
| |
5 [ | |
6 GarbageCollected | |
7 ] dictionary MutationObserverInit { | |
8 boolean childList = false; | |
9 boolean attributes; | |
10 boolean characterData; | |
11 boolean subtree = false; | |
12 boolean attributeOldValue; | |
13 boolean characterDataOldValue; | |
14 sequence<DOMString> attributeFilter; | |
15 }; | |
OLD | NEW |