New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make document url mutable and implement location.replace() #13418
Merged
+117
−156
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
eca8f1d
Make 'Document.url' field mutable
stshine 9863149
Move fragment navigation into Document object
stshine fb6cc15
Implement Location.replace
stshine 91f3d4f
Remove redundant url clones
stshine 5287e70
Minor fixes and update test expectations
stshine File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.
Remove redundant url clones
They are now redundant since now document.url() returns a struct rather than a reference.
- Loading branch information
commit 91f3d4f4749a1dd53d665f741be85559b820cbe7
| @@ -1239,7 +1239,7 @@ impl ScriptThread { | ||
| let mut reports = vec![]; | ||
|
|
||
| for (_, document) in self.documents.borrow().iter() { | ||
| let current_url = document.url().as_str(); | ||
| let current_url = document.url(); | ||
|
|
||
| for child in document.upcast::<Node>().traverse_preorder() { | ||
| dom_tree_size += heap_size_of_self_and_children(&*child); | ||
| @@ -1249,10 +1249,10 @@ impl ScriptThread { | ||
| if reports.len() > 0 { | ||
| path_seg.push_str(", "); | ||
| } | ||
| path_seg.push_str(current_url); | ||
| path_seg.push_str(current_url.as_str()); | ||
|
|
||
| reports.push(Report { | ||
| path: path![format!("url({})", current_url), "dom-tree"], | ||
| path: path![format!("url({})", current_url.as_str()), "dom-tree"], | ||
stshine
Author
Contributor
|
||
| kind: ReportKind::ExplicitJemallocHeapSize, | ||
| size: dom_tree_size, | ||
| }); | ||
ProTip!
Use n and p to navigate between commits in a pull request.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
I don't see why this is an improvement?