chromium/third_party/blink/renderer/core/dom/get_inner_html_options.idl

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Used as the argument to declarative Shadow DOM's getInnerHTML() function.
// This version should be considered deprecated, as we work to standardize the
// Element.getHTML() method instead.

dictionary GetInnerHTMLOptions {
  boolean includeShadowRoots = true;
  sequence<ShadowRoot> closedRoots;
};