mirror of
https://github.com/servo/servo.git
synced 2025-06-16 20:34:30 +00:00
Auto merge of #19516 - ferjm:pwm.url, r=jdm
Print url of recorded PWM This makes it a bit easier to compare results with other browsers. - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/19516) <!-- Reviewable:end -->
This commit is contained in:
commit
c4482ebe77
10 changed files with 45 additions and 9 deletions
|
@ -2186,7 +2186,7 @@ impl Document {
|
|||
(DocumentReadyState::Complete, true)
|
||||
};
|
||||
|
||||
let interactive_time = InteractiveMetrics::new(window.time_profiler_chan().clone());
|
||||
let interactive_time = InteractiveMetrics::new(window.time_profiler_chan().clone(), url.clone());
|
||||
|
||||
Document {
|
||||
node: Node::new_document_node(),
|
||||
|
|
|
@ -1557,7 +1557,8 @@ impl ScriptThread {
|
|||
paint_time_metrics: PaintTimeMetrics::new(new_pipeline_id,
|
||||
self.time_profiler_chan.clone(),
|
||||
self.layout_to_constellation_chan.clone(),
|
||||
self.control_chan.clone()),
|
||||
self.control_chan.clone(),
|
||||
load_data.url.clone()),
|
||||
});
|
||||
|
||||
// Pick a layout thread, any layout thread
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue