blob: ae23063e030289de026f7dc9dc4a2d074f5fed1a [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.
// https://w3c.github.io/mediacapture-main/#overconstrainederror-object
// TODO(guidou): OverconstrainedError should be an Error subclass and not an
// interface. http://crbug.com/769726
[
Exposed=Window
] interface OverconstrainedError {
constructor(DOMString constraint, DOMString message);
readonly attribute DOMString name;
readonly attribute DOMString? message;
readonly attribute DOMString? constraint;
};