| // Copyright 2014 The Chromium Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| // Spec: http://dom.spec.whatwg.org/#interface-mutationobserver | |
| [ | |
| GarbageCollected | |
| ] dictionary MutationObserverInit { | |
| boolean childList = false; | |
| boolean attributes; | |
| boolean characterData; | |
| boolean subtree = false; | |
| boolean attributeOldValue; | |
| boolean characterDataOldValue; | |
| sequence<DOMString> attributeFilter; | |
| }; |