blob: a211a3c93eed6b6e87caeea1374bbb6134c66a43 [file] [log] [blame]
// 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.
// https://dom.spec.whatwg.org/#interface-event
dictionary EventInit {
boolean bubbles = false;
boolean cancelable = false;
[RuntimeEnabled=ShadowDOMV1] boolean composed = false;
[RuntimeEnabled=ShadowDOMV1] boolean relatedTargetScoped = false;
};