summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/document_transition/document_transition_prepare_options.idl
blob: cb52fd68c66674cd3e21f7194d603c7f2a33379f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2020 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.

enum RootTransitionType {
  "none",
  "cover-down",
  "cover-left",
  "cover-right",
  "cover-up",
  "explode",
  "fade",
  "implode",
  "reveal-down",
  "reveal-left",
  "reveal-right",
  "reveal-up"
};

dictionary DocumentTransitionPrepareOptions {
  RootTransitionType rootTransition;
  sequence<Element?> sharedElements;
};