Slashdot Mirror


New IE7 Information Announced

Brandon writes "Looks like the IE team is trying to catch up to some of the major OS browsers. They have finally added proper PNG support and have fixed numerous CSS bugs. The full post is on The Official IEBlog." From the post: "We're doing a lot more than this in IE7, of course, and we're really excited that the beta release is almost here - we're looking forward to the feedback when we release the first beta of IE7 this summer. Stay tuned for more details as we get closer to beta."

46 of 620 comments (clear)

  1. The ones that I hope get fixed by DeadSea · · Score: 4, Interesting

    My pet peeves with IE that make my life harder when I write web pages:

    Sounds like they are fixing the .pngs for sure. I hope the two css tweaks that I want make it in.

    1. Re:The ones that I hope get fixed by Just+Some+Guy · · Score: 4, Insightful
      For example text areas on my contact form that have a max-width of six inches stretch the entire way across the page in Internet Explorer

      I'm glad to see Internet Explorer doing something right, even if inadvertently. See, I have this nice 19" monitor, and people who insist on making tiny little pages that fill the top-left corner of my screen make me leave their site as quickly as possible. I spent good money to have a lot of screen real estate - please don't try to take it away from me.

      --
      Dewey, what part of this looks like authorities should be involved?
  2. middle-click for tabbed browsing by SpecialAgentXXX · · Score: 5, Interesting

    The only reason I use Firefox and not IE is due to middle-clicking for tabbed browsing. Once MS adds that into IE, I'm going back. All of my video plug-ins work instantly with IE, but not without some tweaking for Firefox. I already switched from Thunderbird to Outlook 2003, so I'm excited to see what bells & whistles MS can put in IE7.

    1. Re:middle-click for tabbed browsing by tepples · · Score: 5, Informative

      Then I probably shouldn't tell you about Maxthon or any of the other IE wrappers that add tabs and retain all the ActiveX holes.

    2. Re:middle-click for tabbed browsing by NetNifty · · Score: 5, Insightful

      It wasn't the tabbed browsing, or extensions like adblock, or better standards compliance that I switched to Firefox. It was getting infected by a piece of spyware that used the same security hole I was pissing about with THREE MONTHS BEFOREHAND that I saw it on a security bullitin, and despite being fully up to date on my patches it still infected me.

    3. Re:middle-click for tabbed browsing by NanoGator · · Score: 4, Insightful

      "The only reason I use Firefox and not IE is due to middle-clicking for tabbed browsing. Once MS adds that into IE, I'm going back. All of my video plug-ins work instantly with IE, but not without some tweaking for Firefox. I already switched from Thunderbird to Outlook 2003, so I'm excited to see what bells & whistles MS can put in IE7."

      I'm a little irritated at the overrated mods slapped onto this post. (if you think he's misguided, hit the reply button instead, folks!)

      He has a point. Though FireFox is getting better and better, IE still is still the best supported out there. Sometimes I have to use IE from time to time due to lack of support for the browser I'm using. Admittedly, MS would have to do a hell of a lot of work for me to use IE7 exlusively, but I can certainly understand this guy's point of view.

      --
      "Derp de derp."
  3. nuts to -moz-border-radius by rebug · · Score: 5, Informative

    Instead of implementing a vendor-specific tag, why not support the proposed CSS3 border-radius property?

    --

    there's more than one way to do me.
    1. Re:nuts to -moz-border-radius by DeadSea · · Score: 4, Insightful


      I believe that mozilla did implement the proposed standard but put it in their own namespace for now because it isn't a standard yet and they didn't want to be accused of "embrace and extend" the way that Microsoft does.

    2. Re:nuts to -moz-border-radius by rebug · · Score: 4, Informative

      They support CSS3 selectors, which are still candidate recommendations.

      I think it's that their support for the border module is terribly incomplete, so they're not going to suggest that they support any of it quite yet.

      --

      there's more than one way to do me.
    3. Re:nuts to -moz-border-radius by handslikesnakes · · Score: 4, Insightful

      The problem is that if the standard changes before it's released then you've got a lot of nonstandard implementations out there with no easy way to distinguish between them. (incidentally, AFAIK -moz-border-radius isn't entirely in line with the proposed recommendation. i still use it, because it's nice)

  4. Mmmm! Competition! by Bonker · · Score: 4, Insightful

    This is why MS's brand of 'innovation' is bad and real competition is good. Remember when they halted development on IE6 because all the other browsers were 'finally dead'? Now that Firefox is pissing in their hard-won territory, they're actively hunting again. This isn't just good for Microsoft, but it's good for Firefox and good for us too.

    --
    The next Slashdot story will be ready soon, but subscribers can beat the rush and slashdot the links early!
    1. Re:Mmmm! Competition! by drooling-dog · · Score: 4, Insightful
      This isn't just good for Microsoft, but it's good for Firefox and good for us too.

      It doesn't really address the trust issue, however, even though some of the more abusive "features" of IE may be toned down due to competition and heightened user awareness. Microsoft still largely sees its end-user base as property that it owns, and to which it can sell access for commercial or marketing purposes. Firefox, on the other hand, being FOSS, is naturally more user-centric. IE users can thank Firefox for making the Beast a little kinder and gentler, at least for the time being...

  5. Suggest they un-integrate IE by havaloc · · Score: 4, Insightful

    The biggest problem with IE in my eyes, if that your install of IE goes bad, you have to reinstall the whole operating system, as opposed to Firefox, where you can uninstall, remove the Firefox directory and start over.

  6. Competition is a good thing by CyberZCat · · Score: 5, Insightful

    Without software like Firefox, their would be no reason for Microsoft to ever make a better product, just look at how long IE's been in version 6! Now that Microsoft's starting to feel their browser dominance threatened they're playing for attention to their own product. Clearly competition benefits the end-user.

  7. competition? by boring,+tired · · Score: 4, Insightful

    I find it hard to believe that many people will switch back to IE from FireFox (or others) after IE7 comes out. It'll probably get picked up by current IE6 users or corporate IT depts. But it would take some pretty spectacular changes to get me to switch.

  8. min-width and hacks by UnConeD · · Score: 5, Informative

    Internet explorer actually treats width and height as min-width and min-height. Very annoying if you don't want it, but you can use it like this:

    select {
    min-height: 100px;
    _height: 100px;
    }

    IE will (mysteriously) ignore the underscore prefix and parse the second style, while compliant browsers only recognize the min-height style.

    This shows that the important question is in fact not "how many CSS bugs will IE7 fix?" but "how many CSS bugs will IE7 keep?". These bugs are currently needed to make IE6 behave properly. If IE7 fixes the rendering bugs but keeps the parsing bugs, we'll have to figure out new bugs to update the IE6-only hacks with.

    1. Re:min-width and hacks by falconwolf · · Score: 5, Insightful

      If IE7 fixes the rendering bugs but keeps the parsing bugs, we'll have to figure out new bugs to update the IE6-only hacks with.

      That's why web standards should be followed, so you don't end up with spagetti code trying to support different browser versions. Admittedly I don't know everything that goes into creating a standards compliant website. Nor do I work on them other than my own, which I haven't worked in way too long.

      Along the lines of web standards, I liked Jeffery Zeldman's "designing with web standards". I would of liked it if there had been projects to work on in it though. I only learn and retain by doing, if I don't do it I don't retain what I read. At least he includes references to other books some of which have exercises or projects.

      Falcon
    2. Re:min-width and hacks by Feztaa · · Score: 5, Insightful

      This is exactly why I never use those stupid parsing bugs to "trick" IE into rendering the right thing... I'm scared to death that the resulting non-standard "tag soup" will break some obscure browser somewhere -- like IE7.

      What I do is, I design a very simple design in Firefox, then I check it against IE that it renders "nicely" (nicely meaning, if IE renders it wrong, the mistake doesn't affect readability or anything). The idea is, my website designs are "so simple, not even IE could screw them up".

      It really limits the possibilities, but at least the resulting pages are simple & elegant.

    3. Re:min-width and hacks by richard.york · · Score: 5, Insightful
      IE will (mysteriously) ignore the underscore prefix and parse the second style, while compliant browsers only recognize the min-height style.

      If designers didn't rely on obscure parsing bugs like the one in your post, that wouldn't be a problem. There's nothing elegant or clever about exploiting parsing bugs to fix another bug. In an ideal world the browser developers would fix both the parsing bug and whatever other bug the parsing bug is designed to work around. Since we're never gauranteed of this, why take the risk? If you're a professional developer with past projects in the hundreds when IE7 hits the streets, can you then afford to turn back the clock and revisit most of them because you relied on parsing bugs, rather than more concrete methods. (Ahem, conditional comment style sheets) You'd be completely screwed. If you don't fix your client websites, your reputation will go the way of the dodo. If you do you'll have weeks upon weeks of unpaid work.

      IE may have miserable CSS support, but at least it provides some very clear, built-in work-arounds for its problems. (JScript, behaviors, conditional comments, all that propreitary garbage that we can use to fabricate something resembling standards support).

    4. Re:min-width and hacks by Phroggy · · Score: 4, Insightful

      That's why web standards should be followed, so you don't end up with spagetti code trying to support different browser versions.

      Most of the time, when I hack my way around browser bugs, I do it by taking standards-compliant HTML that validates at validator.w3.org but looks wrong in a particular browser, and changing it into different standards-compliant HTML that still validates but looks the way I want.

      Please don't tell web designers to "just follow the standards". It's REALLY not that simple.

      --
      $x='S24;r)>63/* h@<5+oZ)32"5cz';$me='phroggy'x$];
      $x=~y+ -xz+\0-Tx+;print$_^chop$me for split'',$x;
    5. Re:min-width and hacks by Sentry21 · · Score: 4, Informative

      The worst is that web designers used specific parsing bugs in IE5 to trick it into rendering things the way it's supposed to. IE6 then went ahead and fixed the parsing bugs (so the trick doesn't work) without fixing exactly what it was that the trick was needed for in the first place.

      The latest trend is to use Javascript to set the styles, which (imho) is a much better idea - never rely on bugs to implement features.

    6. Re:min-width and hacks by Phroggy · · Score: 4, Funny

      If you don't fix your client websites, your reputation will go the way of the dodo. If you do you'll have weeks upon weeks of unpaid work.

      Who says? The sites worked fine in IE6; that's what we got paid for. If they don't work in IE7, we can be paid again to fix them.

      --
      $x='S24;r)>63/* h@<5+oZ)32"5cz';$me='phroggy'x$];
      $x=~y+ -xz+\0-Tx+;print$_^chop$me for split'',$x;
  9. video plugins by green+pizza · · Score: 4, Insightful

    All of my mozilla plugins required some fiddling to get them working. But you know what? I did the tweaking once, about 10 months ago, and it's still working fine.

  10. Too many features to match. by Max_Abernethy · · Score: 4, Insightful

    Even if IE implements everything that the basic Firefox installation has and then some, they still won't have the strong community of extension developers that Mozilla does. Will the next IE have anything like AdBlock, the web developer toolbar, or any of the countless little tweak extensions I like? Will I be able to easily change detailed settings like I can with about:config? I doubt it.

  11. Re:Good. by CSMastermind · · Score: 4, Insightful

    The concept of real competition entering the market is really an illusion. It's not a competition when 89% of the world uses your browser. What microsoft is doing right now is taking steps to make sure it doesn't become a competition. For people to switch, they'll need a good reason, a major thing that IE can't do. Right now there isn't one. There are little things that annoy the computer geeks and tech nerds but nothing your typical 60 year old grandmother or 16 school girl will care about. I applaud them for taking a step in the right direction, but lets not forget that they're still the big dog in the software market. They won the first browser war and they're ready for another.

  12. Repainting the Deckchairs on the Security Titanic? by rewinn · · Score: 4, Insightful

    Not trying to flame M$ but ... most of the reason I junked IE was security issues. Once I made the jump, the other improvements like graphics-handling were nice, but not critical.

    Would putting better graphics on the Titanic's deckchairs have kept anyone on board?

  13. IE7 would be perfect if... by green+pizza · · Score: 4, Interesting

    IIRC, the *original* release of IE was based heavily on Mosaic. This always struck me as kind of funny, since even Netscape 0.9 was faster and had more features than any version of Mosaic 2.x.

    At any rate, Microsoft should put their resources into making one killer browser. Make it as lightweight as Netscape 2.0 was, yet support the latest CSS kung-fu. Implement all of the latest widgets and hoohaws as plugins so I can remove ActiveX support if I want. And above all, make it cross platform. Use a library like FLTK so it can be used just about anywhere.

    Doesn't Microsoft realize they could easily make the end-all browser that'll end up running on almost every palmtop, cell phone, set-top-box, automobile, and personal computer?

  14. Re:Too little...too late by Husgaard · · Score: 5, Insightful
    Microsoft burned quite a few bridges with alot of people and unless they can turn that PR machine around 180 degrees, people will continue to see them as bullies who are looking out for nobody but themselves.
    I think you overestimate the general population of browser users. Most of those who have not switched have nothing else to compare MSIE with, and thus think that MSIE is the best browser that ever existed. And even among those who got burned there is the general problem of short memory (ie. most will forget if they see something acceptable from MS).

    And Microsofts PR machine has a history of successfully turning around 180 degress. Just thinks of the events that lead to the first browser war.

  15. Remember winsock? by xtal · · Score: 5, Interesting


    No... Microsoft burned quite a few bridges with alot of people and unless they can turn that PR machine around 180 degrees, people will continue to see them as bullies who are looking out for nobody but themselves.


    They got caught with their pants down in 1993-4 with the internet and TCPIP revolution, too. "It's good enough" certainly does sound framiliar. This was a multibillion dollar company that somehow MISSED THE WHOLE INTERNET THING. They pulled that one off and came out of it smelling like roses.

    They got caught with their pants down AGAIN in 1997 with the widespread acceptance of Java and the beginnings of true cross-platform computing. They pulled turning that event into a stillbirth and came out of it smelling like roses.

    So, here we are in 2005, and they've been caught again with a stagnant product in IE. Not just caught, but being actively made to look stupid by comparison by the third party browsers, and on top of all this, they have OSX and Apple breathing down their necks. I think the wake-up call has been heard.

    I'm not a betting man, but I know where I'd be putting my dollars.

    --
    ..don't panic
  16. Re:They want feedback? I'll give em FEEDBACK by rpozz · · Score: 5, Insightful

    Third, could you actually put something in there to block ads and popups, and any other crap that I don't want on my screen. Al least temporairly. Eg NO AD.DOUBBLECLICK.NET !!!!!

    Putting an ad-blocker (pop-ups are fair game) on something as popular as IE would cause very serious disruptions to many, many websites (ie their revenue stream gets completely cut). Not to mention the inevitable lawsuit if doubleclick.net was in by default.

    I think the request for it being GPL'd is wishful thinking too. Maybe you need to calm down?

  17. Re:shall by fallendove · · Score: 4, Funny

    I encypted a popup into my feedback (I'm a tester), but then they probably have Active X disabled.

  18. Acid2 by Omniscientist · · Score: 4, Informative
    Looking at the blog's comments, I saw someone mention the Acid2 test. I did a google and took it, and my Firefox 1.0.2 failed it.

    Anyone know more details about this test and what browsers do pass it (I'm guessing IE6 doesn't, I don't have it so can't test it)? I'm surprised Firefox didn't, not because I'm a fan boy or anything, but because I presumed Firefox was in accordance with most of the standards.

    This is the test and this is what it should look like. Here's some info about how it works.

    1. Re:Acid2 by cuijian · · Score: 4, Interesting

      The short answer is that no browser currently passes the Acid2 test. I'm pretty sure the Firefox team is working on it. I know the Safari team is working on it as their progress is being talked about on David Hyatt's blog: http://weblogs.mozillazine.org/hyatt/

  19. Re:Good. by hunterx11 · · Score: 4, Insightful
    What microsoft is doing right now is taking steps to make sure it doesn't become a competition.

    I'm pretty sure that improving a product to maintain one's marketshare, even if it is the vast majority, is in fact competition already. There's no reason that Microsoft can't make IE7 good. During the browser wars I used Explorer instead of Netscape because I really did like it better. Certainly they have the hackers and the resources to make the best browser if they want to. If Microsoft really does release a product better than Firefox, it will be sad to see the underdog lose, but really the consumers will win.

    --
    English is easier said than done.
  20. the rest of the story by ocularDeathRay · · Score: 4, Funny

    They forgot to mention that the new IE will render the letter "K" as the letter "O", and vice versa.

    This feature should be easy to deal with, so long as pages are designed with it in mind. Unfortunately this will cause some confusion when trying to use the expression "O.K." or the boxing term "K.O.".

    The new feature that causes the letter "e" to appear as a tiny version of the explorer logo is now slated for version 7.1, it had to be delayed due to technical problems. Consumer research shows that people think that the explorer logo is cuter than the letter "e".

    --
    Obama is a twitter sock puppet
  21. Re:So long, Firefox by NanoGator · · Score: 4, Insightful

    "In this case, I take it "Anonymous Coward" is a corollary to "Microsoft PR Rep"?"

    There should be an ammendment to Godwin's Law for people who resort to accusing others of working for the bad guy.

    Though I don't believe it's "Goodbye FireFox", you cannot honestly say to me that IE7 doesn't have the potential to disrupt FF's market share.

    --
    "Derp de derp."
  22. Re: CSS by Malfourmed · · Score: 4, Insightful
    Notice that they talk about making CSS "more consistent"... but don't mention making IE "standards compliant".

    ;-)

  23. Re:Thank you, Microsoft by mmusson · · Score: 4, Informative

    In this IE6 world a webdesigner cannot use transparent pngs.

    This is not completely true. PNGs with 8-bit alpha channels render correctly. Google maps uses this trick to create the push pin drop shadow.

    --
    SYS 49152
  24. Re:I look forward to IE7. by RichM · · Score: 5, Funny

    In my experience IE7 will transform wireless relationships, repurpose frictionless models, harness visionary infomediaries and furthermore iterate end-to-end experiences.

    I think I speak for us all when I say that we can look forward to an exciting new e-technology era where we can deploy plug-and-play e-services and engage mission-critical e-commerce at the click of a button, which will serve to enhance scalable e-business and orchestrate bleeding-edge content.

    -- This post was brought to you by the Web Economy Bullshit Generator ;)

  25. Who gives a damn about IE anymore? by Anonymous Coward · · Score: 4, Interesting

    Microsoft have proven - repeatedly - that they're going to ignore open standards and are unable to approach a technology without their classic "embrace and extend" asshole tactics. There's a reason for this - if they fully support open standards, competitors will be able to perfectly replace their products. And they will lose.

    Their only hope is to keep making deliberately flawed products - and keep their consumers hooked. The consumer knows their products are bad, but nobody else (at least, nobody with a sense of self-worth and pride) is willing to produce a broken product.

    For example, if IE 7 and Firefox supported the exact same standards, people would use Firefox because it does the things that Microsoft dare not do - free source code, cross platform (they're still stuck on IE 5 for the Mac), platform neutral plugin support and far faster turnaround for bugfixes since the community has so many eyes on the code. Small wins for Firefox, but they are wins nevertheless.

    The only good version of IE was version 3. It was going up against the well-established Netscape. They manged by making it leaner, faster and better. They had no legacy customers hooked on their product - and had to prove that they were worthy. Today they are lazy and their main goal is to maintain their supremacy and suppress the peons - not to wow them back into the fold.

    The worst example of this would be, as far as I'm concerned: ActiveX. The tech might have sounded cool on paper - but in practice it was a disaster. It introduced a new type of executable to uninformed and uneducated users who were simply unable to comprehend how dangerous it was, and a raft of thieves and liars who were trying to take advantage of it. As far as security goes: Worst. Feature. Ever.

    Putting ActiveX in a browser capable of accessing the internet is like storing apples in a bucket of medical waste: you'll be infected with something nasty and be completely fucked within a very short space of time. But Microsoft didn't care, so long as they had more corporate buzzwords to achieve platform lock-in with clueless customers.

    And this corporate character oozes out their products. If Microsoft was a person, he would be a compusive liar, thief, bully and control freak. He would be unable to hold a conversation without trying to take something, and would be instantly hatable.

    I use Microsoft Windows XP because I am forced to and am held hostage by the platform - but I am a bitter, angry hostage with brutal vengeance on my mind. Unless Microsoft makes a radical change to it's corporate attitudes, I will never willingly use IE again.

  26. Consistent support? by porneL · · Score: 4, Funny

    "Improving CSS support consistency" means that CSS in IE is going to be consistently broken.

  27. Re:Thank you, Microsoft by medeii · · Score: 4, Informative

    Your assertion is misleading.

    Firefox, Opera, Safari, and other "niche" browsers render PNGs correctly, with the use of the 8-bit alpha channel. IE6, on the other hand, ONLY recognizes boolean transparency in PNGs -- in other words, it treats them like GIFs. It is possible to force IE5+ to recognize the full alpha channel, but only with the use of a Direct3D filter command.

    --
    got standards? --- http://www.w3.org/
  28. Scrolling TBODY by eGabriel · · Score: 5, Interesting

    It's the only thing in the whole world I want. Why IE doesn't support it, I don't understand. IE generally does pretty well with a lot of things.

    I guess there are two things in the whole world I want. The second is for IE to show me a big nasty error instead of my web page if it is not compliant with the DTD. If browsers worked that way the whole web would be in better shape.

  29. There is only one update they need... by argent · · Score: 4, Insightful

    There is only one update they need to do to IE, and they will never do it.

    They need to abandon zones, put the application in charge of the security of a window, and NEVER let a window open, launch, link to, or reference a "more trusted" object than the one the link, embedded object, what have you is referenced from.

    That means IE would be a hard sandbox. If you want to use ActiveX components that aren't sandboxed, you need to run a separate program.

    Yes, that means that Windows Update would need to be a separate application shell around the HTML control. That's a teeny tiny problem compared to these sneaky damn zones.

  30. Re:Good. by shaitand · · Score: 4, Insightful

    "The reason IE is open to attacks by spyware is because the people who make spyware know that that's what most people use. As soon as people move to another selection, they'll simply target the new browser."

    I would disagree with this. There are problems to be found in Firefox and other new browsers to be sure. The way things look it will be Firefox if anything that ends up with significant market share. To date, almost every Firefox vulnerability has still been related to the broken windows zone-based security model (read IE security model). The two big issues are ActiveX and that model. I believe that without ActiveX and that security model to ride on, NO BROWSER would ever carry the sort of spyware overhead we see today again. That includes IE, but I do not see Microsoft dropping their biggest market lockin 'features'.

    I think Firefox will always be safe from spyware when compared to any browser with ActiveX. However, spyware was only one thing I mentioned. Everything else mentioned was a feature.

    Big features from a user perspective.

    -Spyware free weather status(any idea how many weatherbuggers there are?)

    -Popup blocking that works (IE popup blocking does not 'work', largely thanks to popups launched by spyware.)

    -Flashblocking (flash ads are notoriously annoying)

    -Tabbed browsing. After browsing a link heavy site for two days with tabbed browsing, nobody will ever use a browser without this again.

    Honestly I believe Favortism is the next biggest problem. The truth is that end users do NOT install functional software on their computers (although they will install cute little holiday related crap that breaks functional setups). Techs install software on their computers. If the local tech shop is still using IE, all of their customers will be using IE.

    I once worked for a shop with a Microsoft bias. We were slammed with spyware problems and when doing a spyware cleanup I would routinely install firefox with a standard set of extensions. I showed people how to "open this page in IE" if they needed to and off they went.

    If someone else did work for the user after that point I would get a call everytime regardless of the problem. The good ol' boy Microsoft techs would claim they couldn't work on these funky 'firething' setups. This included the boss. Finally I just gave up.

  31. Re:They want feedback? I'll give em FEEDBACK by DavidD_CA · · Score: 4, Insightful
    First quit stuffing this proprietary crap down my throat, at least have the decency to put it under the GPL.

    Yeah, like that will happen. Might as well ask for the Windows source code while you're at it.

    Second, please don't default load to the msn page, WTF.

    You do realize that Microsoft gets revenue from MSN Search, don't you? And is it really that hard to change your default?

    Third, could you actually put something in there to block ads and popups.

    Have you not heard of this new SP2 thing? Try it out. Blocks popups. As for ads, if they did that they'd piss off every web advertiser in existance and probably get class-action sued.

    Fourth, last time I looked default IE has over ONE GIG of cache in the settings.

    Tools, Options, Settings. Change it yourself.

    Fifth, could you actually make it work with java?

    Every Java app I've tried works. Gotta download the Java plug-in first. Blame Sun and their lawsuit for that.

    Sixth, don't renember all my crap - I want privacy and security - and when I close the browser I want the option to not only take out the cache, cookies, and history of web sites visited, but also want it to TRUELY ERASE IT.

    Paranoid much? There are probably a dozen third-party apps that do this already.

    Seventh, oh and this really pisses me off, PLEASE PLEASE when I hit the reload button - I want it to actually reload the data from the URL over the internet not reload a bunch of cache!!!

    Hold down Control when you hit F5 or press reload.

    Eigth, can't you natively render PDF's. Why do I half to deal with all this over bloated adobe crap?

    I have a suspicion that Adobe would take issue having PDF rendering part of IE without any Adobe app. As for Reader bloat-ware, go bark up Adobe's tree.

    Ninth, please put something in there that makes it easy for me to "steal" (GASP!!!) someone's "intellectual property".

    Uh huh. Why not just add a "warez" button which takes you right to your favorite IRC channel too?

    --
    -David