diff --git a/source b/source index 0102bbd865b..107d39a887b 100644 --- a/source +++ b/source @@ -96471,11 +96471,6 @@ interface NotRestoredReasons {
Return navigables.
These descendant-collecting algorithms are described as looking at the DOM tree
- of descendant Document
objects. In reality, this is often not feasible since the DOM
- tree can be in another process from the caller of the algorithm. Instead, implementations
- generally replicate the appropriate trees across processes.
The document-tree child navigables of a
Document
document are given by these steps:
Return navigables.
These descendant-collecting algorithms are described as looking at the DOM tree
+ of descendant Document
objects. In reality, this is often not feasible since the DOM
+ tree can be in another process from the caller of the algorithm. Instead, implementations
+ generally replicate the appropriate trees across processes.
A Document
document is same origin with its
+ ancestors if the following algorithm returns true:
Let origin be document's origin.
For each ancestorNavigable of + document's ancestor navigables:
+ +Let ancestorOrigin be ancestorNavigable's document's origin.
If ancestorOrigin is not same origin with origin, + then return false.
Return true.