Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / core / dom / MutationObserverInit.idl
bloba9f97242355e0f383dcb05f05662104fca7559eb
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.
5 // Spec: http://dom.spec.whatwg.org/#interface-mutationobserver
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;