Skip to content
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

Linux reftest investigations #24860

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -1344,9 +1344,9 @@ impl LayoutThread {
Some(x) => x,
};

debug!(
"layout: processing reflow request for: {:?} ({}) (query={:?})",
element, self.url, data.reflow_goal
info!(
"layout: processing reflow request for: {:?} ({}) (query={:?}) {:?}",
element, self.url, data.reflow_goal, self.viewport_size,
);
trace!("{:?}", ShowSubtree(element.as_node()));

@@ -1381,7 +1381,7 @@ impl LayoutThread {
self.stylist
.viewport_constraints()
.map_or(current_screen_size, |constraints| {
debug!("Viewport constraints: {:?}", constraints);
info!("Viewport constraints: {:?}", constraints);

// other rules are evaluated against the actual viewport
Size2D::new(
@@ -1392,6 +1392,7 @@ impl LayoutThread {

let viewport_size_changed = self.viewport_size != old_viewport_size;
if viewport_size_changed {
info!("new viewport size: {:?}", self.viewport_size);
if let Some(constraints) = self.stylist.viewport_constraints() {
// let the constellation know about the viewport constraints
rw_data
@@ -676,6 +676,7 @@ def wpt_chunks(platform, make_chunk_task, build_task, total_chunks, processes,
THIS_CHUNK=str(this_chunk),
PROCESSES=str(processes),
GST_DEBUG="3",
RUST_LOG="layout_thread=info",
)
)
# `test-wpt` is piped into `cat` so that stdout is not a TTY
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.