From e7311e5c58ca8e8789e7c9c5d4d9fd9a928c0969 Mon Sep 17 00:00:00 2001
From: Anne van Kesteren If target is null, then return. If noopener and replace are true, then disown target. Parse the URL given by subject's
When an href
attribute, relative to subject's
node document.iframe
element is inserted
into a document that has a browsing context, the
user agent must create a new browsing
- context, set the element's nested browsing context to the newly-created
- browsing context, and then process the iframe
attributes
- for the "first time".iframe
attributes for the "first time".
When an iframe
element is removed
from a document, the user agent must newly-created browsing
- context.
If element has a name
attribute, then set the browsing context name of element's new
@@ -31164,7 +31161,8 @@ interface HTMLObjectElement : HTMLElement {
If the object
element's nested browsing context is null, set
the element's nested browsing context to a newly-created browsing context.
The object
element must be associated with a newly created nested
browsing context, if it does not already have one.
A browsing context can have a creator browsing context, - the browsing context that was responsible for its creation. If a browsing - context has a parent browsing context, then that is its creator browsing - context. Otherwise, if the browsing context has an opener browsing - context, then that is its creator browsing context. Otherwise, the - browsing context has no creator browsing context.
- -If a browsing context context has a creator browsing - context creator, it also has the following properties. In what follows, let - creator document be creator's active document at the time - context is created:
- -A browsing context has an associated creator origin (null or an + origin), creator URL (null or a URL), + creator base URL (null or a URL), and creator + referrer policy (null or a referrer policy). These are all initially null.
To create a new browsing context, - optionally given noopener:
+To create a new browsing context, given
+ null or a Document
object creator:
If noopener was not given, let it be false.
Let browsingContext be a new browsing context.
If creator is non-null, then set browsingContext's creator + origin to creator's origin, browsingContext's + creator URL to creator's URL, + browsingContext's creator base URL to creator's base URL, and browsingContext's creator + referrer policy to creator's referrer policy.
Let realm execution context be the result of creating a new JavaScript realm with the following customizations:
@@ -77044,25 +77026,19 @@ dictionary DragEventInit : MouseEventInit {Set the active document of browsingContext to document.
Set the origin of document:
+If browsingContext's creator origin is + non-null, then set document's origin to it.
If browsingContext has a creator browsing context, then the - origin of document is the creator origin.
Otherwise, set document's origin to a unique opaque origin.
Otherwise, the origin of document is a unique opaque origin.
If browsingContext has a creator browsing context, then set +
If browsingContext's creator URL is non-null, then set document's referrer to the serialization of creator URL.
If browsingContext has a creator browsing context, then set +
If browsingContext's creator referrer policy is non-null, then set document's referrer policy to - the creator referrer policy.
Implement the sandboxing for document.
If noopener is false, browsingContext is a
- top-level browsing context, and creator origin is same
- origin with document's origin, then copy the sessionStorage
storage area of the creator origin
- from the creator browsing context into browsingContext's set of session
- storage areas. These areas must be considered separate, not affecting each other in any
- way.
Return browsingContext.
To create a new top-level browsing + context:
+ +Return the result of creating a new browsing context with null.
To create a new auxiliary browsing + context, given a browsing context opener: + +
Let browsingContext be the result of creating a new browsing + context with opener's active document.
Set browsingContext's opener browsing context to + opener.
Assert: browsingContext's creator origin is non-null.
If browsingContext's creator origin is
+ same origin with browsingContext's active document's
+ origin, then copy the sessionStorage
+ storage area of opener into browsingContext's set of session storage areas.
+ These areas must be considered separate, not affecting each other in any way.
Return browsingContext.
The user agent may offer the user one of:
Set chosen to a new - top-level browsing context given noopener, and set new to - true.
Set chosen to the result of creating a new top-level browsing + context and set new to true.
Set chosen to an existing top-level browsing context.
Set chosen to a new
- auxiliary browsing context given noopener with the opener
- browsing context being current, and set new to true. If
- name is not an ASCII case-insensitive match for "_blank
", then chosen's name must be set to name.
Set new to true.
If noopener is true, then set chosen to the result of + creating a new top-level browsing context.
Otherwise:
+ +Set chosen to the result of creating a new auxiliary browsing
+ context with current. Then if name is not an ASCII
+ case-insensitive match for "_blank
", then chosen's
+ name must be set to name.
Let flagSet be current's active document's + active sandboxing flag set.
If flagSet's sandboxed navigation browsing context flag is + set, then current must be set as chosen's one permitted + sandboxed navigator.
If flagSet's sandbox propagates to auxiliary browsing contexts + flag is set, then all the flags that are set in flagSet must be set in + chosen's popup sandboxing flag set.
If the newly created browsing context is immediately navigated, then the navigation will be done with replacement
@@ -77851,7 +77868,6 @@ console.assert(iframeWindow.frameElement === null);
Set chosen to current.
If new is true, then:
- -Let flagSet be current's active document's - active sandboxing flag set.
If flagSet's sandboxed navigation browsing context flag is set, - then current must be set as chosen's one permitted sandboxed - navigator.
If flagSet's sandbox propagates to auxiliary browsing contexts - flag is set, then all the flags that are set in flagSet must be set in - chosen's popup sandboxing flag set.
Return chosen and new.
Document
object must have a separate object for its relevant global
object's sessionStorage
attribute.
- While creating a new browsing context, the session storage area is sometimes copied over.
+While creating a new auxiliary browsing context, the session storage area is copied over.
When a frame
element is created as an active frame
element, or becomes an active frame
element after not having been
one, the user agent must create a new browsing
- context, set the element's nested browsing context to the newly-created
- browsing context, and then process the frame
attributes for
- the first time. If the element has a name
- attribute, the browsing context name must be set to the value of this attribute;
- otherwise, the browsing context name must be set to the empty string.
frame
attributes for the first time. If the element has a name
attribute, the browsing context name must be set
+ to the value of this attribute; otherwise, the browsing context name must be set to
+ the empty string.
When a If document's URL is
frame
element stops being an active frame
element, the user agent must discard
From 01cc8aaf33beeaff3caf0b3c2e85db077e26e45d Mon Sep 17 00:00:00 2001
From: Anne van Kesteren about:blank
, and document's browsing
- context has a creator browsing context, then return the creator base
+ context's creator base URL is non-null, then return the creator base
URL.
A browsing context has an associated creator origin (null or an - origin), creator URL (null or a URL), - creator base URL (null or a URL), and creator - referrer policy (null or a referrer policy). These are all initially null.
+ origin), creator URL (null or a URL), creator base + URL (null or a URL), and creator referrer policy (null or a + referrer policy). These are all initially null.If document's URL is
about:blank
, and document's browsing
- context's creator base URL is non-null, then return the creator base
+ context's creator base URL is non-null, then return that creator base
URL.
Add document to browsingContext's session history.
Return browsingContext.
sessionStorage
storage area of opener into browsingContext's set of session storage areas.
These areas must be considered separate, not affecting each other in any way.
+
Return browsingContext.
Set chosen to the result of creating a new auxiliary browsing
context with current. Then if name is not an ASCII
- case-insensitive match for "_blank
", then chosen's
- name must be set to name.
_blank
", then set
+ chosen's name to
+ name.
Let flagSet be current's active document's active sandboxing flag set.
Let new be false.
Let sandboxingFlagSet be current's active document's + active sandboxing flag set.
If name is the empty string or an ASCII case-insensitive match for
"_self
", then set chosen to current.
The user agent may inform the user that a popup has been blocked.
The user agent may offer the user one of: @@ -77824,36 +77826,37 @@ console.assert(iframeWindow.frameElement === null); remain unchanged.
Set new to true.
If noopener is true, then set chosen to the result of - creating a new top-level browsing context.
If noopener is true and sandboxingFlagSet's + sandbox propagates to auxiliary browsing contexts flag is unset, then set + chosen to the result of creating a new top-level browsing + context.
Otherwise:
Set chosen to the result of creating a new auxiliary browsing
- context with current. Then if name is not an ASCII
- case-insensitive match for "_blank
", then set
- chosen's name to
- name.
Let flagSet be current's active document's - active sandboxing flag set.
If name is not an ASCII case-insensitive match for "_blank
", then set chosen's name to name.
If flagSet's sandboxed navigation browsing context flag is - set, then current must be set as chosen's one permitted - sandboxed navigator.
If sandboxingFlagSet's sandboxed navigation browsing context + flag is set, then current must be set as chosen's one + permitted sandboxed navigator.
If flagSet's sandbox propagates to auxiliary browsing contexts - flag is set, then all the flags that are set in flagSet must be set in - chosen's popup sandboxing flag set.
If sandboxingFlagSet's sandbox propagates to auxiliary browsing + contexts flag is set, then all the flags that are set in + sandboxingFlagSet must be set in chosen's popup sandboxing flag + set.
Set chosen to the result of creating a new auxiliary browsing context with current.
If name is not an ASCII case-insensitive match for "_blank
", then set chosen's name to name.
If sandboxingFlagSet's sandboxed navigation browsing context flag is set, then current must be set as chosen's one permitted sandboxed navigator.
If name is not an ASCII case-insensitive match for "_blank
", then set chosen's name to name.
If the newly created browsing context is immediately
Date: Tue, 22 Jan 2019 16:48:07 +0100
Subject: [PATCH 06/13] sandboxing affects non-auxiliary top-level too
---
source | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/source b/source
index 49df4b5a650..c333ce2332c 100644
--- a/source
+++ b/source
@@ -77833,10 +77833,8 @@ console.assert(iframeWindow.frameElement === null);
Set new to true. If noopener is true and sandboxingFlagSet's
- sandbox propagates to auxiliary browsing contexts flag is unset, then set
- chosen to the result of creating a new top-level browsing
- context. If noopener is true, then set chosen to the result
+ of creating a new top-level browsing context. Otherwise: If sandboxingFlagSet's sandboxed navigation browsing context
flag is set, then current must be set as chosen's one
permitted sandboxed navigator. If sandboxingFlagSet's sandbox propagates to auxiliary browsing
- contexts flag is set, then all the flags that are set in
- sandboxingFlagSet must be set in chosen's popup sandboxing flag
- set. If sandboxingFlagSet's sandbox propagates to auxiliary browsing
+ contexts flag is set, then all the flags that are set in sandboxingFlagSet
+ must be set in chosen's popup sandboxing flag set. If name is not an ASCII case-insensitive match for " The keyword indicates that any newly created browsing context which results from
- following the hyperlink will be disowned, which means that its The keyword indicates that any newly created top-level browsing context which
+ results from following the hyperlink is not an auxiliary browsing
+ context. E.g., its See also the processing model where the branching between
+ an auxiliary browsing context and a top-level browsing context is
+ defined. This typically creates an auxiliary browsing context (assuming there is no
+ existing browsing context whose browsing context name is
+ " This creates a top-level browsing context that is not an auxiliary browsing
+ context (assuming the same thing): These are equivalent and only navigate the parent browsing context: A browsing context has a corresponding A browsing context has an opener browsing context, which
+ is null or a browsing context. It is initially null. A browsing context can be disowned. A browsing context has a session history, which lists the
A browsing context that is not a nested browsing context has no
- parent browsing context, and is the top-level browsing
- context of all the browsing contexts for which it is an ancestor browsing
- context. A browsing context that is not a nested browsing context, has no
+ parent browsing context, and whose opener browsing context is null, is
+ the top-level browsing context of all the browsing contexts for which it
+ is an ancestor browsing context. The transitive closure of parent browsing contexts
for a browsing context that is a nested browsing context gives the list
@@ -77287,31 +77315,28 @@ dictionary DragEventInit : MouseEventInit {
Returns the Returns the Returns null if there isn't one. Returns the Returns the Returns null if there isn't one, and in cross-origin situations. The If the current browsing context is disowned, then return
+ null. If the current browsing context has no opener browsing context,
+ then return null. Return the current browsing context's opener browsing context's
+ The If the given value is null, then disown the current
+ browsing context and return. Return ? OrdinaryDefineOwnProperty(this If a browsing context is disowned, its Otherwise, if a browsing context is not disowned, then scripts in
+ that browsing context can use The An auxiliary browsing context has an opener browsing
- context, which is the browsing context from which the auxiliary browsing
- context was created. An auxiliary browsing context can be disowned. The If the current browsing context is disowned, then return
- null. If the current browsing context has no opener browsing context,
- then return null. Return the current browsing context's opener browsing context's
- The If the given value is null, then disown the current
- browsing context and return. Perform OrdinaryDefineOwnProperty(this If a browsing context is disowned, its Otherwise, if a browsing context is not disowned, then scripts in
- that browsing context can use If noopener is true, then disown target
- browsing context and return null. If noopener is true, then return null. Return target browsing context's The keyword indicates that any newly created top-level browsing context which
results from following the hyperlink is not an auxiliary browsing
- context. E.g., its See also the processing model where the branching between
From a4ffb2f52b908f6add986cc61e09c25c17b33143 Mon Sep 17 00:00:00 2001
From: Anne van Kesteren This typically creates an auxiliary browsing context (assuming there is no
existing browsing context whose browsing context name is
- " If noopener is true, then return null. Otherwise, if new is false, set target browsing context's opener
+ browsing context to source browsing context. If new is true this is done as part of creating a new auxiliary
+ browsing context. Return target browsing context's The keyword indicates that any newly created top-level browsing context which
- results from following the hyperlink is not an auxiliary browsing
+ results from following the hyperlink will not be an auxiliary browsing
context. E.g., its When an When an Let browsingContext be the result of creating a new browsing
+ context with element's node document. Set the element's nested browsing context to
+ browsingContext. If element has a Process the When an If element's nested browsing context is null, then: Set element's nested browsing context to a newly-created browsing context with
- element's node document. Let browsingContext be the result of creating a new browsing
+ context with element's node document. Set element's nested browsing context to
+ browsingContext. If element has a A browsing context has an opener browsing context, which
is null or a browsing context. It is initially null. A browsing context can be disowned. A browsing context can be disowned, which is a
+ boolean. It is initially false. A browsing context has a session history, which lists the
To set the active document of a browsing context
browsingContext to a A browsing context has an associated creator origin (null or an
- origin), creator URL (null or a URL), creator base
- URL (null or a URL), and creator referrer policy (null or a
- referrer policy). These are all initially null. A browsing context has an associated creator origin (null or returns an
+ origin), creator URL (null or returns a URL), creator
+ base URL (null or returns a URL), and creator referrer policy (null
+ or returns a referrer policy). These are all initially null. Let browsingContext be a new browsing context. If creator is non-null, then set browsingContext's creator
- origin to creator's origin, browsingContext's
- creator URL to creator's URL,
- browsingContext's creator base URL to creator's base URL, and browsingContext's creator
- referrer policy to creator's referrer policy. If creator is non-null, then set
+ browsingContext's creator origin to return creator's
+ origin, browsingContext's creator URL to return
+ creator's URL, browsingContext's
+ creator base URL to return creator's base URL, and browsingContext's creator referrer policy to
+ return creator's referrer
+ policy. Let realm execution context be the result of creating a new JavaScript
@@ -77114,7 +77131,7 @@ dictionary DragEventInit : MouseEventInit {
Certain elements (for example, A browsing context that is not a nested browsing context, has no
- parent browsing context, and whose opener browsing context is null, is
- the top-level browsing context of all the browsing contexts for which it
- is an ancestor browsing context. A browsing context that has no parent browsing context is the top-level browsing context for itself and all of the browsing contexts for
+ which it is an ancestor browsing context. It is possible to create new browsing contexts that are related to a top-level browsing
+ context without being nested through an element. Such browsing contexts are called auxiliary
+ browsing contexts. Auxiliary browsing contexts are always top-level browsing contexts. The transitive closure of parent browsing contexts
for a browsing context that is a nested browsing context gives the list
@@ -77312,7 +77334,8 @@ dictionary DragEventInit : MouseEventInit {
- Returns the Returns the Returns the Returns null if there isn't one. Returns null if there isn't one or if it has been set to null. Can be set to null. If the current browsing context is disowned, then return
+ If the current browsing context's disowned is true, then return
null. If the current browsing context has no opener browsing context,
- then return null. If the current browsing context's opener browsing context is
+ null, then return null. Return the current browsing context's opener browsing context's
The If the given value is null, then disown the current
- browsing context and return. If the given value is null, then set the current browsing context's
+ disowned to true and return. Return ? OrdinaryDefineOwnProperty(this If a browsing context is disowned, its Otherwise, if a browsing context is not disowned, then scripts in
- that browsing context can use Otherwise, if a browsing context's disowned is false, then scripts
+ in that browsing context can use It is possible to create new browsing contexts that are related to a top-level browsing
- context without being nested through an element. Such browsing contexts are called auxiliary
- browsing contexts. Auxiliary browsing contexts are always top-level browsing contexts. A browsing context A is familiar
@@ -89021,9 +89031,9 @@ import "https://example.com/foo/../module2.mjs";
origin-domain with A.
When a When a Let browsingContext be the result of creating a new browsing
+ context with element's node document. Set element's nested browsing context to
+ browsingContext. If element has a Process the When a Certain elements (for example, A browsing context has an opener browsing context, which
is null or a browsing context. It is initially null. A browsing context can be disowned, which is a
- boolean. It is initially false. A browsing context has a disowned boolean. It
+ is initially false. A browsing context has a session history, which lists the
Return the result of creating a new browsing context with null. This creates a top-level browsing context. To create a new auxiliary browsing
context, given a browsing context opener:
@@ -77128,6 +77130,9 @@ dictionary DragEventInit : MouseEventInit {
Return browsingContext. This creates a top-level browsing context that is also an
+ auxiliary browsing context.
+ _blank
", then set chosen's name to name.not allowed
Annotation
·
- Indicates that any browsing context created by following the hyperlink is
- disowned.
+ Creates a top-level browsing context that is not an auxiliary
+ browsing context if the hyperlink would create either of those to begin with (i.e., has
+ an appropriate
target
attribute value).
@@ -23701,9 +23702,8 @@ document.body.appendChild(wbr);
not allowed
Annotation
·
- Indicates that any browsing context created by following the hyperlink is
- disowned and will not get a `
+ Referer
` (sic)
- header.No `
Referer
` (sic) header will be included.
+ Additionally, has the same effect as noopener
.
@@ -24452,9 +24452,32 @@ document.body.appendChild(wbr);
data-x="hyperlink annotation">annotates any other hyperlinks created by the element (the
implied hyperlink, if no other keywords create one).
- window.opener
attribute will be null.window.opener
attribute will be
+ null.example
"):
+
+ <a href=help.html target=example>Help!</a>
+
+ <a href=help.html target=example rel=noopener>Help!</a>
+ <a href=index.html target=_parent>Home</a>
+ <a href=index.html target=_parent rel=noopener>Home</a>
Link type "
@@ -76923,6 +76946,11 @@ dictionary DragEventInit : MouseEventInit {
noreferrer
"WindowProxy
object.Document
objects that the browsing context has presented, is presenting,
or will present. A browsing context's active document is
@@ -77132,10 +77160,10 @@ dictionary DragEventInit : MouseEventInit {
context">ancestor of B, or if the browsing context A is the
parent browsing context of B.Navigating nested browsing contexts in the DOM
-
@@ -77338,6 +77363,46 @@ dictionary DragEventInit : MouseEventInit {
top-level browsing context's top
WindowProxy
for the top-level browsing context.opener
Window
for the opener browsing context.parent
WindowProxy
for the parent browsing context.frameElement
Element
for the browsing context container.WindowProxy
object.
+ opener
attribute's getter must run these
+ steps:
+
+
+ WindowProxy
object.opener
attribute's setter, must run these steps:
+
+
+ Window
object, "opener
", { [[Value]]: the given value, [[Writable]]: true, [[Enumerable]]: true,
+ [[Configurable]]: true }).window.opener
attribute is null. That prevents scripts in the
+ browsing context from changing any properties of its opener browsing
+ context's Window
object (i.e., the Window
object from which the
+ browsing context was created).window.opener
to
+ change properties of its opener browsing context's Window
object. For
+ example, a script running in the browsing context can change the value of window.opener.location
, causing the opener browsing context to
+ navigate to a completely different document.parent
IDL attribute, on getting, must run the
following algorithm:Navigating auxiliary browsing contexts in the DOM
-
- opener
attribute's getter must run these
- steps:
-
-
- WindowProxy
object.opener
attribute's setter, must run these steps:
-
-
- Window
object, "opener
", { [[Value]]: the given value, [[Writable]]: true, [[Enumerable]]: true,
- [[Configurable]]: true }). Rethrow any exceptions.window.opener
attribute is null. That prevents scripts in the
- browsing context from changing any properties of its opener browsing
- context's Window
object (i.e., the Window
object from which the
- browsing context was created).window.opener
to
- change properties of its opener browsing context's Window
object. For
- example, a script running in the browsing context can change the value of window.opener.location
, causing the opener browsing context to
- navigate to a completely different document.WindowProxy
object.window.opener
attribute will be
+ context. E.g., its window.opener
attribute will be
null.example
"):example
"):
From 28f5cf3442145965a180aee80083ed64ab355f2b Mon Sep 17 00:00:00 2001
From: Anne van Kesteren <a href=help.html target=example>Help!</a>
WindowProxy
object.window.opener
attribute will be
null.
- iframe
element is inserted
- into a document that has a browsing context, the
- user agent must create a new browsing
- context with the element's node document, set the element's nested
- browsing context to the newly-created browsing context, and then process
- the iframe
attributes for the "first time".iframe
element element is inserted into a document that has a browsing
+ context, the user agent must run these steps:
+
+
+
name
attribute, then
+ set browsingContext's name to the value of
+ this attribute.iframe
attributes for the "first time".iframe
element is removed
from a document, the user agent must name attribute, if present, must be a
valid browsing context name. The given value is used to name the nested
- browsing context. When the browsing context is created, if the attribute
- is present, the browsing context name must be set to the value of this attribute;
- otherwise, the browsing context name must be set to the empty string.
-
@@ -76949,7 +76960,8 @@ dictionary DragEventInit : MouseEventInit {
name
- attribute, then set the browsing context name of element's new
- nested browsing context to the value of this attribute.Document
objects that the browsing context has presented, is presenting,
@@ -76980,6 +76992,10 @@ dictionary DragEventInit : MouseEventInit {
browsing context, since that browsing context was discarded.Creating browsing contexts
+
Document
object document, run these
steps:
-
Nested browsing contexts
+ Related browsing contexts
iframe
elements) can instantiate further browsing contexts. These elements are called DragEventInit : MouseEventInit {
context">ancestor of B, or if the browsing context A is the
parent browsing context of B.Navigating nested browsing contexts in the DOM
+ Navigating related browsing contexts in
+ the DOM
top
WindowProxy
for the top-level browsing context.opener
opener
[ = value ]Window
for the opener browsing context.WindowProxy
for the opener browsing context.parent
-
WindowProxy
object.opener
attribute's setter, must run these steps:
-
Window
object, "opener
", { [[Value]]: the given value, [[Writable]]: true, [[Enumerable]]: true,
@@ -77389,14 +77414,14 @@ dictionary DragEventInit : MouseEventInit {
If a browsing context's disowned is true, its
window.opener
attribute is null. That prevents scripts in the
browsing context from changing any properties of its opener browsing
context's Window
object (i.e., the Window
object from which the
browsing context was created).window.opener
to
+ window.opener
to
change properties of its opener browsing context's Window
object. For
example, a script running in the browsing context can change the value of window.opener.location
, causing the opener browsing context to
@@ -77470,23 +77495,8 @@ console.assert(iframeWindow.frameElement === null);
data-x="">element was removed from the document.Auxiliary browsing contexts
-
- Security
Window
objects whose browsing
- contexts do not have an opener or ancestor relationship. This holds even if the two
- Window
objects are same origin.Window
objects are same origin.
frame
element is created as an active frame
- element, or becomes an active frame
element after not having been
- one, the user agent must create a new browsing
- context with the element's node document, set the element's nested
- browsing context to the newly-created browsing context, and then process
- the frame
attributes for the first time. If the element has a name
attribute, the browsing context name must be set
- to the value of this attribute; otherwise, the browsing context name must be set to
- the empty string.frame
element element is created as an active
+ frame
element, or becomes an active frame
element
+ after not having been one, the user agent must run these steps:
+
name
+ attribute, then set browsingContext's name
+ to the value of this attribute.frame
attributes for the first time.frame
element stops being an active frame
element, the user agent must discard
From 5ac6db846aef0614b723ddb4979d85cbcd54d62e Mon Sep 17 00:00:00 2001
From: Anne van Kesteren Related browsing contexts
+ Related browsing contexts
iframe
elements) can instantiate further browsing contexts. These elements are called
Date: Tue, 29 Jan 2019 14:11:15 +0100
Subject: [PATCH 13/13] clarify top-level bc creation and fix disowned boolean
phrasing
---
source | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/source b/source
index 974475ae967..b0a7478d3b8 100644
--- a/source
+++ b/source
@@ -76960,8 +76960,8 @@ dictionary DragEventInit : MouseEventInit {
Document
objects that the browsing context has presented, is presenting,
@@ -77103,6 +77103,8 @@ dictionary DragEventInit : MouseEventInit {