Hm – I'm not too happy to see most of the original HTML-elements marked "not conforming" and "must not be used", thus preparing for browsers to eventually drop the support. There are still lots of web-sites and valuable information stored and archived in this format. Back in the day, it was thought that basic HTML was a format to last. Who is going to update these documents in order to make them conforming to future…
is no longer supported by browsers, but with a few css declarations it works just fine. Removing support for presentational markup does not mean a loss of information. Browsers will still render tags they don't recognize, and re-applying the styling of those tags is often trivial. (I mention because it's one of the more difficult, but not terribly so) As the web evolved, our needs changed. Do we still need the tag?
HTML 5.2 Recommendation
141–150 of 188 posts
Re: HTML 5.2 Recommendation
#142Hm – I'm not too happy to see most of the original HTML-elements marked "not conforming" and "must not be used", thus preparing for browsers to eventually drop the support. There are still lots of web-sites and valuable information stored and archived in this format. Back in the day, it was thought that basic HTML was a format to last. Who is going to update these documents in order to make them conforming to future…
Dropping the support does not make the elements non-functional. Instead, they are presented differently. Formats and notations do undergo changes. The comment mentions long-lived MS-Word doc. Which version of those, specifically, has been around the longest so far?
The report is saved across six .doc files, due to the size limitation of the 3.5" floppy disks we were using back then.
Re: HTML 5.2 Recommendation
#143I really wish we'd "simplify" the HTML spec. The "pave the cow paths" approach to allow non-closed tags and mix of various syntaxes has lead to an explosion of complexity. That has regressed into terrible performance and memory hungry parsers.
Re: HTML 5.2 Recommendation
#144Earlier quoted context omitted.
I unapologetically still use the font tag, because most of the time I have no desire to bother with CSS.
Even inline? Blah vs. Blah
You could use "font-size: small" to get the size="2" behavior.
(Also, "font-family: Whatever", not "font-face: Whatever".)
Re: HTML 5.2 Recommendation
#145Earlier quoted context omitted.
I unapologetically still use the font tag, because most of the time I have no desire to bother with CSS.
Even inline? Blah vs. Blah
> Blah
vs.
> Blah
Which is easier to remember? Which is more obvious at a glance?
Re: HTML 5.2 Recommendation
#146Earlier quoted context omitted.
> When I do a project I want to be able to code against the standards from which browsers were developed; that is the WHATWG standard. I already argued that there is no WHATWG standard, but only a document that changes every few days. Even without this nitpicking: Which of these thousands of versions is the one on which the browser implementation is based on?
This one: https://html.spec.whatwg.org/multipage/ . Contrary to some people's perception here, everything that goes into this is implemented by at least 2 browsers.
Wake up.
Re: HTML 5.2 Recommendation
#147Earlier quoted context omitted.
Again, which one? The one from November 14, 2017, the one from December 14, 2017 or the one from January 14, 2018? Do you really want to make a requirements document that describes something different at the day you sign it and at the day you deliver?
Sorry, but you can't print that page and use that forever. I understand that you wish that you could, but you can't. I live in the real world, so rather than reading a snapshot and hoping it stays that way forever, I just read the up-to-date version since that's what is implemented by browsers, not the PDF I saved 3 months ago.
Re: HTML 5.2 Recommendation
#148Earlier quoted context omitted.
Sure but they are using the copyright to insist on attribution, which undermines the argument that they are simply against using the law. If they really didn't care they'd use CC0. And in the quoted statement they are not saying the W3C should improve their process for forking WHATWG's work. They are saying the W3C shouldn't fork their work at all. So despite their specifically chosen license (with easy to understand…
This change to requiring attribution is actually fairly recent, and was made with some reluctance on the part of us editors, despite eventually agreeing it was the best path forward. See https://blog.whatwg.org/copyright-license-change
There is a typo in the third paragraph, first sentence, FYI. "Are not" is repeated.
For example, there are derivative specifications ("forks") that are not are not prominently identified as copies of WHATWG standardsRe: HTML 5.2 Recommendation
#149Earlier quoted context omitted.
This is not (uncontroversially) true. See the long discussion below or on any other W3C post on HN.
I don't need to see a comment thread here to understand the process. I have been following this for 20 years, long before there was a WHATWG. Additionally, WHATWG lost some credibility when they attempted to redefine the DOM and arbitrarily delete some node types. Granted, most of those types are legacy types not in use by anybody in long time, except for the attribute node type. Browser vendors simply ignored this f…
Re: HTML 5.2 Recommendation
#150Earlier quoted context omitted.
Even inline? Blah vs. Blah
Note that your CSS example is longer and requires combining two different syntaxes. And for one change, the difference in length and complexity is much more apparent. > Blah vs. > Blah Which is easier to remember? Which is more obvious at a glance?
Plus, the former is an absolute value where the latter is not, as far as I've been able to tell. I know that first span will always be 10pt font. I have no idea what "2" even means in this context.