diff --git a/index.bs b/index.bs index c8cca83..759e69d 100644 --- a/index.bs +++ b/index.bs @@ -576,35 +576,25 @@ It is exposed to the Javascript [=HTMLIFrameElement=] interface:
-[Exposed=Window] -interface HTMLIFrameElement : HTMLElement { - // [...] - attribute boolean credentialless; - // [...] +partial interface HTMLIFrameElement { + attribute boolean credentialless; };-
The IDL attributes credentialless, +
The IDL attributes credentialless, must reflect the respective content attributes of the same name.
-[ - Global=Window, - Exposed=Window, - LegacyUnenumerableNamedProperties -] -interface Window : EventTarget { - // ... - readonly attribute boolean credentialless; - // ... +partial interface Window { + readonly attribute boolean credentialless; };