chromium/third_party/blink/renderer/core/layout/custom/fragment_result_options.idl

// Copyright 2018 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.css-houdini.org/css-layout-api/#dictdef-fragmentresultoptions

dictionary FragmentResultOptions {
  double autoBlockSize = 0;
  double baseline;
  sequence<LayoutFragment> childFragments = [];
  any data = null;
};