blob: a37eee298f959f2e2164c2e1ba1f141e899ef8f3 [file] [log] [blame]
// 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.
// Schema to test nested namespacee names types in IDL (API names with a dot in
// them). API should end up on `<Browser>.nested.example`.
interface Example {
static undefined exampleFunction();
};
partial interface Nested {
static attribute Example example;
};
partial interface Browser {
static attribute Nested nested;
};