Josh Matthews

Results 1028 comments of Josh Matthews

Simple manual testcase: foo.html ```html .test { color: red; } this text should be green ``` foo.css: ```css .test { color: green } ``` Run `python3 -m http.server` and load...

Thinking out loud while looking at https://github.com/servo/servo/pull/40059: * preloads are associated with a client (ie. a global) * the preloaded resources need to be retrievable by a fetch operation in...

It may be easiest to have https://github.com/servo/servo/blob/9193b1d310aa54e2e136ba1ed92623f3e623a903/components/script/dom/processingoptions.rs#L509-L513 send a new message to the resource thread to record the preload response. It will be inefficient compared to doing that entirely in...

``` This channel has no recv method because the receiver itself implements the Future trait. To receive a Result, .await the Receiver object directly. ``` That's what we want instead.

For your other questions, can you push your changes? You may need a Mutex instead of RefCell.

The other solution may be to avoid storing the mutable borrow in a variable and just reborrow it when necessary.

I'm also in favour of transitioning Servo onto the objc2. Maintaining all of these hand-written bindings is a pain.

@pronebird Mozilla is not involved with this project in any official capacity, as far as I'm aware.

I often see this error when I run WPT try builds against servo/servo. Usually every other build I run times out assigning a runner.

> We currently create a `Window` with its `final_url` as top-level creation URL. Can you elaborate on this? `final_url` doesn't appear in window.rs, nor us there a field that includes...