Live data from Hacker News

Browser-Wars History: MD5-Hashed Posts Declassified

robert.ocallahan.org

11–20 of 75 posts

Re: Browser-Wars History: MD5-Hashed Posts Declassified

#11
post #7

2007-jan-21 hash: ec06b3461cf0eaf3d3e4d7a2e429bddb but then $ curl -s https://raw.githubusercontent.com/rocallahan/blog-archive/master/hashed-blog1.txt | md5 9ba0c5cba20cff553500f034f58d5bb7 hmm. that said, the others check out, so i'm sure it's harmless.

Someone said the same thing in the comments. In a reply, the author does not know why the MD5 fails but confirms that the post is correct:

  I wondered if anyone would check :-).

  I'm not sure what the problem is with the first post. It's been a long time. You'll have to take my word for it that the first post is the right text :-).

Re: Browser-Wars History: MD5-Hashed Posts Declassified

#13
post #11
post #7

2007-jan-21 hash: ec06b3461cf0eaf3d3e4d7a2e429bddb but then $ curl -s https://raw.githubusercontent.com/rocallahan/blog-archive/master/hashed-blog1.txt | md5 9ba0c5cba20cff553500f034f58d5bb7 hmm. that said, the others check out, so i'm sure it's harmless.

Someone said the same thing in the comments. In a reply, the author does not know why the MD5 fails but confirms that the post is correct: I wondered if anyone would check :-). I'm not sure what the problem is with the first post. It's been a long time. You'll have to take my word for it that the first post is the right text :-).

Different encodings for line endings?

Re: Browser-Wars History: MD5-Hashed Posts Declassified

#15
post #9

Opera made the bet he proposed and lead themselves down a path to irrelevance.

Opera also lost most of their distinctiveness (i.e. features) along the way, laid off the bulk of their developers and sold out to a consortium including Qihoo360 (who, as well as the usual FUD—well-founded or not—about Chinese companies, were simultaneously found to be really bad at being a competent Certificate Authority). There’s plenty of scope for Mozilla to have used WebKit and not done the subsequent parts - Brave’s perhaps as good an example of that as any.

Saying that, roc proposes porting XUL and XPCOM which are largely dead these days (the former by virtue of Firefox switching to WebExtensions). With browser.html for Servo being a thing, building Firefox’s UI in a way that it would work in WebKit is more possible than ever.

Re: Browser-Wars History: MD5-Hashed Posts Declassified

#16
post #3

Earlier quoted context omitted.

Web developers code to Web browsers, so bugs in Web browsers lead to sites depending on those bugs, making those bugs unfixable unless you have developers testing in multiple browsers. Spec bugs don't become unfixable that way.

It doesn't have to be this way. Apple doesn't have fear of breaking old apps sometimes, for example, and they are successful. I think that absurd backwards compatibility should be considered harmful and some breakage should be normal. It's always possible to install old browser into virtual machine, if content is so precious.

Apple doesn’t have the competitive pressure that I can take my broken iOS app and run it somewhere else as-is, or tell my customers to do that.

“It works in Chrome” (and previously IE) is a real issue and the browser that broke compatibility like that would have to be supported (potentially through the coercive power of its own market share - see the initial “any open source browser versus IE is a good thing” switching to “we need multiple browser engines, even if they’re all open source”) by the others or face irrelevance.

Re: Browser-Wars History: MD5-Hashed Posts Declassified

#19
I wonder whether this scenario is now going to play out in the opposite way, with Google ditching Blink for Servo once Mozilla finishes morphing Gecko into Servo with the Firefox Quantum project.

Who would win then? Google's money and marketing power, or Mozilla's independence, trustworthiness and being the renderer's creator?

Re: Browser-Wars History: MD5-Hashed Posts Declassified

#20
post #2

> the more code engines share, the more de facto standardization of bugs we would see, so having genuinely separate implementations is very important. Well it's not like there aren't any bugs in the specs. And whether there are bugs in the code or the specification, it's the same process for fixing them : politics :)

There has been a lot of progress recently on the web-platform-tests project [1]. This is a cross-vendor effort to improve interoperability on the web platform through testing.

Historically the process for building web-platform features has been to write a spec and then assume that implementations of the spec would reach compatibility in an ad-hoc manner by patching until sites worked. The big innovation of the last decade — still controversial to some — was the idea that it's OK to adjust the specs themselves when implementations have converged on some other behaviour or when the spec is otherwise wrong. The goal for the future is to use the same engineering discipline that you would use for developing software to developing the platform itself. In particular the objective is:

* Every change to a spec that influences browser behaviour must be accompanied by a corresponding test case. * Every change to a browser that affects a cross-platform feature that isn't already adequetely tested must be accompanied by cross-browser test cases. * The results of those tests must be visible to browser vendors in a way that makes it easy to identify the higest value bugfixes (e.g. cases where N-1 browsers agree and one is different, or cases where a spec change makes previously correct behaviour — which may not have shipped yet, but just be enabled on nightly builds or behing a flag — wrong).

Apart from the work of actually writing the test, achieving those goals involves a lot of infrastrucutre work to ensure that the cross-browser tests are well integrated into the development cycle of each browser and are able to cover as many scenarios as possible (testing often involves manipulating the browser in a way that is not exposed to normal web content). Despite the large scope of the project, I think it's agreed that modernising the way the platform is developed, and prioritising interoperability at all stages of spec and browser development is essential to avoiding existential threats to the open web in the long term. Certainly Mozilla put a lot of resources into post-hoc fixes for site-compatibility issues, and whilst there will probably always be some bugs that slip through, it will be much more efficient to catch those problems up-front before they ship to end users.

I sadly don't have data to backc this up, but I'm pretty sure we're already seeing the effects of this effort, with recent, complex, features shipping with fewer cross-browser issues that we would have predicted five years ago.

[1] http://web-platform-tests.org/

Post reply on HN