Slashdot Mirror


WebKit As Broken As Older IE Versions?

An anonymous reader writes "It's not everyday that we get to hear about the potential downsides of using WebKit, but that's just what has happened as Dave Methvin, president of the jQuery foundation and a member of the core programming team that builds the widely used Web programming tool, lamented in a blog post yesterday. While most are happy to cheer for IE's demise, perhaps having three main browser engines is still a good thing. For those that work in the space, does the story ring true? Are we perhaps swearing at the wrong browser when implementing 'workarounds' for Firefox or IE?"

10 of 213 comments (clear)

  1. Peter Kasting's answer by alendit · · Score: 5, Insightful

    If you read TFA (haha!) make sure to scroll down to the comment of Pater Kasting (Chrome dev).

  2. Re:I can say, after having upgraded to mountain li by FyRE666 · · Score: 4, Insightful

    Must admit, although I primarily use Firefox or Chome; I have no problems at all with IE. I don't understand why people would "cheer for its demise". IE9 is a good browser, and I'm all for competition. Less competition in any space is generally bad for users, if things swing too far toward one engine we'll be in the same position we were when IE6 was the "standard" and people ended up only bothering to test on that browser. That causes stagnation.

  3. Re:No really, it's jQuery that's broken by SJHillman · · Score: 5, Insightful

    Frameworks to do simple things may be stupid, but it's just as stupid to write your own code every time too. It's hard to say which one is worse, but I'm going to say it's worse to never use a framework than to always use one unless your time has no value and you always write perfect code.

  4. So let me get this straight... by Sarten-X · · Score: 4, Insightful

    According to the author, Opera should spend their time and money to fix old edge-case bugs in WebKit, but he shouldn't have any obligation to contribute patches himself.

    Sorry sir, but that's not how open-source development should work. If you're going to spend time rebuilding your own codebase, evaluating whether a ton of old workarounds are still necessary because of missing "half-line fix[es]", you should consider spending some of that time contributing such simple patches upstream to improve the situation. With IE, that was never an option, but it is with WebKit. In an open-source stack, the only workarounds that should be accepted as the regular course of business are ones that are prohibitively difficult to implement in the dependency, or where the patches have been submitted and rejected.

    What's most entertaining is the reference to the "tragedy of the commons" in TFA's title. Tragedy of the commons is not something being so commonly used that it's improved in places you don't like. Rather, it's where everybody using the common property thinks that maintenance is someone else's problem. Mr. Methvin, WebKit's maintenance is as much your problem as it is Opera's.

    --
    You do not have a moral or legal right to do absolutely anything you want.
  5. Re:No really, it's jQuery that's broken by dingen · · Score: 5, Insightful

    I code everything by hand, if it doesn't work in some browser, then that browser's implementation is broken.

    You say this like that somehow is a solution.

    --
    Pretty good is actually pretty bad.
  6. Re:I can say, after having upgraded to mountain li by Anonymous Coward · · Score: 5, Insightful

    This isnt a 'WebKit' problem, this is a Mountain Lion + Safari problem. Safari started implementing a lot more things to leverage the GPU in rendering and it did not turn out very graceful.

  7. Jesus, what a crappy headline. by sootman · · Score: 4, Insightful

    "WebKit As Broken As Older IE Versions?"

    Yes! Because any two things that are not perfect are equally bad. :-|

    --
    Dear Slashdot: next time you want to mess with the site, add a rich-text editor for comments.
  8. Re:I can say, after having upgraded to mountain li by Nemyst · · Score: 5, Insightful

    It's inertia. IE6 was a terrible browser. IE7 and 8 were better, but not markedly so. IE9 was a total turnaround for Microsoft, and IE10 is keeping with that trend.

    However, the damage is already done. On top of it being a Microsoft product and thus being automatically terrible, dangerous and likely to cause the death of a few Linux whackjobs, its bad reputation in the past has stuck to it like a skunk's stink. Is it deserved? Not anymore, no. But you probably have noticed by now that for all our claims of technology being a fast moving sector, a lot of the people working in it are old men shouting at you to get off their lawn ;)

    Opera's shift to WebKit should concern everyone. It's likely a good decision for them, but it consolidates WebKit's position as the dominant rendering engine, and having any dominant engine is bad, as you go from standards directing engines to the dominant engine imposing "standards".

    Ironically, it's Firefox which is still doing its job: never the dominating browser, but always a significant enough force to stop any one browser from entirely dominating. Those who think Mozilla's outlasted their welcome should think again.

  9. Re:Web developers hate IE by FyRE666 · · Score: 4, Insightful

    "If you don't hate IE, then you haven't been building websites."

    First website I built was around 20 years ago. Last website I built completed a couple of weeks ago.

    I've been through pretty much every version of IE, Netscape, Firefox, Chrome, Opera, Safari, (and Mozaic). If you're not charging clients extra now for IE6/7 support, then you really need to look at your business practices. I don't "hate" any platform; I just charge clients if they need a platform supported. Of course, you're free to go on some religious or idealogical crusade in your spare time if you like, but getting emotional about a browser doesn't make much sense.

    It's funny to me to hear people claiming IE6 is incapable of rending content etc, when we were making arcade style games, windowing systems, AJAX style requests (piggybacking data in cookies from image src requests) back with IE4 and NS4.

    tl;dr Charge clients for the extra work, or get new clients. Don't work for free and then moan about it.

  10. Re:No really, it's jQuery that's broken by sdsucks · · Score: 4, Insightful

    Here's a few reasons to use libraries and frameworks:
    1) Development speed.
    2) Browser support and testing.
    3) Maintenance.

    I'll let you figure out how they help in those situations - and there are many other reasons, on top of those.

    developers need to stop using "frameworks" and "libraries" to do simple things.

    Seriously, this is a really fucking stupid thing to say. Imagine telling a C developer to re-implement printf() for every application (and every platform it will run on) that needs to print a line of output.