Slashdot Mirror


Microsoft Pushes Devs With Wider IE8 Beta

An anonymous reader recommends a story about the upcoming beta 2 release of Internet Explorer 8. InternetNews expects that the standards-compliant default mode will push many developers to update their sites. We've previously discussed IE8's standards compliance and other features. Quoting: "Over the years of IE's dominance as the leading browser, designers regularly tweaked their sites to get the best possible accuracy in rendering pages in IE -- most recently, the current commercial release, IE7. Now those pages will need to be changed. Microsoft originally planned for IE8 to default to rendering similarly to IE7, while super standards mode would have been an option. The outcry from critics helped convince Microsoft officials to instead default to super standards. That, unfortunately, will mean work for site administrators."

15 of 314 comments (clear)

  1. Cue the "M$" bashing shrills by Anonymous Coward · · Score: 5, Insightful

    Before anyone starts bitching about how much IE sucks and how it's lack of standards is nothing but a burden on anyone, understand that this is a decent move by Microsoft in the right direction.
    I know, I know, it's almost too little, too late, but it's better than nothing and as long as this trend continues, at least we might have a decent amount of cross-browser standards in a few years time, as opposed to none if Microsoft simply hadn't bothered.

    1. Re:Cue the "M$" bashing shrills by thePowerOfGrayskull · · Score: 5, Informative

      Unforunately, it's not that simple. Previous versions of IE were broken enough that standards-compliant HTML and CSS would not render properly. So if you wanted the majority of people to be able to actually use your site, you /had/ to be aware of - and often code around - IE stupidity, for all but the simplest of applications.

    2. Re:Cue the "M$" bashing shrills by Snover · · Score: 5, Insightful

      Uh. min-width is in IE7. I'm surprised you don't know that if you're testing "primary in Internet Explorer".

      Not to be high and mighty, but you really really really should develop against a standards-compliant browser *first*, which means any one of Konqueror, Safari, Opera, or Firefox, and then hack IE once you're all done using conditional comments. Since all the browser vendors other than Microsoft do a good job of adhering to standards at this point, by testing against one of those browsers you can pretty well guarantee you will be functioning in the rest of them. It makes much more sense than to test on the outlier (IE) and then try to fiddle with it until it works in everything else.

      I'm quite confident that none of my sites will need to be updated for IE8 as long as Microsoft are doing their jobs, because the sites are written to conform to standards and only use conditional comments with special CSS for browsers <= IE7. That means that when IE8 rolls around, it will get served the same standards-compliant code as everything else and (for once) will not break on it.

      --

      [insert witty comment here]
    3. Re:Cue the "M$" bashing shrills by jmusits · · Score: 5, Insightful

      Browser specific stylesheets.

      If people were using these instead of horrible CSS hacks to make their pages work within IE then we wouldn't be having this conversation. Unfortunately too many people are still using CSS hacks to make their pages render properly.

      By using browser specific stylesheets, assuming that IE8 is actually standards compliant like FF, then IE6 and IE7 can continue to load their stylesheets to fix their problems and IE8 will only load the non-specific stylesheet as FF does and then all will be good.

      Since you place the browser specific stylesheet after the generic one the styles in defined in the browser specific stylesheets override the ones in the generic stylesheet, while the ones only defined in the generic one cascade down. This is the beauty of Cascading Style Sheets.

      --
      -- 42 --
    4. Re:Cue the "M$" bashing shrills by Snover · · Score: 5, Insightful

      I strongly disagree. Unless you want to end up having to do like this article suggests and make a bunch of changes every time a new browser comes out (and maybe you do -- I bet it's good for business), it makes much more sense to test against something that you know adheres to defined standards and then doing minor fixups for IE at the end.

      If you're writing and testing against IE, and you write a line of CSS that doesn't do what you expect and change it to make it work, but the reason it wasn't working isn't because you wrote it wrong but because IE calculates some dimensions incorrectly (read: hasLayout), then when you get around to testing it in everything else (and by "everything else" I mean "Firefox", since this is what the IE-first crowd seems to think means "everything else") it's broken. Now compound this issue 20 times, because there are 20 distinct things in the CSS that cause IE to fuck up. Maybe there are also some combinations of things that trigger a bug. So now, instead of writing hacks to work around IE's brokenness, you are writing hacks and sending different code conditionally to "work around" the browsers that are rendering it properly. Suddenly, when IE8 comes around and fixes the bugs you're relying on in IE, you've got a broken Web site again. It's just a bad idea, and getting things working across all the other browsers, frankly, takes a mere fraction of the time it does to get things touched up properly for IE.

      --

      [insert witty comment here]
  2. Let's Bash Microsoft! by h4rm0ny · · Score: 5, Insightful


    So basically, Microsoft, listened to their customers, went with the better default mode (and it is better that they do this), and the Slashdot article ends with "But it makes more work for administrators - boo!"

    *sigh

    --

    Aide-toi, le Ciel t'aidera - Jeanne D'Arc.
    1. Re:Let's Bash Microsoft! by Macthorpe · · Score: 5, Insightful

      I would have summarised like this:

      - IE7 not standards compliant
      - Slashdot posts article complaining
      - IE8 standards compliant but not by default
      - Slashdot posts article complaining
      - IE8 standards compliant by default
      - Slashdot... posts article complaining

      I can only echo your sighing...

      --
      "It does not do to leave a live dragon out of your calculations, if you live near him." - Tolkien
    2. Re:Let's Bash Microsoft! by FooAtWFU · · Score: 5, Insightful

      That's only because Slashdot has both Complainers and Non-Complainers on any given topic, and the Complainers are the ones who enjoy posting most. So they do.

      --
      The World Wide Web is dying. Soon, we shall have only the Internet.
    3. Re:Let's Bash Microsoft! by Anonymous Coward · · Score: 5, Funny

      I can only echo your sighing... Get a room guys!

    4. Re:Let's Bash Microsoft! by jalefkowit · · Score: 5, Insightful

      If moving to IE8 is going to "break" your site, it's already "broken" for anybody who views it in any browser other than IE. That's about 20% of the browsing population (and more every day).

      If I was a corporation and my web development team had been shipping a site that flat didn't work for 1/5 of my customers, I'd have fired them long before this.

  3. "it's better than nothing" by TW+Atwater · · Score: 5, Insightful

    That pretty well sums up the entire Microsoft experience.

    --
    More than 60,000 Windows programs won't run on Linux.
    1. Re:"it's better than nothing" by Anonymous Coward · · Score: 5, Funny
      Just design for actual standards and leave idiot IE users high and dry..

      From the actual transcript from Brian's Performance Review:

      Boss: Well Brian, I see that since you took over the web site that complaints about our website have gone up 80 fold and we've lost more than half our customers. What do you make of this?
      Brian: They're all idiots.

  4. Unfortunately??? by VMaN · · Score: 5, Insightful

    This is anything BUT unfortunate.. Once agreed upon standards are the norm everyone will benefit, and it'll save a ton of work in the long run.

    yay for MS on this call

  5. Pity the poor administrators by sfritsche · · Score: 5, Insightful

    "That, unfortunately, will mean work for site administrators."

    The only "unfortunate" thing about the need to retool web sites is that it could have been avoided by coding to the standards in the first place.

    --
    "I'd horsewhip you if I had a horse." -- Groucho Marx
  6. Re:Lazy dumbasses by pezpunk · · Score: 5, Insightful

    just to play devil's advocate here, you're suggesting a designer should code to standards, and let the page be broken for 80% of his visitors? i don't think many designers would keep that job very long.

    --
    i could live a little longer in this prison