Slashdot Mirror


W3C Set To Publish HTML 5.1, Work Already Started On HTML 5.2 (softpedia.com)

An anonymous reader quotes a report from Softpedia: Members of the World Wide Web Consortium (W3C) are getting ready to launch the HTML 5.1 specification and have already started work on the upcoming HTML 5.2 version since mid-August. The HTML 5.1 standard has been promoted from a "Release Candidate" to a "Proposed Recommendation," the last step before it becomes a "W3C Recommendation," and officially replaces HTML 5 as the current HTML standard. As a Proposed Recommendation, HTML 5.1 is practically locked against major changes, and outside small tweaks here and there, we are currently looking at a 99.99 percent version of the upcoming HTML 5.1 standard. The vote to promote HTML 5.1 from RC to PR was approved in unanimity, a clear sign that major browser makers have reached a general consensus on what the standard should look like, and what they should be implementing in their browsers in upcoming versions. You can read more on HTML 5.1 here, the changes and support table here, and the HTML 5.2 specification draft here.

85 comments

  1. Date for HTML 5.2 by Anonymous Coward · · Score: 0

    When HTML5 came out, they said HTML 5.1 would come in 2016. Is there a date for HTML 5.2?

    1. Re:Date for HTML 5.2 by olsmeister · · Score: 1

      5.2 / 5.1 * 2016 = 2055

    2. Re:Date for HTML 5.2 by hcs_$reboot · · Score: 1

      :-) But 5_2.date = 5_1.releaseDate + 5_1.releaseDate - 5_0.releaseDate = 2016 + 2016 - 2014 = 2018 is maybe a closer approximation..

      --
      Slashdot, fix the reply notifications... You won't get away with it...
  2. w3c by Anonymous Coward · · Score: 0

    > You can read more on HTML 5.1 here, the changes and support table here, and the HTML 5.2 specification draft here.

    Oh yeah I'll get right on that, ummhmm..

    W3C specs read like stereo instructions. They read like The Handbook for the Recently Deceased.

    DRAW A DOOR

    1. Re:w3c by Anonymous Coward · · Score: 0

      Except the doorknob is on the hinge side, because the CSS doesn't work quite right.

    2. Re:w3c by Anonymous Coward · · Score: 0

      W3C is good at only one thing: generating arcane verbiage, which is instantly obsolete.

  3. Funny by Anonymous Coward · · Score: 1

    Funny how the standard is signed by Google and Apple representatives. No wonder Mozilla is crying about big corporates. They had almost no input in this and they're lagging on a lot of features.

    1. Re:Funny by Narcocide · · Score: 4, Insightful

      I don't see anything funny about that. Get ready for the bad old days of massive browser implementation incompatibilities to come back with full force when Google and Apple inevitably turn on each other and start playing tug-of-war with the standard while trampling Mozilla in the process.

    2. Re:Funny by no1nose · · Score: 1

      But... muh EDGE

    3. Re:Funny by Anonymous Coward · · Score: 0

      Why should Mozilla have any say?

    4. Re:Funny by Luc+X.+Ifer · · Score: 1

      Correct - today developing for the web is a nightmare. Just imagine how it will be next years. The days of web development are over, dead. People will discover that it is a myth to try to have a uniform ,cross platform UI platform aka browser UI widgets and just developing native for every single platform will be much more cheaper and efficient they trying the develop & maintain a cross-platform spaghetti soup.

  4. 5.1 Can't Exist by Anonymous Coward · · Score: 0

    Whatever happened to HTML 5 would be the last version and forever after HTML would be a living spec that's just called "HTML"?

    1. Re:5.1 Can't Exist by Anonymous Coward · · Score: 0

      It's the WhatWG group that has the living HTML 5 "standard".

    2. Re:5.1 Can't Exist by Anonymous Coward · · Score: 0

      Whatever happened to HTML 5 would be the last version and forever after HTML would be a living spec that's just called "HTML"?

      That's because grownups recognize that for standards to be meaningful, they have stake out definite fixed revisions to which implementers and users can point and say "yes, this is the version I support" or "this is the version I'm programming against." That living-standard business, on the other hand, is an invitation to sloppiness--it's too wishy-washy. You are never sure about where you are when you're dealing with a "living standard." It's the kind of thing that marketers would just love.

    3. Re:5.1 Can't Exist by Anonymous Coward · · Score: 1

      W3C agreed to the versionless <!DOCTYPE html> header for HTML 5, making it impossible to declare a specific version of HTML 5.

    4. Re:5.1 Can't Exist by Anonymous Coward · · Score: 0

      we can only hope that microsoft follows w3c's footsteps and windows 10 ends up NOT being the 'last version' of windows.

  5. Fuck the spec by Snotnose · · Score: 3, Interesting

    I wanna know how to reliably turn off auto-play video/audio under the current version of chrome and html5. Yeah, I've googled it and set the settings. The settings are routinely ignored.

    I don't know anyone who likes autoplay video/audio, which is why the marketers love it so much. Fuck them all, poke their eye out and fuck them in the skull.

    Html5 is making me miss flash, something I never thought would happen.

    1. Re:Fuck the spec by hcs_$reboot · · Score: 1

      It's not w3c fault if Chrome implements an annoying behavior...

      --
      Slashdot, fix the reply notifications... You won't get away with it...
    2. Re:Fuck the spec by Bruce+Perens · · Score: 1

      What's probably happening is that autoplay is not set on the static content, and Javascript on the page is modifying it or starting the play. So various settings won't catch it.

      If you know Javascript you might start with the Page Modifier plugin, I don't know if you will have every browser API you'll need. You can do fun things like add onplay events to videos, and stop them from the handler.

    3. Re:Fuck the spec by PAjamian · · Score: 1

      This is absolutely the case. Autoplay is a static attribute to the HTML5 video tag and can be set to be ignored by browsers, but there is also a Javascript API for HTML5 video playback and it is trivial to start playback from there. Technically that is not "autoplay", it is just, "play" that happens to be triggered on page load via Javascript.

      --
      Windows is a bonfire, Linux is the sun. Linux only looks smaller if you lack perspective.
    4. Re:Fuck the spec by The+MAZZTer · · Score: 1

      This is why Chrome extensions exist: https://chrome.google.com/webstore/detail/disable-html5-autoplay/efdhoaajjjgckpbkoglidkeendpkolai?hl=en (Disclaimer: I haven't checked this out myself.)

    5. Re:Fuck the spec by tlhIngan · · Score: 2

      This is absolutely the case. Autoplay is a static attribute to the HTML5 video tag and can be set to be ignored by browsers, but there is also a Javascript API for HTML5 video playback and it is trivial to start playback from there. Technically that is not "autoplay", it is just, "play" that happens to be triggered on page load via Javascript.

      And what happens is that the play command gets lumped in with the popup blocker commands that get ignored on page loads, which lets the play command work AFTER the page loads, but it doesn't start if it's part of the page load.

      An alternative is to ignore the play command if the tab isn't visible. And just in case, we can have a right-click menu option to send the play command as well in case someone tries to be tricky and assume the video start playing immediately.

    6. Re: Fuck the spec by Ilgaz · · Score: 1

      I hate to say it but Chrome is from World's largest advertising company. That is why they are slow(!) or lazy (!) about implementing features that will make advertisers mad.

      Just recently, Chrome mobile beta, not final gained the capability to play YouTube videos in background tab. That is the same browser who introduced "every tab runs in its own process" on an operating system which happily runs on 8 core handsets.

      If we use& support Mozilla Firefox, it isn't because we are old fashioned. It is because of independence, at least they try.

    7. Re: Fuck the spec by Ilgaz · · Score: 1

      Why doesn't Google hire that Eloston guy who is genius enough to implement such an advanced method to disable autoplay? It seems that their developers couldn't manage to do it ;-)

    8. Re:Fuck the spec by trawg · · Score: 1

      I don't know anyone who likes autoplay video/audio, which is why the marketers love it so much. Fuck them all, poke their eye out and fuck them in the skull.

      I've watched lots of non-nerd/technical people use things like Facebook and have often asked them why they have auto-play video enabled (in Facebook it is an option).

      From observing their behaviour before I ask them it is clear that autoplaying video for them is a feature - in most cases they scroll down, see the video play, watch the video for at least a few seconds, and then either finish it or move on. The impact of the autoplay is negligible to them; it's just something that happens in the app. None of them care about performance impact, privacy concerns, bandwidth wasting, etc.

      I have to say I don't have any problems with auto-playing video - Facebook is the only site I regularly use where that might be a problem and they've thoughtfully provided an option for me to disable it. I don't have Flash installed any more so it's rare that I come across a site with an autoplaying video. But it would irritate me if I did and I'd be looking at ways to block it :)

    9. Re: Fuck the spec by jafiwam · · Score: 1

      Why doesn't Google hire that Eloston guy who is genius enough to implement such an advanced method to disable autoplay? It seems that their developers couldn't manage to do it ;-)

      Google's customers wouldn't like it.

      FYI, your attention is the product. Their customers are their advertisers.

    10. Re:Fuck the spec by Anonymous Coward · · Score: 0

      In the majority of cases, I like autoplay video/audio, only place it generally annoys me if it starts playing while visiting a random tumblr blog. I do however run adblock because it's safer, preserves battery life, and keeps my laptop cooler and quieter.

    11. Re:Fuck the spec by Anonymous Coward · · Score: 0

      I wanna know how to reliably turn off auto-play video/audio under the current version of chrome and html5. Yeah, I've googled it and set the settings. The settings are routinely ignored.

      That should not be in the standard at all.
      The document should have no say whatsoever in if the auto-play is turned off or not. That is a function that the browser should have.
      You can't trust the the one serving you the page to send a page that is correctly set up and typically ads and fishing sites will send you malformed data.

    12. Re:Fuck the spec by guruevi · · Score: 1

      As a programmer, I like videos to autoplay when I instruct the program to do so. HTML is a programming language and does what the programmer wants, as it is intended to do. If you don't like it or certain programmers annoy you, you should avoid said programs/programmers (eg. CNN). Back in the day, browsers had a setting to override ANY CSS stylesheet with your own, immensely useful when everything on the web was Geocities and MySpace pages, I think those setting disappeared later on, perhaps there is an extension that will allow you to insert your own JavaScript or CSS on every page.

      --
      Custom electronics and digital signage for your business: www.evcircuits.com
    13. Re:Fuck the spec by JThundley · · Score: 1

      Use noscript, problem solved.

  6. actually... by Anonymous Coward · · Score: 0

    Google and Mozilla have similar features in general. Safari does not. It lags seriously behind. And since Safari on the iPhone is almost all the iphone browser share, you can't just ignore it like Internet Explorer or whats that shit called? Spartan? Edge. Edge actually has way more features to almost match chrome and firefox.
    To be blunt, Safari is holding the web back.
    It lacks so many features I won't even bother trying to list them all. Some of them are really important like webRTC, Full Screen (on mobile) and Orientation Lock (on mobile)

    1. Re:actually... by brantondaveperson · · Score: 1

      Safari has a 4.28% market share on the desktop, and a 14% share on mobile. I don't see how it's managing to hold back the web with market share like that.

    2. Re:actually... by Anonymous Coward · · Score: 0

      And Mozilla has even less share overall now, partly because they can't compete on that 14% because Apple won't let them. Yet we all blame Mozilla for that, while giving Apple a pass "because that's what we expect from them". Pretty sad times.

    3. Re:actually... by Anonymous Coward · · Score: 0

      not sure who "we" are in that sentence. People I know love and respect mozilla even if they have a garbage CEO trying to fuck it and firefox is damn slow. Mozilla are leaders in webVR and tons of other shit.
      Apple does great shit too. But they are definitely holding back the web.
      You don't do front-end do you?

    4. Re:actually... by Anonymous Coward · · Score: 0

      We as in, the general opinion, not everyone in isolation. Slashdot has viewed Mozilla negatively in general for years now, though there will always be a few people who pipe up to remind us that we're not quite a hivemind (even though you also demonstrate that hivemind by outright calling their CEO garbage, amusingly enough).

      I've been what the younger generations call a "full stack" dev for a long time, which includes a lot of front-end web stuff. I don't see what relevance that has to the discussion, though. Apple haven't done much "great shit" for the front end since they declared their lack of support for Flash (just prior to flooding the web with shitty -webkit extensions that we now need a compat spec for).

    5. Re:actually... by Anonymous Coward · · Score: 0

      I'm not sure what other slashdot people say. I'm usually too busy. My judgement of the mozilla ceo being garbage is from reading about her actions. I don't remember reading much about her here probably because I usually aint here. She is definitely garbage.

      Evrytime there is a consensus about something does not mean people haven't formed their own opinions. Most people dont like mayonnaise on their pizza. Is that because of the "hivemind"?

      You do frontend and the last thing you can remember apple doing is dropping flash? that was eons ago. "flooding the web with shitty -webkt extension" Clearly you are not a front end dev but who cares. Its not like we get much respect here anyway. lol.

    6. Re:actually... by Anonymous Coward · · Score: 0

      The Mozilla CEO is currently a "he": https://www.mozilla.org/en-US/about/leadership/
      So if the subject interest you so little, that you can't be bothered to know the basics, maybe you should tone down the rhetoric.

    7. Re:actually... by Anonymous Coward · · Score: 1

      Safari is holding the web back.

      Err, no.
      All the wankery that seems to have infected what passes for web pages and services nowadays is, as you put it, holding the web back. If I have to install browser extensions to strip out cruft to make pages readable, then I strongly suggest that the problem lies some place other that a single browser.

      For the record, mostly Linux user, haven't looked at Safari for years...

    8. Re: actually... by Ilgaz · · Score: 1

      Let me bluntly say it: Apple users are rich and they spend a lot of money. Apple doesn't allow anything other than WebKit on their iOS. If you put anything that doesn't work on Apple iPhone on your webpage, you will be fired.

      It is like opening a restaurant which doesn't serve to millionaires.

    9. Re:actually... by Anonymous Coward · · Score: 1

      Yeah now imagine it has 100% market share of the suits that decide my take-home pay!
      "Why doesn't this work on my iPhone!"

  7. Bloat by grumpy-cowboy · · Score: 1

    Is it just me or HTML spec start to be a f***ing mess? Google, Apple, Microsoft, .... please leave HTML markup standard alone!

    --
    Will $CURRENT_YEAR be the year of the Linux Desktop?
    1. Re:Bloat by Anonymous Coward · · Score: 0

      The problem is that it's either this, or relying on what are essentially Javascript hacks to do the same job far less efficiently. So it ain't pretty, but it's a lot prettier than that alternative.

    2. Re:Bloat by Anonymous Coward · · Score: 0

      No, the HTML spec has always been a mess, especially after 4.x...

    3. Re:Bloat by Tablizer · · Score: 2

      Is it just me or HTML spec start to be a f***ing mess? Google, Apple, Microsoft, .... please leave HTML markup standard alone!

      The HTML stack (HTML/CSS/JS/DOM) has jumped the shark so many times, the shark got carpal tunnel of the eyes.

    4. Re:Bloat by Anonymous Coward · · Score: 0

      Is it just me or HTML spec start to be a f***ing mess? Google, Apple, Microsoft, .... please leave HTML markup standard alone!

      It's been a mess all the time. When I first started looking at HTML in the 90's I recognized that it was a document format for flowing text that was primarily used to make some sort of graphic layout with.
      Heck, most pages would probably be less cludgy if they were made by placing HTML snippets of text in an SVG container rather than the other way around.

      When developing you should pick the right tool for the job. Unfortunately HTML is the only tool you can use and it isn't the right one.

  8. Firefox does respect your settings by Anonymous Coward · · Score: 2, Informative

    I don't know anyone who likes autoplay video/audio, which is why the marketers love it so much. Fuck them all, poke their eye out and fuck them in the skull.

    Launch Firefox, browse about:config, find media.autoplay.enabled and set to false. No video autoplay anymore, on every site.

    On the flip side, you have to click play every video of every page of every video site, news site, sport site, gaming site etc. Your choice.

    1. Re:Firefox does respect your settings by secretsquirel · · Score: 2

      And get weird behavior where you need to click play, which sets it to pause, then play again to get it to play, and sometimes messes up animated gif.

      All in all works great though, fuck autoplay.

    2. Re:Firefox does respect your settings by Anonymous Coward · · Score: 0

      On the flip side, you have to click play every video of every page of every video site, news site, sport site, gaming site etc. Your choice.

      that's a pretty awesome 'flip side'. when is an autoplaying video ever actually welcome, when you're NOT on an actual video site such as youtube or netflix?

    3. Re:Firefox does respect your settings by Anonymous Coward · · Score: 0

      Thanks for pointing out media.autoplay.enabled = false. The autoplay has been a minor annoyance for a long time. One of those little irritations that did not warrant the effort to figure out how to fix, but you did that for me, so thanks. Life is now just a wee bit better.

    4. Re:Firefox does respect your settings by Anonymous Coward · · Score: 0

      Thank YouTube for being buggy and not caring. Firefox has had to work around their bugs so often that it makes their browser look bad, when in reality YouTube's player is just a pile of junk and Google doesn't care about interoperability when it makes their browser look good by comparison.

  9. because... by Anonymous Coward · · Score: 0

    of iPhones. You can't just skip iPhones. Very important demographic. $$ Mac users also. $$
    what is safari's market share on macs? a lot more than %14. and on the iphone? Almost all of it. Not to mention that Chrome on the iPhone has to play by Safari's shitty standards with regards to a lot of things. Its not really like chrome on android.

  10. Teased, burned by Tablizer · · Score: 2

    I had read that HTML 5 supported form-input date checking and had a pop-up calendar doo-dad. But the only format supported across browser brands is YYYY-MM-DD format, which is NOT what most customers in USA want.

    You can twiddle with CSS etc. per brand and version, but one then might as well go back to time-tested JavaScript shit...

    I'm tired of fiddling with piddly grunt UI issues, I wish I could focus on domain logic. It gets really boring seeing 25-year-old GUI idioms get both re- and mis-implemented 20 different ways over the years.

    Forget keeping up with the damned Fadjoneses, just make a GUI standard that fucking works! Who cares if it looks like Windows 95, as long as its normal and works. Fuck the slidy animated throbbing doo-dads; they'll look "outdated" in 2 years anyhow to be replaced by mutant neon polkadots or whatnot and all the fanboys will chase yet another pot of UI gold beyond the horizon.

    and git off my lawn!

    1. Re: Teased, burned by Anonymous Coward · · Score: 0

      YYYY-MM-DD naturally sorts lexicographically and is a standard (ISO-8601).

      Otherwise agreed. The sheer number of date pickers, spinners, sliders, and other common widgets implemented in Javascript is facepalm-inducing.

    2. Re:Teased, burned by Anonymous Coward · · Score: 0

      But the only format supported across browser brands is YYYY-MM-DD format, which is NOT what most customers in USA want.

      Tough. We have to put up with retarded inside-out US dates, occasionally you can put up with the universally recognisable standard. Then we don't have to guess which one is the month field for the first 12 days of each month.

    3. Re:Teased, burned by Tablizer · · Score: 1

      Well, I have to kiss up to the customers or lose them (or my job), and my customers happen to be mostly in the USA. When I gotta pay the mortgage or eat, idealistic logic be damned.

    4. Re: Teased, burned by Ilgaz · · Score: 1

      You can also say it for metric system but in real life, they keep on using miles, feet, Fahrenheit.

    5. Re:Teased, burned by kbg · · Score: 2

      Yes it is unbelieve that standard input fields are currently not available. What I would like to see as standard input fields on the web.

      1) Date field where you can specify how the date is displayed to the user and how the date field is actually sent to the server.
      2) Time field with same option as the date field.
      3) Timestamp field with date time.
      4) Date range field.
      5) Integer number field with max min values but not with incremental buttons, and that display only number input on mobile.
      6) Currency field with specified currency and max min values.
      7) Country selector field with flag display that submits country code.
      8) Credit card number field, max min size and with optional LUHN check before submit.
      9) Phone number field with country selector.
      10) Email field with validation
      11) Simple HTML editor field with simple formatting like bold, italics, numbered lists e.t.c
      12) Image attachment field. Where you can select an image on your hard disk and it displays as an image in the browser before you submit.
      13) Video attachment field. Where you can select a video on your hard disk and it displays as a video in the browser before you submit.
      14) Audio attachment field. Where you can select an audio on your hard disk and it displays as audio in the browser before you submit.
      15) Simple table editor field. Where you can specify the table data as input in CSV and the result as are sent as CSV.

      All of these input fields are possible today but with a lot of kludges and hacking and very specific custom HTML. As it is now everybody in the world has to implement all of these types again and again.

    6. Re:Teased, burned by tijgertje · · Score: 1

      YYYY-MM-DD is what that field used under water (exposed to javascript/form) The field displays the date in the local format ;)

    7. Re:Teased, burned by tijgertje · · Score: 1

      1) 2) 5) 6) ? 10) Some of those fields allready exist ;)

    8. Re:Teased, burned by Anonymous Coward · · Score: 0

      YYYY-MM-DD is the international standard. Who cares what you want? You're still in love with table-based layout. Why don't you stop talking about web development as if you have any clue about it.

    9. Re:Teased, burned by Anonymous Coward · · Score: 0

      What I want is a submit button with a "once" attribute that disables the button the instant it is clicked, so after 30 years we can finally stop begging people to please, please only push the submit button once and not have to worry about javascript hacks to disable the button then spawn a timer to validate and submit the form after the DOM has updated.

    10. Re:Teased, burned by kbg · · Score: 1

      Some definition of date/time fields this exists, but is not supported in all browsers, for example Firefox. And the this stuff is just to limited to be actually usuable in real life. And if you have a working example of integer field which works in all browser, I would be very interested to actally see that.

    11. Re: Teased, burned by Anonymous Coward · · Score: 0

      I hope you are aware that there are only 3 countries still clinging to the imperial system: Burma, Liberia and the US. Every other country and many professions have either mostly or completely switched.

    12. Re: Teased, burned by Anonymous Coward · · Score: 0

      Looks like Burma and them boys know what's good. They know a good standard when they see it.

    13. Re: Teased, burned by Anonymous Coward · · Score: 0

      There are loads of US citizens who are clinging to a Carter-era political football. They think it makes them tough, or "real", or "street" or something. Instead it's just outdated politics and an automatic comfort zone. "We really stuck it to Carter, hey!"

      I've heard all the reasons for sticking with Imperial. They all boil down to:

      1). I don't want to and Nobody Can Make Me;
      2). I have an edge case where Imperial measures are slightly more convenient (ignoring the equally valid edge cases where Metric is slightly more convenient);
      3). Converting would cost a Giga-Zillion of $ and nobody buys new tools or learns anything new, ever!
      4). We are the United States and we set the standards. Even when we don't. We will not hear of an international system that we do not control!! The success of the Metric system is an evil to be purged!

    14. Re: Teased, burned by colinrichardday · · Score: 1

      Both US and Imperial were derived from English units, but I'm not sure they're the same.

    15. Re:Teased, burned by colinrichardday · · Score: 1

      And how can W3C compel browser makers to support something?

    16. Re:Teased, burned by Tablizer · · Score: 1

      The "local format" must be fucked up then.

    17. Re: Teased, burned by allo · · Score: 1

      They are all better than implementing it with jquery UI. Browser really can validate inputs (i.e. is it a number of the integer range 1-100?), provide a nice ui showing whats up (slider) and provide alternative input (textfield with validation) for blind people. With jquery you have a piece of javascript fucking with your input fields, possibly breaking when some stupid ad script contains a js error.

    18. Re:Teased, burned by tijgertje · · Score: 1

      You think that software can't turn one date into another?

  11. No one implements W3C's HTML by Anonymous Coward · · Score: 0

    Uhm, browser vendors do not implement W3C's HTML... They follow the WHATWG instead.

    Browser vendors got fed up with the W3C during the XHTML days and started a new organization. Also, WHATWG's variant does not have versions, instead of "HTML 5.1" it is just called "HTML".

  12. And its getting worse! by treczoks · · Score: 1

    Have you seen the "<iframe allowfullscreen>" tag? Seems to be a marketeers wet dream. And every web users nightmare.

    1. Re:And its getting worse! by tlhIngan · · Score: 1

      Have you seen the "<iframe allowfullscreen>" tag? Seems to be a marketeers wet dream. And every web users nightmare.

      They probably implement that like full screen video - it has to be a user-requested action for that to actually happen and browsers have the ability to block a site from going full screen (as well as doing the overlay that says "site is now full screen" with "allow" and "cancel". And which is NOT overridable - the browser throws it up and the user can cancel it.

  13. Real features.. by CptLoRes · · Score: 2, Insightful

    Where are the new features that people actually need? Like for example being able to watch a live video stream in a browser without being a web guru and relying in complex server infrastructure. Instead of a simple [img src="rtsp://videoserver/live1/"] being part of the standard, we have all these big players pushing complex "trying to solve everything" systems that nobody but a select few have the time and resources to get up and running properly.

    1. Re:Real features.. by Anonymous Coward · · Score: 0

      Have you even looked at the "video" tag? It is exactly that simple. If you think otherwise, you are incompetent.

    2. Re:Real features.. by Anonymous Coward · · Score: 0

      What's insightful about this? There have been simple video tags in HTML5 for years now, but video isn't always a simple matter. Neither are images.

  14. User-resizable video windows? by swb · · Score: 1

    Whatever happened to those? Maybe I'm suffering from good-old-day-ism or simply misremembering, but I seem to remember a point where videos could be put in their own floating, resizable window.

    Now they're either a much-too-small region on a web page window or the entire thing fills the screen.

    1. Re:User-resizable video windows? by tepples · · Score: 1

      Pop-up blocking features in web browsers killed user-resizable pop-up windows.

  15. Partialy Answered by bussdriver · · Score: 2

    HTML 5.0 draft (before W3C got into their stupid versioning) contained some of your request already.

    1-2) ISO date format needs to be forced upon everybody. like the metric system. However, the spec doesn't require the browser display with it. Browsers are free to display the date in a localized format while submitting the proper ISO format. This wouldn't be much different than how Options display different values. Perhaps the spec should mention this so nobody fears doing this...

    3) HTML5 is good enough already; doubt you'll get them going further anytime soon. I can imagine from my experience with them that is how it'll go. I agree with you that it would be convenient.

    5) Initially, integer didn't suggest a incremental button (that I recall) but later the spec showed an example. The problem with presenting suggestions or screenshots of implementations is that every literal minded developer will copy it. The CSS groups are slow as hell and not in sync with HTML5 like it should be; could be how they create lots of tiny CSS working groups with narrow focuses and that doesn't respond to HTML5's requirements well enough yet. HTML5 tries to define appearances in CSS but that becomes a chicken/egg problem. Turning on the incremental buttons needs to be CSS... a slider presentation would also make sense (there is a big bias towards minimalism. Yet METER is creating quite the CSS challenge for them... which will be much more complex if they just begin to address all the requests out there for it.)

    6) Would be nice; however almost everything has either 2 decimals or 0. Just a few have 3. So an integer with step=0.01 would work well enough. Don't expect that to happen. Currency conversion or selection won't happen; that is too complex - you implement it. It would need to know what currencies you support so then you are somehow using a bunch of option tags or creating some odd list attribute.

    7) Country selector would also be nice. possible issues are related to constantly changing flags and countries in less stable places. If you implement it then you are in charge of handling those situations. You can do a Select with country flags already before HTML5.

    8) Credit cards - update related issues long term. similar issues as country listings but worse. Perhaps you can gain traction with the working group if you team up with a browser and aim towards CHIP and RFID support --- maybe we could finally get an encryption input !! It's not a new issue and they never handled the 2-way communication that is involved with an encryption input. (nobody even touches the cert authentication features in the browsers already except http://startssl.com/

    9) HTML5. has it. no validation possible. But it SHOULD use the proper keypad on a phone. I investigated this; it's crazy to go global with it which is why it was left open. Implementing is way too much work. With VOIP it seems that it would be pointless long term because any kind of phone number could be used anywhere; restricting this will become an issue in addition to keeping up with global changes in format. The only standard is the international prefix... except I found a few places where that didn't even apply within their country.

    10) HTML5 did it already. Has the best RegEx for email too- it's in the spec. check it out!

    11) HTML5 doesn't handle editors; however W3C is trying to standardize kludges. the groundwork on roles helps slightly but yes, it's all kludges. There are so many options on this one that it is highly unlikely to standardize. They really don't like taking something with a million options and standardizing on 1 simple solution.

    12-14) Yes, that would be nice. However they have added groundwork to make that much easier for you to do in HTML5. drag-n-drop files; local file access; AJAX file upload. The old "accept" attribute does work even though it's use is optional.

    15) never. same as 11. but 11, 12-14 related features make it easier to implement (because

  16. W3C is irrelevant by Freedom+Bug · · Score: 1

    You do realize that the W3C is irrelevant, right? The standard that the browsers actually use is developed by the Web Hypertext Application Technology Working Group (WhatWG).

  17. WOW by Anonymous Coward · · Score: 0

    mozilla has a new CEO? awesome. you know who I was talking about though.
    See, told you you i've been busy.

    the "rhetoric??" lol

  18. Average iOS user outspends Android user 20 to 1 by tepples · · Score: 1

    Share of users, share of traffic, and share of revenue differ.

    Safari has a 4.28% market share on the desktop

    Among people willing to buy products and services from Internet businesses, the market share is probably bigger than 4.28%.

    and a 14% share on mobile.

    Among people willing to buy products and services from Internet businesses, the market share is probably bigger than 14%. Tim Stenovec of Tech Insider summarized a report from IBM Commerce stating that iPhone and iPad users outspent Android users over 3 to 1 on Black Friday 2015. The average iOS user also spends over 9 times as much on paid apps and IAPs than the average Android user.

    Assume for a moment that the average iOS user spends 20 times as much money online as the average Android user. If that's the case, then 14% of the users represent 14*20/(14*20+86)*100 = 77% of the money. I don't remember where I read this 20-to-1 figure, but it at least appears consistent with the IBM Commerce report.

  19. Live streaming vs. prerecorded seeking by tepples · · Score: 1

    Where are the new features that people actually need? Like for example being able to watch a live video stream in a browser without being a web guru and relying in complex server infrastructure.

    Have you even looked at the "video" tag? It is exactly that simple.

    W3C's description of the <video> element states:

    The HTML5 specification does not specify a particular streaming method. It is expected that HTTP 1.1 progressive streaming is at least supported. Adaptive/live streaming may be supported as a UA extension.

    A Google search for HTTP 1.1 progressive streaming led to this page, which equates it with seeking in a prerecorded stream using HTTP range requests. But CptLoRes was referring to live streams, not prerecorded streams. The same page also states that not all non-Apple browsers support Apple's HTTP Live Streaming spec.

  20. I've had it for a month - meh by Press2ToContinue · · Score: 1

    It stops some autoplays, but many still play.

    --
    Sent from my ENIAC