chromium/tools/json_schema_compiler/test/web_idl/unsupported_basic_type.idl

// Copyright 2024 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 basic type
// (PrimitiveType(float)) which we don't support in the schema compiler and yet.
interface TestWebIdl {
  static boolean supportedType();
  static float unsupportedType();
};

partial interface Browser {
  static attribute TestWebIdl testWebIdl;
};