// Copyright 2025 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Example WebIDL schema which is invalid as it uses a 'void' type, which is // deprecated in favor of 'undefined'. interface TestWebIdl { static undefined supporteUndefinedType(); static void unsupportedVoidType(); }; partial interface Browser { static attribute TestWebIdl testWebIdl; };