Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Validation for exposures of types in attributes/operations #619

Open
saschanaz opened this issue Sep 2, 2021 · 1 comment
Open

Validation for exposures of types in attributes/operations #619

saschanaz opened this issue Sep 2, 2021 · 1 comment

Comments

@saschanaz
Copy link
Member

For example, this is invalid:

[Exposed=Window]
interface Foo {};

[Exposed=(Window, Worker)] 
interface Bar {
  attribute Foo foo; // Foo is not available on workers!
};
@saschanaz
Copy link
Member Author

See also w3c/hr-time#130, which basically caused:

[Exposed=(Window,Worker)]
interface PermormanceMark { /* ... */ };

[Exposed=*]
interface Performance { 
  /* ... */
  PerformanceMark mark(/* ... */);
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant