// 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.
module blink.mojom;
// Indicates if an item is in a document tree or in a shadow tree, per the
// Shadow DOM spec: https://w3c.github.io/webcomponents/spec/shadow/
enum TreeScopeType {
kDocument,
kShadow,
};