Slashdot Mirror


Microsoft Edge Will Start Automatically Pausing Less Important Flash Content (venturebeat.com)

An anonymous reader cites an article on VentureBeat: Microsoft Edge will "intelligently auto-pause" Flash content that is "not central to the webpage." If you want to try this out now, you can take the feature for a spin with Windows 10 build 14316, which was recently made available to Windows Insiders. Peripheral content like animations or advertisements built with Flash will be displayed in a paused state unless the user explicitly clicks to play that content. This significantly reduces power consumption and improves performance while preserving the full fidelity of the page. Flash content that is central to the page, like video and games, will not be paused. Microsoft wrote in a blog post, "We encourage the web community to continue the transition away from Flash and towards open web standards. We are planning for and look forward to a future where Flash is no longer necessary as a default experience in Microsoft Edge."

48 of 79 comments (clear)

  1. How about a real browser by Billly+Gates · · Score: 4, Interesting

    IE (yes you did not misread that) doesn't have the problem that edge has. Edge reminds of IE 6 or IE 7 when you go to a site like youtube. Constant refreezing.

    I unpinned edge and pinned IE 11 on my windows 10 system for legacy sites still and Chrome for everything else. IE 11 is ok (not great), but MS in the past 4 years finally made a browser that didn't crash .... until Edge came out.

    1. Re:How about a real browser by Flavianoep · · Score: 4, Funny

      Microsoft working with Linux, Firefox sucking, "IE is a real browser", the president of the US in Cuba... I get these days the SCO suit against Linux is the only thing holding the world together and preventing the hell from freezing over.

      --
      Linux is for people who don't mind RTFM.
    2. Re:How about a real browser by c · · Score: 1

      I get these days the SCO suit against Linux is the only thing holding the world together and preventing the hell from freezing over.

      I wouldn't worry... even if the SCO suit dies, we'll still have Microsoft's mobile *giggle* strategy *snort*.

      --
      Log in or piss off.
    3. Re:How about a real browser by Billly+Gates · · Score: 1

      Also what if you are a webmaster?

      Ask anyone who writes an awesome cutting edge beautiful site ... only the boss to call the next day saying his aunt who has IE 6 complained you can't code and it sucks! Now you need to spend a whole week for free downgrading your site with demonic hacks and taking away features so his grandma doesn't view as incompetent.

      Remember IE 6 doesn't suck. You suck because all other sites look fine etc.

      Now we have to debug Edge bugs and put bug specific code so grandma of the customer won't say you are a hack who can't code etc.

    4. Re:How about a real browser by JustAnotherOldGuy · · Score: 1

      even if the SCO suit dies, we'll still have Microsoft's mobile *giggle* strategy *snort*.

      Lol, you mean the "Wait for us- we're the leader!" strategy, or the "That looks good, let's make a shitty copy of it" strategy?

      --
      Just cruising through this digital world at 33 1/3 rpm...
    5. Re:How about a real browser by c · · Score: 1

      even if the SCO suit dies, we'll still have Microsoft's mobile *giggle* strategy *snort*.

      Lol, you mean the "Wait for us- we're the leader!" strategy, or the "That looks good, let's make a shitty copy of it" strategy?

      To be honest, I think it's well into the "fuck it, we've got money, let's do both of them!" stage.

      --
      Log in or piss off.
    6. Re:How about a real browser by Gr8Apes · · Score: 1

      I forget where I wrote it, but I only support HTML standards and get agreement for the requirements on IE versions. I've been fortunate enough that I have not supported IE 6 on any project since 2006, so I'd say that perhaps you should respond with: "Supporting IE 6 will double the cost of the website. I'd be happy to do so if you approve the funding and tripling of project time due to increased debugging required for IE 6." and see where that gets you.

      --
      The cesspool just got a check and balance.
  2. Translation by Anonymous Coward · · Score: 1

    Pay us and we'll prioritize your Flash content as more important and central to the page. If you don't pay us and get your flash apps signed by us, they'll automatically be paused.

    It's a clever way for Microsoft to get a cut of advertising and website revenue, under the guise of being good for end users.

  3. At least Flash is easy to block. by Anonymous Coward · · Score: 2, Interesting

    Wait until Flash dies and people use JavaScript to animate HTML5 tags and such. How are you going to selectively block that?

    1. Re:At least Flash is easy to block. by gmack · · Score: 3, Informative

      Wait until Flash dies and people use JavaScript to animate HTML5 tags and such. How are you going to selectively block that?

      Not that hard, at least in Chrome I use Disable HTML5 Autoplay plugin.
       

    2. Re:At least Flash is easy to block. by TheRaven64 · · Score: 2

      That only pauses video and audio tags, it doesn't pause things like canvases (or misc DOM elements) being animated by JavaScript. JavaScript has one big flat namespace for every script in a page, so it's difficult to identify the bits of the script relating to an ad if they're not in an iframe (and advertisers don't want to put them in iframes, because then they're trivial to filter out).

      --
      I am TheRaven on Soylent News
    3. Re:At least Flash is easy to block. by gstoddart · · Score: 4, Insightful

      Which is why Javascript also needs to be much more tightly controlled than simply running any damned thing on the page.

      Your average web page has 10-20 3rd parties, all of which want to run javascript, flash, set cookies, and do a host of other crap. Advertising has pretty much fucked up the permission model of the internet by saying "you need to let every asshole run anything they want because you have no idea if it's part of the functionality of the site or an ad, but we just assume you'll let it all run".

      Yeah, sorry, no. Flash is straight up disabled or uninstalled. I'll selectively whitelist sites who I trust, or at least temporarily do so. But almost no 3rd party scripts or content are EVER allowed ... because I don't want ads, and because I don't trust random web pages to run scripts. Because they're not trustworthy.

      If Javascript has only one big namespace, then maybe that needs to be fixed? Security holes like cross-site scripting and other stuff are enabled by web sites insisting they be able to write the most presumptively insecure code and then let it be the user's problem.

      This stuff needs to be sandboxed, treated like it's potentially hostile, and locked down from being able to do anything to the host computer. Instead what we have is stuff running which we have no idea what it is, which may or may not be malicious, and which can actively impact the host machine.

      It's time we stopped treating web pages like they're trusted by default, because so much of the web these days simply can't be trusted.

      Stop letting the advertisers tell us how the internet should work, and stop letting them be the ones who cause the damned thing to be insecure in the first place.

      --
      Lost at C:>. Found at C.
    4. Re:At least Flash is easy to block. by Opportunist · · Score: 1

      By disabling JavaScript.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    5. Re:At least Flash is easy to block. by Wrath0fb0b · · Score: 1

      This stuff needs to be sandboxed, treated like it's potentially hostile, and locked down from being able to do anything to the host computer. Instead what we have is stuff running which we have no idea what it is, which may or may not be malicious, and which can actively impact the host machine.

      That is the intent, and that is how it's meant to be implemented. As properly construed, javascript running in the context of a webpage should never have access to do anything besides modify the current page (and by extension have the page render HTML, including canvas/audio/video now that they are part of HTML5), grab user input (if topmost) and set cookies per the user's cookie policy. To the extent that javascript can do more, or even pwn your computer, that's contrary to the design intent and is a bug in the sandbox.

      So other than complaining that the browser sandbox implementations are not perfect (which is conceded), what is your point here?

      [ And, as an aside: FlashBlock (or other click-to-start-flash) is a great idea, so is the Java permissions popup. In both cases, that's a workaround for the fact that the Flash and Java VMs are hopelessly insecure and simply not going to be fixed. ]

    6. Re:At least Flash is easy to block. by amRadioHed · · Score: 1

      So your pages go from annoying to completely non-functional. Sounds like a big win!

      --
      We hope your rules and wisdom choke you / Now we are one in everlasting peace
    7. Re:At least Flash is easy to block. by Opportunist · · Score: 1

      Try it. You'd be surprised just how many pages work great without JS.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    8. Re:At least Flash is easy to block. by JustAnotherOldGuy · · Score: 1

      By disabling JavaScript.

      I'd love that, but sadly a lot of sites won't work worth a crap (or at all) without javascript. That's not the way it should be, but it's the way it is.

      Most of my sites run fine with javascript turned off, but a few do rely heavily on jQuery, and there's no good way around that. If you want some useful AJAX response or some nice, clean effects coupled with functionality, sometimes javascript is the way to go.

      --
      Just cruising through this digital world at 33 1/3 rpm...
    9. Re:At least Flash is easy to block. by Khashishi · · Score: 1

      Once upon a time, plugins were used to add functionality to a program, not remove it.

    10. Re:At least Flash is easy to block. by i.kazmi · · Score: 1

      Anything with ajax is going to break and since most web-apps use ajax (for everything from updating content to loading new content), you would not be able to use almost any web apps. You should technically be able to view most websites (albeit with slightly reduced functionality) with JS disabled but even that is not guaranteed and with the way things are going, I doubt there will be any maintained websites functioning without JS in a couple years time. You can hate it all you want but the writing is on the wall.

      There are multiple reasons for this but the most important one (afaict) is that most people who want a website want something similar to google/ms/yahoo services with lots of ajax and subtle animations (fade ins, fade outs etc) for as little money as they can get away with. If you quote them $2000.00 for a properly done website (where the website functions properly in the absence of javascript), they'll go to the competition without a second's hesitation and since developers need to pay their bills (who doesn't?), they pretty quickly realise they have to cut every corner they can to keep their costs down in order to make some money when they get paid after they have paid their bills. People can get on their high horses all they want but at the end of the day, when these people go to get a website created, they opt for the cheapest option available.

  4. Where is this "important" flash content? by Anonymous Coward · · Score: 1

    I haven't installed flash for years, and I don't believe I have missed out on anything.

    1. Re:Where is this "important" flash content? by Flavianoep · · Score: 1

      I'm going back to Konqueror. Flash didn't work there and that was the problem that had me leave it. It comes with builtin ad block, gestures so I don't need any plugin. It even gives you an option to stop animated GIFs.

      --
      Linux is for people who don't mind RTFM.
    2. Re:Where is this "important" flash content? by Opportunist · · Score: 2

      You missed a whole lots of 0day exploits. Your life must be incredibly boring.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  5. Option to Disable Autoplay by ohnocitizen · · Score: 4, Insightful

    All browsers should have the ability to pause autoplay content (videos with sound especially) by default. This would be a game changer. Chrome has this: An article with an ironic autoplay advertisement.

    1. Re:Option to Disable Autoplay by _Sharp'r_ · · Score: 1

      Sometimes I forget how much levels of technology literacy makes our experiences of the web differ.

      I get that there are still people out there who don't run an adblock-like plugin for their browser. Some people even don't do it on purpose.

      I do really wonder at how many people haven't already learned to just set their flash plugin to "Ask to activate" status, so they only see flash content on a page if they actively want to. Without that, I don't see how you can browse the web on a default version of Windows without at best being constantly annoyed, or at worst routinely infected with malware.

      How many flash vulnerabilities does it take before someone learns to leave it turned off unless they actually want to see the flash content on a page?

      --
      The party of stupid and the party of evil get together and do something both stupid and evil, then call it bipartisan.
    2. Re:Option to Disable Autoplay by houghi · · Score: 1

      I rather have an option to ENABLE autoplay. Have it disabled as default.

      --
      Don't fight for your country, if your country does not fight for you.
    3. Re:Option to Disable Autoplay by sycodon · · Score: 1

      If they really want to be useful, have all the page content load before the ads.

      --
      When Fascism comes to America, it will call itself Anti-Fascism, and tell you to give up your guns.
    4. Re:Option to Disable Autoplay by ohnocitizen · · Score: 1

      This is bad too, since when the ads load they can push content on the page. You get accidental clicks this way (though perhaps on some sites this is strategic).

    5. Re:Option to Disable Autoplay by ohnocitizen · · Score: 1

      I run uBlock and Ghostery (which don't catch everything), and just didn't even think to check for it as an option. It should be in the browser by default. Even technically literate users won't remember to check every setting.

    6. Re:Option to Disable Autoplay by sycodon · · Score: 1

      Liveleak actually does it on purpose...they move the page down to the ads deliberately and you have to scroll up to see the content.

      --
      When Fascism comes to America, it will call itself Anti-Fascism, and tell you to give up your guns.
  6. Hey, timothy by edittard · · Score: 1

    If you were a bit more a-with-a-circumflexoeintelligent you'd know how to use the preview button.

    --
    At the bottom of the /. main page it says 'Yesterday's News'. Well they got that right.
  7. The End of Thin Computing? by Grindalf · · Score: 1

    Those thin new computers are too slow?

    --
    The purpose of existence is to make money.
    1. Re:The End of Thin Computing? by Overzeetop · · Score: 1

      The tablet I currently use has more power than the ~100 watt, 4 (physical) core i7 processor in my 5 year old tower. It's not the hardware, it's the proliferation of ads with video content and web site developers who think that a 5-8MB download on a single web page is "fast".

      --
      Is it just my observation, or are there way too many stupid people in the world?
    2. Re:The End of Thin Computing? by Grindalf · · Score: 1

      Hi! To quickly explain my position, I've heard this before, but notice that flash movie content plays on these new thin machines with âoeclicky soundâ and unreliably as if they are underpowered in a way that is hidden. I have tried a few different makes and software platforms. New gaming platforms blow them off the face of the planet earth and are perfectly smooth. The screens are nice big ones and they are ergonomic and comfortable to use. I can afford both. So naturally I ask the question as there is a visible mismatch to me and I have been struck with disbelief.

      --
      The purpose of existence is to make money.
    3. Re:The End of Thin Computing? by Anonymous Coward · · Score: 1

      That hardware analysis is unlikely.

    4. Re:The End of Thin Computing? by Grindalf · · Score: 1

      Fascinating! That scandal would destroy Intel and NVIDIA overnight! :-)

      --
      The purpose of existence is to make money.
  8. Sounds like you need Servo. by Anonymous Coward · · Score: 3, Funny

    You need to try Servo. It's the next-generation browser engine from Mozilla and it's fantastic. It's written in Rust so it's beyond secure, because Rust is the most secure programming language ever created. Rust is also native compiled like C so it's fast. Some people have even found Rust to be faster than C! Rust is the next-generation programming language from Mozilla in case you aren't aware. Rust and Servo are the future. They're taking the current state of the art and bumping it up not just one notch, and not just two notches, but at least five or six notches. They've elevated the game and now it's time for the other browser vendors to start playing catch-up with Rust and Servo.

    1. Re:Sounds like you need Servo. by Anonymous Coward · · Score: 3, Funny

      Holy crap, six notches! That's roughly four notches more then an average up-bumping.
      Wow, im so excited over the amount of next-generationness it contains.

    2. Re:Sounds like you need Servo. by WarJolt · · Score: 1

      Rust is also native compiled like C so it's fast. Some people have even found Rust to be faster than C!

      Faster because of better code. Programmers are willing to adopt a new language like Rust are probably great coders.

      I know so many c++ programmers who don't effectively use the stl to speed up their code.

      Also runtime languages can be faster than native code if you have the right optimizer. They can keep track of hot code blocks and optimize the hottest sections at runtime. Unfortunately statically compiled languages can't adapt dynamically to execution.

      Most people's subjective analysis of runtime languages is based on java which has a terrible amount of overhead when doing the symbol lookups when the program first starts up. Plus the Java guys hate AoT compilation. I'm not saying Java is faster, but it's definitely slower when it first comes up.

    3. Re:Sounds like you need Servo. by parkinglot777 · · Score: 1

      If you are talking about old traditional way of compiling language, then you are correct -- well coded gives better speed. However, nowadays, you don't know what your code will look like after it is compiled due to compiler optimization. As long as algorithm is correct, different coding style may not have much impact on the outcome speed (but does not mean it will be equal to or faster than a well coded ones).

  9. Safari Power Saver since 2013 by psergiu · · Score: 1

    Redmond, start your photocopiers.

    --
    1% APY, No fees, Online Bank https://captl1.co/2uIErYq Don't let your $$$ sit in a no-interest acct.
  10. Knowing MS... by Opportunist · · Score: 2

    I have that hunch that Edge will rather pause the YouTube videos than the noisy ads.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  11. "Transition away"? by 93+Escort+Wagon · · Score: 1

    I stopped even installing the Flash plugin a while back - it's following in the footsteps of the Java browser plugin.

    I keep Chrome around just in case there's some Flash content I actually need to access, but that rarely happens. Google probably thinks I hardly ever browse the web, and that I like Flash-heavy sites when I do.

    --
    #DeleteChrome
  12. How about default ALL autoplay to off? by JoeDuncan · · Score: 1

    I can't stand autoplay *anything* in my browsers.

    Thankfully, due to judicious use of adblockers and various plugins, every flash player, HTML5 Video, GIF etc... needs me to actually click on it to make it start.

    It's my browser, and my machine, you don't start playing without my approval!

    Any web page I find where I can't turn off the autoplay anything, I simply never visit again.

  13. Windows 10 by Archfeld · · Score: 1

    I am using windows 10 on a laptop, and after 3 or 4 days I decided I absolutely HATED EDGE, it is cumbersome, stupidly organized, performs poorly and freezes up often. Calling it Edge is very stupid, as the only edge it seems to give is to any other browser and Apple or Linux.

    --
    errr....umm...*whooosh* *whoosh* Is this thing on ?
  14. Uh-huh..... by JustAnotherOldGuy · · Score: 2

    And by " less important" they mean "content for which the owners haven't paid us not to interfere with".

    --
    Just cruising through this digital world at 33 1/3 rpm...
  15. Re:Condiments for your shit sandwich by JustAnotherOldGuy · · Score: 1

    Windows 10 could come with 10 free blowjobs and I still wouldn't use it.

    Hmmmm, I dunno...that would be a pretty compelling feature if you ask me. But first you'd have to explain to the Microsoft Dev Teams what a "blowjob" is cuz I'm fairly sure they're not familiar with them.

    --
    Just cruising through this digital world at 33 1/3 rpm...
  16. Ads by MoarSauce123 · · Score: 1

    So Edge will stop playing all these annoying Flash ads? I have to see it to believe it.

  17. Re:Why add implement features for a dead product by MoarSauce123 · · Score: 1

    And replace Flash with what? There is no capable replacement. You may point to HTML5, CSS, and JS, but with each browser executing and rendering the same code differently or not at all the user experience is never the same. As soon as browsers render content not only exactly the same on all OS, but also fully compliant with W3C standards, then we may be able to ditch Flash, although Flash can do more than the hodgepodge of three markup/script languages.