diff --git a/sections/browsers.include b/sections/browsers.include index d95209e0e8..924d1e73b0 100644 --- a/sections/browsers.include +++ b/sections/browsers.include @@ -1002,6 +1002,7 @@ attribute DOMString name; [PutForwards=href, Unforgeable] readonly attribute Location location; readonly attribute History history; + readonly attribute CustomElementRegistry customElements; [Replaceable] readonly attribute BarProp locationbar; [Replaceable] readonly attribute BarProp menubar; [Replaceable] readonly attribute BarProp personalbar; @@ -1072,7 +1073,7 @@
Window
object of the active document.
+ Returns the {{Window}} object of the active document.
customElements
attribute returns the
+ {{CustomElementRegistry}} associated with that {{Window}} object.
+
true
:
-
+
1. If hostSuffixString is the empty string, then return false
.
1. Let host be the result of parsing hostSuffixString.
1. If host is failure, then return false
.
@@ -2047,7 +2051,7 @@
1. If this {{Document}} object's active sandboxing flag set has its
sandboxed document.domain
browsing context flag set, then throw a
"{{SecurityError}}" {{DOMException}}.
- 1. Let effectiveDomain be this {{Document}}'s [=concept/origin=]'s
+ 1. Let effectiveDomain be this {{Document}}'s [=concept/origin=]'s
effective domain.
1. If effectiveDomain is null, then throw a "{{SecurityError}}" {{DOMException}}.
1. If the given value is not
@@ -2422,7 +2426,7 @@
StructuredDeserialize) serialized state.
Pages can add serialized state to the
- session history. These are then deserialized and
+ session history. These are then deserialized and
returned to the script when the
user (or script) goes back in the history, thus enabling authors to use the
"navigation" metaphor even in one-page applications.
diff --git a/sections/changes.include b/sections/changes.include
index 2b413619ba..b686e0a117 100644
--- a/sections/changes.include
+++ b/sections/changes.include
@@ -20,6 +20,8 @@
FileAPI is better defined in FileApi spec.
Fixed issue 1217
+ customElements
IDL attribute to the {{Window}} object