blob: f7ac959fb92701f8ec08979ecc727b88e4d7c2f9 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://drafts.csswg.org/resize-observer/#enumdef-resizeobserverboxoptions
enum ResizeObserverBoxOptions {
"border-box", "content-box", "device-pixel-content-box"
};
// https://drafts.csswg.org/resize-observer/#dictdef-resizeobserveroptions
dictionary ResizeObserverOptions {
ResizeObserverBoxOptions box = "content-box";
};