blob: 3ff0d265f6cee98dc70fdd820cf61cfd1e14b489 [file] [log] [blame]
// 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 DocumentTransitionInit {
RootTransitionType rootTransition = "none";
DOMTimeStamp duration = 0;
};