Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upReplace Page with BrowsingContext #11031
Closed
Comments
|
I am working on this |
bors-servo
added a commit
that referenced
this issue
May 6, 2016
Combine Page into BrowsingContext Fixes #11031. `Page` and `BrowsingContext` have similar use cases and we decided it would be best to join the two. This is the ground work for actually using session history in the `BrowsingContext` to implement the History API. r? @jdm <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11044) <!-- Reviewable:end -->
bors-servo
added a commit
that referenced
this issue
May 6, 2016
Combine Page into BrowsingContext Fixes #11031. `Page` and `BrowsingContext` have similar use cases and we decided it would be best to join the two. This is the ground work for actually using session history in the `BrowsingContext` to implement the History API. r? @jdm <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11044) <!-- Reviewable:end -->
bors-servo
added a commit
that referenced
this issue
May 6, 2016
Combine Page into BrowsingContext Fixes #11031. `Page` and `BrowsingContext` have similar use cases and we decided it would be best to join the two. This is the ground work for actually using session history in the `BrowsingContext` to implement the History API. r? @jdm <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11044) <!-- Reviewable:end -->
bors-servo
added a commit
that referenced
this issue
May 7, 2016
Combine Page into BrowsingContext Fixes #11031. `Page` and `BrowsingContext` have similar use cases and we decided it would be best to join the two. This is the ground work for actually using session history in the `BrowsingContext` to implement the History API. r? @jdm <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11044) <!-- Reviewable:end -->
bors-servo
added a commit
that referenced
this issue
May 7, 2016
Combine Page into BrowsingContext Fixes #11031. `Page` and `BrowsingContext` have similar use cases and we decided it would be best to join the two. This is the ground work for actually using session history in the `BrowsingContext` to implement the History API. r? @jdm <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11044) <!-- Reviewable:end -->
bors-servo
added a commit
that referenced
this issue
May 12, 2016
Combine Page into BrowsingContext Fixes #11031. `Page` and `BrowsingContext` have similar use cases and we decided it would be best to join the two. This is the ground work for actually using session history in the `BrowsingContext` to implement the History API. r? @jdm <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11044) <!-- Reviewable:end -->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As far as I know their purpose is identical. Page is our own wishy-washy concept, it's an
Rc<T>that contains JS-owned data (dangerous!), and it basically delegates to the browsing context anyways.#5236