blob: f4c4471331dd2c8709cf4e24d8d62e287aa2d062 [file] [log] [blame]
// Copyright 2017 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.
// Represents the product of one or more CSSNumericValues.
// https://drafts.css-houdini.org/css-typed-om/#cssmathsub
[
Constructor(CSSNumberish... args),
Exposed=(Window,LayoutWorklet,PaintWorklet),
RaisesException=Constructor
] interface CSSMathProduct : CSSMathValue {
readonly attribute CSSNumericArray values;
};