blob: ac2ee1e7af593a28377b2e85afecc3aed25e6331 [file] [log] [blame]
// Copyright 2019 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.
// https://drafts.csswg.org/resize-observer/#enumdef-resizeobserverboxoptions
enum ResizeObserverBoxOptions {
"border-box", "content-box"
};
// https://drafts.csswg.org/resize-observer/#dictdef-resizeobserveroptions
dictionary ResizeObserverOptions {
ResizeObserverBoxOptions box = "content-box";
};