blob: c288ebdd6ca789749bf66cbb3e585d2649de9a39 [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://streams.spec.whatwg.org/#cqs-class
[
Exposed=(Window,Worker,Worklet)
] interface CountQueuingStrategy {
[CallWith=ScriptState, MeasureAs=CountQueuingStrategyConstructor] constructor(QueuingStrategyInit init);
readonly attribute unrestricted double highWaterMark;
// The standard specifies "Function" but the IDL compiler doesn't like it.
[CallWith=ScriptState] readonly attribute any size;
};