Slashdot Mirror


Google Tests 'Never-Slow Mode' for Speedier Browsing (zdnet.com)

At some point in the future, Chrome may gain a new feature, dubbed 'Never-Slow Mode', which would trim heavy web pages to keep browsing fast. From a report: The prototype feature is referenced in a work-in-progress commit for the Chromium open-source project. With Never-Slow Mode enabled, it would "enforce per-interaction budgets designed to keep the main thread clean." The design document for Never-Slow Mode hasn't been made public. However, the feature's owner, Chrome developer Alex Russell, has provided a rough outline of how it would work to speed up web pages with large scripts. "Currently blocks large scripts, sets budgets for certain resource types (script, font, css, images), turns off document.write(), clobbers sync XHR, enables client-hints pervasively, and buffers resources without 'Content-Length' set," wrote Russell.

78 of 159 comments (clear)

  1. Que my mom wondering why the internets broke by Anonymous Coward · · Score: 5, Insightful

    Fucks sake - this is exactly the reason random web page X stops working.

    Here's a hint google: You're fixing the WRONG problem.

    The correct problem to apply pressure to:

    1) Crap web code, and specfically better educating the people that write it.
    2) Javascripts crappy threads.

    Your 'never slow mode' should only ever be a debug tool for people making web pages.

    1. Re:Que my mom wondering why the internets broke by Anonymous Coward · · Score: 1

      Define "crap web code"

    2. Re:Que my mom wondering why the internets broke by DarkRookie2 · · Score: 4, Insightful

      Just look at the code for any site made or redesigned last 5 years.

      --
      http://progressquest.com/spoltog.php?name=Son+Of+Son+Of+DarkRookie
    3. Re:Que my mom wondering why the internets broke by jellomizer · · Score: 1

      1. We have had crappy code for generations now. It is up to the compiler/interpreter to handle it better. Just as long as writing code is open to anyone, there is going to be crappy coding. We could try to make certified licensed fully credentialed coders, but I only see this cutting down on creativity in coding and what could be coded. For every 100 times we see crap code, there will be 1 time there would be ingenious code that would be caught by this tool, and basically prevent innovation. If IE 6 or Firefox 1 had this feature a decade ago, would we have tools like Google Maps, Gmail, or even giving suggestions based on what you are typing. Back then these were big and clunky JavaScript code, in a time where JavaScript was only for form validation.

      2. I cannot disagree with you there. You need a lot of experience to know when some code is threaded and other is serial. Lack of a normal sleep command, and its workaround requires bizarre threaded calls. It is also a pain to try to explain how AJAX works, where sometimes I really want it synchronous.

      --
      If something is so important that you feel the need to post it on the internet... It probably isn't that important.
    4. Re:Que my mom wondering why the internets broke by AmiMoJo · · Score: 1

      This is the reason behind the decision to introduce the new ad-blocking API that everyone was moaning about last week. It removes potentially slow add-ons from the critical performance path of the browser and replaces them with a native one that is presumably optimized and respects the time budget.

      Current discussion is around keeping the old API for add-ons that need it, but encouraging use of the new API. Google's usual pattern is to let that go on for a few years and then eventually retire the old API once the new one is has matured enough.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    5. Re:Que my mom wondering why the internets broke by Opportunist · · Score: 1

      In theory a good idea.

      In practice it means you have to trust Google.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    6. Re:Que my mom wondering why the internets broke by Penguinisto · · Score: 1, Redundant

      Define "crap web code"

      It usually ends in *.php

      (/me ducks and runs, laughing maniacally.)

      --
      Quo usque tandem abutere, Nimbus, patientia nostra?
    7. Re:Que my mom wondering why the internets broke by AmiMoJo · · Score: 1

      Google controls the entire browser, so how can it be any worse? They could nerf ad blockers any time if they wanted to, but instead went out of their way to provide the original deep API for blocking (it was actually extended a couple of times to allow blocking earlier in the loading process) and the new high performance one.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    8. Re:Que my mom wondering why the internets broke by Penguinisto · · Score: 2

      re. 1. :
      No, seriously, no. Why is it up to the browser to accommodate shitty code (outside of gracefully aborting the load and kicking up the appropriate error code - is that what you meant?) I also don't really buy the 'brilliant-code-caught-in-the-trap' argument, either; exploiting ugly standards-sloppy interpreter loopholes to do something awesome is cool, but the true innovation is to do it in a way that doesn't cause the browser to puke whenever the browser makers fix the bug you exploited for that 'innovation' in the first place.

      --
      Quo usque tandem abutere, Nimbus, patientia nostra?
    9. Re:Que my mom wondering why the internets broke by dinfinity · · Score: 3, Informative

      You misspelled 'js' there.

      PHP is a server-side language, remember?

    10. Re:Que my mom wondering why the internets broke by PPH · · Score: 1

      Define "crap web code"

      Whatever generates the "A web page is slowing down your browser" message. Could be bad Javascript. Or bad server side code. Most often I suspect it's advertisers domains being throttled by my ISP.

      --
      Have gnu, will travel.
    11. Re:Que my mom wondering why the internets broke by Anonymous Coward · · Score: 1

      re 2: Plain JavaScript browser code *is not multi-threaded.* It has asynchronous behavior with callbacks or promises but it does not do multi-threading.

      The only exception to this is if you're using the WebWorkers feature which explicitly creates new threads.

    12. Re:Que my mom wondering why the internets broke by The+Snazster · · Score: 1

      Your anonymous cowardice is showing.

    13. Re:Que my mom wondering why the internets broke by swillden · · Score: 3, Insightful

      Your 'never slow mode' should only ever be a debug tool for people making web pages.

      I think the idea is that by making "slow mode" pages fail to work well, they'll force programmers to make better web pages. Chrome has had debug tools that provide all this information for ages, and the developers who make use of them can make very snappy sites. But those conscientious and careful developers aren't the problem. It's all the ones who won't do it right until doing it wrong results in user complaints that you need to reach.

      (Disclaimer: I work for Google but don't know anything about this beyond what I read in the summary. I didn't even RTFA.)

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    14. Re:Que my mom wondering why the internets broke by squiggleslash · · Score: 1

      It is up to the compiler/interpreter to handle it better.

      Maybe doing the exact opposite might solve the issue. Right now web development is managed by random Javascript developers working hand in hand with insane marketing people. Google has been going the "Give them what they want and make it work best in our browser" philosophy for a while now, and it doesn't work. Autoplaying video coupled with fifteen tracking scripts from different tracking companies? Hey, Chrome allows that, so let's do it.

      What about we don't. What about when the marketing guy demands they add another tracker, it noticeably slows down the web browser. What about autoplaying video that isn't enabled by default. What about restricting which events a page can capture so we don't lose our middle click or right click features. What about imposing limits so that, for example, over use of closures doesn't result in a web page suddenly gobbling hundreds of megabytes of RAM.

      It's time broken web pages showed up as such so the developers and their managers can clearly see they're asking for the ridiculous.

      --
      You are not alone. This is not normal. None of this is normal.
    15. Re:Que my mom wondering why the internets broke by AmiMoJo · · Score: 1

      Google has done this before and it worked quite well. Remember Flash? They first restricted it to running by default only on whitelisted pages, everything else became click-to-play by default. Then that became blocked by default. Finally after several years it was removed entirely, having given everyone plenty of time to stop (ab)using it.

      They will likely do something similar if they decide to go ahead with this. Enable one aspect at a time, in a way that causes minimal breakage, keep nudging developers to fix their sites.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    16. Re:Que my mom wondering why the internets broke by Fly+Swatter · · Score: 1

      The 'web development' players 'making web pages' keep shooting themselves in the foot, it's time to start amputating the damage. Instead of educating better developers, it's time to take away their gun.

    17. Re:Que my mom wondering why the internets broke by Anonymous Coward · · Score: 1

      Just look at the code for any site made or redesigned last 5 years.

      My career now is taking old functional web applications and rewriting them into slow javascript bloated web UIs.

      It's not my fault. It's what the clients want.

    18. Re:Que my mom wondering why the internets broke by phantomfive · · Score: 1

      They need to create an ad-blocker. That solves 95% of slowness problems.

      --
      "First they came for the slanderers and i said nothing."
    19. Re:Que my mom wondering why the internets broke by Dynedain · · Score: 3, Interesting

      The correct problem to apply pressure to:

      1) Crap web code, and specfically better educating the people that write it.
      2) Javascripts crappy threads.

      That's exactly what they're doing. If your site craps out under this mode, you'll be pressured to fix it.

      --
      I'm out of my mind right now, but feel free to leave a message.....
    20. Re:Que my mom wondering why the internets broke by sjames · · Score: 1

      Exactly. All they are doing is enshrining heisenbugs as a design feature. Congested network or busy computer means pages are broken and useless rather than slow but functional (then Google blames the web pages)..

      There are a few pages where I use synchronous requests as a design decision. I do that since until that transaction completes, there is no valid user action available other than closing the tab. It's a documented API choice, so I don't feel at all bad about using it. Google should feel bad about breaking it.

      It appears that they also want to cap image sizes (bye bye medical applications and others). Let me guess, the leading cause of delays, slow ad servers, will get an exception granted.

      Firefox is looking better every day.

    21. Re:Que my mom wondering why the internets broke by sjames · · Score: 1

      The problem there is that google is turning slow but working sites into broken sites even if the slowness cannot be avoided without removing needed functionality.

      It looks like they're going so far as to limit image size. That's because Google can't ever be wrong and had done an extensive study of everything in consultation with God himself and knows there exist no valid applications exist where 1 MB isn't good enough for everybody.

      They should be ashamed of themselves.

      My guess is that the workarounds will double code complexity and cause many new and exciting bugs as a result.

    22. Re:Que my mom wondering why the internets broke by swillden · · Score: 1

      You're making a lot of unsubstantiated assumptions which implicitly assume that the developers of Chrome are idiots and don't care if people use their browser. You should think about whether either of those things are likely.

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    23. Re:Que my mom wondering why the internets broke by Solandri · · Score: 1

      The correct problem to apply pressure to:

      1) Crap web code, and specfically better educating the people that write it.
      2) Javascripts crappy threads.

      I don't think you fully understand what's going on. What happens is a web page with crappy javascript code demands a lot of CPU cycles. Windows says "Oh, this thread needs more CPU. Here you go." Other pages then get starved of CPU and load more slowly.

      What this change will do is limit the max CPU any one web page can get in competition with others (e.g. when you put a slow-loading page in the background, and open a new tab to load a different page). That way if a site has crappy javascript code, only that site's pages load more slowly. The speed of other pages loading is less affected by the one page with crap code.

      I think this is a great solution to address one part of the problem. I've been dealing with it (ironically mostly with Google's pages) with The Great Suspender extension. That disables background tabs after a few minutes being idle in the background. I was having a problem with the Google App pages sucking up too much CPU when they were doing nothing but sitting there in the background. It also deals with other pages like Amazon and CNN which stay active and auto-refresh every few minutes, presumably so you can instantly get the latest version of the page when you switch to the tab, instead of having to wait for a manual refresh. That idea works if you just put a single tab in the background for a while. But it completely falls apart if I leave a couple dozen Amazon product pages in background tabs while I comparison shop.

      I'll still use the suspender to stop auto-refresh of web pages I may not view for hours. But this never-slow thing will be nice for immediately dealing with a recalcitrant page which sucks up so much CPU I have problems getting the browser to respond so I can kill the tab.

    24. Re:Que my mom wondering why the internets broke by sjames · · Score: 1

      When they did that with flash, it was only after HTML5 was fully capable of doing everything Flash was doing. They were sunsetting legacy code.

      It's a little hard to tell what we're signing up for here since the supporting design docs are all internal only. That is, they are presenting a contract with a blank cover seet covering all but the dotted line and saying "just sign here".

      What it sounds like is that we will end up with abominations where pages that naturally and intrinsically need a function to take more than 200ms to complete will sprout a "keep going" button that the user must click repeatedly until the progress bar reaches 100%.

      That and a heap of "burma shave" sites where to read the top ten list, you have to click through 10 page loads. (and 10 ad loads, of course). Is there anyone who actually likes that presentation format?

      If they really want to improve the web browsing experience, they can quit moving the text out from under my eyes every time a slow ad server finally coughs up an image and causes a text reflow. Make a stop button that stops all executing javascript and cancels any pending loads leaving the page exactly as it is currently rendered.

    25. Re:Que my mom wondering why the internets broke by sjames · · Score: 1

      Perhaps you should read the link provided in the summary.

      Everything I said is based on things the actual owner of the feature said.

    26. Re:Que my mom wondering why the internets broke by FrankSchwab · · Score: 1

      OMG, your last paragraph would so improve my browsing experience.

      Of course, stopping Javascript means that Google can't follow your mouse cursor around the page, amongst other things.

      --
      And the worms ate into his brain.
    27. Re:Que my mom wondering why the internets broke by WaffleMonster · · Score: 1

      You're making a lot of unsubstantiated assumptions which implicitly assume that the developers of Chrome are idiots and don't care if people use their browser.

      Well they sure are acting like idiots in this instance.

      It's not at all a given that's the implicit assumption given market share enjoyed by chrome. Some may well get tired of broken sites and switch. A much more likely scenario is the user will complain to or blame the site owners and chrome gets a pass.

    28. Re:Que my mom wondering why the internets broke by Anonymous Coward · · Score: 1

      Don't forget to add in blockchain, quantum computing, artificial intelligence and augmented reality. Your customers demand the very best, so you need to nail all the buzzwords when you're working on their projects.

    29. Re:Que my mom wondering why the internets broke by thegarbz · · Score: 1

      Fucks sake - this is exactly the reason random web page X stops working.

      You could act more like your dad and simply not randomly enable optional features, and tell your mom to not push random buttons she doesn't understand and then complain about the result.

    30. Re:Que my mom wondering why the internets broke by Waccoon · · Score: 1

      As much as I hate to say it, forcing people to do the right thing never works. People who don't care about doing the right thing will always do terrible work, and you'll always make things more difficult for the people who do.

  2. Sounds like effective ad blocking is the answer by OffTheLip · · Score: 5, Insightful

    Web pages load okay without all of the crap added to them.

    1. Re:Sounds like effective ad blocking is the answer by DickBreath · · Score: 1

      I run uMatrix and slashdot works just fine for me.

      --

      I'll see your senator, and I'll raise you two judges.
    2. Re:Sounds like effective ad blocking is the answer by Bite+The+Pillow · · Score: 1

      Well, I can't count the number of times I've seen a fully rendered page for an instant followed by "aw snap" - with JavaScript disabled. So not quite the whole answer.

    3. Re:Sounds like effective ad blocking is the answer by sjames · · Score: 1

      The joke is that Google wants to remove your ability to block those ads and break the actual content instead.

    4. Re:Sounds like effective ad blocking is the answer by sjames · · Score: 1

      So the real fix if for google to fix the "aw snap" display to not block you from reading what was already rendered successfully rather than seeking to break even more stuff.

  3. How about tracking? by Anonymous Coward · · Score: 3, Insightful

    i would turn off the tracking and monitoring and everything would be much faster!

    1. Re:How about tracking? by grumpy-cowboy · · Score: 1

      Just on Slashdot if you enable content blocking in Firefox (v65), 17 trackers and 3 third-party cookies are blocked. 17 trackers!!

      --
      Will $CURRENT_YEAR be the year of the Linux Desktop?
  4. That's easy by Opportunist · · Score: 2

    Dump all the ads and it's gonna be blazingly fast.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  5. What's old is new again by ArhcAngel · · Score: 1

    That's exactly what BlackBerry did with their system. They would strip off all code that wouldn't render on a BB and only transmit what would. Back then it saved money on data as well as sped things up.

    --
    "A person is smart. People are dumb, panicky dangerous animals and you know it." - K
    1. Re:What's old is new again by Anonymous Coward · · Score: 1

      Blackberry could only do that because all web content was sent through their proxy servers. While big enterprise loved the monitoring and tracking features that enabled, it provided a completely shit user experience for anyone not within 100km of Blackberry's proxy servers.

  6. Son of Flash by Pezbian · · Score: 1

    I remember the days when a Flash ad would instantly peg CPU usage. I just killed Flash instead of looking into why. Maybe it was rendering 1000FPS instead of 60? Sure, I missed the latest Strong Bad Email, but those eventually disappeared, too.

    Now it's not so much CPU as RAM. When closing one small page frees up 2GB, that's not a good sign.

    --
    In a world of the blind, the one-eyed man is king--and the two-eyed man is a heretic.
  7. Go back to older HTML. by xack · · Score: 1

    Do we really need WebGL, canvas, wasm, node, jquery and all this HTML5 crap? I remember i could open hundred of tabs in Firefox on a system with just a gigabyte of ram back in 2004. Now Waterfox struggles with about 10 tabs on a 16gb system and I have to constantly re-open it. Just have HTML 4.01 with the video tag set to non autoplay and make the web simple.

    1. Re:Go back to older HTML. by tepples · · Score: 2

      So where would that leave web applications that have a legitimate use for "all this HTML5 crap"? As I understand your suggestion, they'd have to become native applications, which means they might not be made available at all for minority operating systems or CPU architectures.

    2. Re:Go back to older HTML. by Anonymous Coward · · Score: 1

      Each browser tab could be put into a certain "mode": 1) Game mode, 2) App mode, 3) Reading mode. Reading mode could be the default and only provides basic functionality.

    3. Re:Go back to older HTML. by Fly+Swatter · · Score: 3, Insightful

      It would leave them where they belong - not in a web browser.

    4. Re:Go back to older HTML. by tepples · · Score: 1

      Assuming that applications belong in an environment that is not-a-web-browser: Which not-a-web-browser application environment is compatible with all major desktop and mobile platforms?

    5. Re:Go back to older HTML. by tepples · · Score: 1

      Until it becomes common for ad-supported websites to offer use in app mode without charge or use in reading mode for a monthly subscription. Anti-tracking-blocking measures on The Atlantic, MIT Technology Review, and other websites already do just this.

    6. Re:Go back to older HTML. by Fly+Swatter · · Score: 1

      Wasn't this the original intent of JAVA, I mean the real one - not some script bolted onto a web browser because no one else wanted it.

    7. Re:Go back to older HTML. by DdJ · · Score: 1

      So where would that leave web applications that have a legitimate use for "all this HTML5 crap"?

      Hopefully, with a relatively fine-grained exception system that allows this to be overridden explicitly when it makes sense to.

  8. Google should just delist ... by Qbertino · · Score: 1

    ... all broken, slow and bloated websites.
    Many problems would go away really fast and in a year from now the essential web would suck way less because people would've adjusted with better code and better planning.

    --
    We suffer more in our imagination than in reality. - Seneca
  9. Never slow typing on android by HalAtWork · · Score: 2

    How about they work on a 'never slow typing' mode for Android. How does everyone get this so wrong? Doesn't matter the phone, there's always a point where the text stops popping up as you're typing and then a ton of random characters barf out at once, cursor position getting switched around as you type, it's maddening.

    1. Re:Never slow typing on android by sexconker · · Score: 1

      It's because the Snapdragon SoCs in these things are shit, and Android's scheduling is shit.

      When the SoC throttles (and it will), it clocks down so fucking hard that you can't fucking do anything. I believe Android's "project butter" change from 4 years back or so essentially just gave rendering the UI (which is always a graphical thing in Android) the highest absolute priority over anything. Your fucking typing goes to the back of the bus until the SoC, now running at a snail's pace, has now finished processing whatever it thinks it needed to draw (even if it's no longer the foreground application). THEN your characters come out in a sudden burst, assuming the processor is free.

      The slow typing issue is ALWAYS there, it's just much more apparent when your phone throttles. When you're throttled, it's exponentially worse since the shit that takes precedence over your typing keeps coming in and cutting in line ahead of your typing. That keeps the processor loaded and throttled.

    2. Re:Never slow typing on android by thegarbz · · Score: 1

      huh?

  10. Internet data stream-lining - give me speed || die by AndrewFlagg · · Score: 1

    about damn time web designers with heavy CSS and HTML need to tighten it up. they don't give an rats a** when they believe their mobile clients all have unlimited data and time to wait for their beautification to download; furthermore, been analyzing page loads for 3 months and so correct, out of 1.5 million home pages, of the 119 million to be processed, it appears that more that 3% have this problem as so reported and growing. side note: if you have a search engine with a spider and are looking for the title and keywords meta tag, you have to dig a little deeper. my hope and goal is to show that those elements are and should be within the first 1000 characters of any landing / home page.

  11. Human nature by sjbe · · Score: 2

    1) Crap web code, and specfically better educating the people that write it.

    Good luck with that. Exactly how do you plan to reach all these millions of developers writing "crap" code and forcibly educate them? Sometimes forced constraints are not such a bad thing.

    Your 'never slow mode' should only ever be a debug tool for people making web pages.

    Yeah, have you met people? Because NOBODY I know would stay in their lane on that, myself included.

    1. Re:Human nature by sjames · · Score: 1

      So your alternative is to make the browser broken in a way that some things that now work fine will just never work again?

  12. Now CNN will load by ripvlan · · Score: 1

    Has anyone else noticed how painful it is use to CNN? I don't know what they do but the JS is constantly dynamically reflowing the page. I had to pull an old iPad (iOS 9) out of a drawer recently - and quickly noticed how slow the page is. While "struggles" is the wrong word, my new PC shows slowness while rendering and on the iPad it was unusable.

    At first I thought - old iPad, bad iPad. Then I tried other news websites and it was fine. Its just friggen HTML. I can read the articles faster than the JS can render itself.

    and for you comment moderators - while based upon real incidents, this post contains sarcasm.

  13. Easy get rid of google analytics by Perl-Pusher · · Score: 2

    In my experience, the slowest loading pages all have the same browser status: "waiting on google analytics"! They should start there!

    1. Re:Easy get rid of google analytics by thegarbz · · Score: 1

      They should start there!

      Except that the browser never waits on Google analytics. At least not unless you're using Google Analytics code from pre-2009 (when Google analytics became asynchronous and thus stopped affecting page load times at all) and were stupid enough to put the code in the head of the HTML.

  14. Use a modern browser by sjbe · · Score: 1

    I remember i could open hundred of tabs in Firefox on a system with just a gigabyte of ram back in 2004.

    And I bet you are going to try to convince us that such a workflow is somehow practical too...

    Now Waterfox struggles with about 10 tabs on a 16gb system and I have to constantly re-open it.

    Then I suggest you switch to a browser that actually works because I have no such problem with Firefox or Chrome or Edge or Safari.

  15. How about less obese webpages? by Rick+Schumann · · Score: 2

    I have a better solution: how about we 'trim the fat' from the pages' sources themselves, instead of having these bloated monstrosities in the first place? I use NoScript and whitelist only a few domains, so for many sites I manually temporarily 'trust' only the domains I know are safe and don't collect data. When some website won't even load basic text without enabling Javascript, and when the NoScript list of domains that page 'needs' grows to the point where it's practically going to scroll off the bottom of the monitor, then I say there's something seriously wrong with the way webpages are created these days.

    1. Re:How about less obese webpages? by thegarbz · · Score: 1

      how about we 'trim the fat' from the pages' sources themselves, instead of having these bloated monstrosities in the first place?

      Indeed, you should start by writing the internet a strongly worded letter. I mean people not being happy about ads also got rid of ads too right?

  16. Should be managed on a tab by tab basis by presidenteloco · · Score: 1

    Each tab should have its own "main thread" right?
    Or it not, then a tab's content that is found to be using resources greedily should be re-located to its own thread, which can be de-prioritized so that browsing elsewhere, and main browser controls, are not affected much performance-wise.

    Then I suppose "never-slow mode" could be enabled/disabled by user wrt a particular tab, or particular content, upon prompting from browser performance pop-up modal dialogs.

    --

    Where are we going and why are we in a handbasket?
    1. Re:Should be managed on a tab by tab basis by PPH · · Score: 1

      The trouble is: I want the content in that tab. But the content is waiting on an advertising banner web site which has stalled. If you de-prioritize the entire tab's content, I'll still be waiting for what I want.

      Perhaps the solution is a per-tab content 'map' with resource and speed data available for each part of the web page. And a thread for each part. And the ability to click on the offending banner ad and kill it's thread. And maybe a menu option to blacklist all future content from the responsible server.

      --
      Have gnu, will travel.
  17. Someone uses cnn.com? by sjbe · · Score: 1

    Has anyone else noticed how painful it is use to CNN?

    No because I don't visit their webpage. Just looked however and it is fine for me. Bear in mind though that I have Privacy Badger, uBlock Origin, AdBlock Plus and the built in Firefox privacy settings running so I'm killing a TON of tracking and add stuff. Kind of feels like fucking with 4 condoms on though when I go to sites like that.

  18. Mod parent up by presidenteloco · · Score: 1

    That's a damn good idea.

    User gets to enable bloat crap-ware per tab and only when they need it.

    --

    Where are we going and why are we in a handbasket?
  19. Please stop by WaffleMonster · · Score: 1

    Reminds me of the time I got a call about one of our configuration interfaces not working. User kept getting XSS errors and the page wouldn't even load.

    Needless to say I was quite impressed to find out browsers were employing black box naive heuristic filters that not only were not effective and could themselves be leveraged to mask attacks and as vectors for denial service they also caused random failures in non-defective code due to chance coincidence and naming conventions.

    The last thing the web needs is Nondeterminism. This not only pisses off users and developers alike it will be exploited to harass people and deny service. It's hard to think of a more asinine scheme than time based limits that depend on the characteristics and state of each device at the time document is being rendered.

  20. Nice by nospam007 · · Score: 1

    So I won't have to block 6 trackers and 9 scripts here on /. myself?

  21. LOL Good Luck! by sexconker · · Score: 1

    This will just result in broken pages. And broken pages that are broken differently based on each device's specs and load from other applications at the time.

    clobbers sync XHR

    Some people like to design things such that events and procedures happen one after the other, you know. Some people need consistent and deterministic logic and data. Some people care about race conditions.

    1. Re:LOL Good Luck! by DarkOx · · Score: 1

      ah but in Google land the user should never sit an see the throbber while the computer does something. No rather they should go no useful feedback at all while their browser sits and polls inefficiently over and over again to see if the server has completed some operation.

      --
      Repeal the 17th Amendment TODAY! Also Please Read http://www.gnu.org/philosophy/right-to-read.html
    2. Re:LOL Good Luck! by sexconker · · Score: 1

      And they should see the UI constantly adjusting as data is updated out of order.

  22. Re:Never-slow mode by sexconker · · Score: 1

    sanic is that u?

  23. Re:Much easier less complex way....... by Anonymous Coward · · Score: 1

    Too many designer crooks

    FTFY.

  24. Even assuming separate desktop and mobile players by tepples · · Score: 1

    Desktops and mobile devices have very different input and output devices. You shouldn't be using the same human interface for both of them.

    Good point. This raises two questions: First, which not-a-web-browser desktop app player is compatible with all major desktop and laptop platforms (X11/Linux, macOS, Windows, and Chrome OS)? Second, which not-a-web-browser mobile app player is compatible with both major touch-driven platforms (iOS and Android)?

    you could easily create a lot of well designed, cross-platform libraries that did work between machine types and were far, far easier to develop with than when targeting a browser.

    However, this raises two issues. First, let's assume for a moment that a developer doesn't own a Mac yet. Even assuming such a developer can figure out how to cross-compile a macOS application on GNU/Linux, how would such a developer cross-test the macOS build to make sure that the application has no macOS-only bugs? Second, Apple has reserved the right to block an application from being made available for iOS devices through its App Store. It'd face a lot more uproar if it tried to block a web application from being made compatible with the Safari browser.

  25. Complexity of the exception system by tepples · · Score: 1

    Hopefully, with a relatively fine-grained exception system that allows this to be overridden explicitly when it makes sense to.

    This raises two questions: First, how would a non-technical user learn to operate "a relatively fine-grained exception system" with the appropriate balance between safety and convenience? Second, how would a developer go about proving its application worthy of such an exception?

  26. Constraints by sjbe · · Score: 1

    So your alternative is to make the browser broken in a way that some things that now work fine will just never work again?

    "Broken"? Are you seriously arguing that everything is working fine now? Look, I have no idea if this proposal by Google is a good idea or not and I wasn't commenting on that. I'm merely arguing that the "solutions" proposed by the post I responded to are non-starters. You aren't going to educate developers into doing the Right Thing. There are ALWAYS idiots out there making crap code and by and large the only way to deal with them is with technical constraints. A lot of developers just aren't as good as they think they are or the people paying their salaries aren't willing to pay the cost of Doing It Right. Putting technical constraints on a bit of technology can be a net gain if done right because it forces those same idiots to do things in a sane(r) manner. Some can handle the flexibility but lots more developers really actually do need some lanes for them to follow.

    A good example of a constraint that worked out well is how Apple forced developers to use touch and did not provide a stylus for the iPad/iPhone for a long time. Developers on Windows historically tended to be lazy and treat the stylus as a sort of exotic mouse rather than the completely different writing device it really is. You've probably seen some of their work with a touch interface clumsily layered on to a mouse driver - it almost always sucks. And because they weren't forced to do it Right they never really wrote the software to take full advantage of a touch and stylus interface. Apple had to introduce an artificial constraint to force them to actually write software that wasn't just a minimal update of software designed for a keyboard and mouse. Developers and the companies that pay their salaries are to a degree understandably lazy and often don't want to do more than they have to if they have something that kinda-sorta-works.

    Also the notion that you could introduce a tool that would make web browsing faster and have only developers use it only for debug is ridiculous. Literally everyone would use such a tool whether or not it was a good idea. You would, I would, and so would everyone you know.

    1. Re:Constraints by sjames · · Score: 1

      So what if someone has a medical app that needs to display a CT image that is more than 1MB? So sorry, no browser for you!

      A debugging tool that is off by default WILL get used by non-developers, but that's fine. Any brokenness that happens then is something the user signed up for.