Tried Servo in Linux, even though the browser is slow in starting up, the page was loading very fast and scrolling the page is butter smooth! This Servo with Rust will redefine Browser and i wish this will restore the Crown back to Mozilla Firefox!
Servo nightly builds on Windows now available
91–100 of 117 posts
Re: Servo nightly builds on Windows now available
#92We're all exited about Servo (and Rust) and I'm really looking forward to using it. But what makes software that's used everyday feel great are the small details. I can't use Chrome (for consumption, though I use it for development) because of the way it renders text and a few other UI annoyances. A browser is a lot of things, but to me, it's first and foremost a reading platform. So please, do whatever you can to us…
Re: Servo nightly builds on Windows now available
#93Earlier quoted context omitted.
Improving HTML + CSS performance is absolutely one of the goals of Servo. Here's a video from pcwalton demonstrating reflow (HTML), repainting, and CSS animations on the GPU in Servo: https://air.mozilla.org/bay-area-rust-meetup-february-2016/#... (much of this code is being uplifted to Firefox as WebRender). It's true that Servo won't have any effect on Javascript performance, but WASM won't have any effect on HTML…
I understand that, but the idea that HTML + CSS can only be sped up by some hugely parallel structure requiring a whole new programming language and browser engine is really quite shocking. I think once webassembly is established and in use, we will start to see steps in the direction of replacing HTML + CSS altogether, with something that has performance in mind.
Re: Servo nightly builds on Windows now available
#94Earlier quoted context omitted.
Haha. As if there is no development going on in V8. Rewriting anything doesn't mean it will beat it's competitors.
First of, isn't V8 the JavaScript engine of Chrome? That's a bit apples to oranges comparison, no? One thing Servo didn't touch is JS Virtual machine, it's still SpiderMonkey. Rewriting that AND the layout engine would be suicidal.
Re: Servo nightly builds on Windows now available
#95Earlier quoted context omitted.
I understand that, but the idea that HTML + CSS can only be sped up by some hugely parallel structure requiring a whole new programming language and browser engine is really quite shocking. I think once webassembly is established and in use, we will start to see steps in the direction of replacing HTML + CSS altogether, with something that has performance in mind.
A new programming language is not required, it's just a bonus to help developers handling safety and concurrency.
Re: Servo nightly builds on Windows now available
#96Re: Servo nightly builds on Windows now available
#97Earlier quoted context omitted.
> The world needs a new browser engine > As a non-dev I expect you are just responding to the inherent lack of performance that the javascript + html + css bundle shamelessly provides, which Servo will do nothing to sort out. Webassembly on the other hand is the first step to bringing superior performance to all browsers.
Would web assembly help out with desktop web applications running on stuff like electron?
Re: Servo nightly builds on Windows now available
#98Re: Servo nightly builds on Windows now available
#99Earlier quoted context omitted.
Improving HTML + CSS performance is absolutely one of the goals of Servo. Here's a video from pcwalton demonstrating reflow (HTML), repainting, and CSS animations on the GPU in Servo: https://air.mozilla.org/bay-area-rust-meetup-february-2016/#... (much of this code is being uplifted to Firefox as WebRender). It's true that Servo won't have any effect on Javascript performance, but WASM won't have any effect on HTML…
I understand that, but the idea that HTML + CSS can only be sped up by some hugely parallel structure requiring a whole new programming language and browser engine is really quite shocking. I think once webassembly is established and in use, we will start to see steps in the direction of replacing HTML + CSS altogether, with something that has performance in mind.
Re: Servo nightly builds on Windows now available
#100Earlier quoted context omitted.
A new programming language is not required, it's just a bonus to help developers handling safety and concurrency.
It seems like a valid point that many of the details of HTML and CSS, while you can use all kinds of fancy techniques to make them a little faster, impose limits on performance.