A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

Rationale: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(Deleted redundant link, "Rationale for a variety of elements," in "Other Pages" heading)
(→‎Other Pages: Added "HTML Design Principles")
Line 184: Line 184:
== Other Pages ==
== Other Pages ==


* [http://www.w3.org/TR/html-design-principles/ HTML Design Principles]
* [[Why no namespaces]]
* [[Why no namespaces]]
* [[Why no script implements]]
* [[Why no script implements]]

Revision as of 17:19, 2 January 2013

This document serves a rationale document for various parts of the HTML5 specification. Over time this page will be a complete rationale document.

General Rationale

One Vendor, One Veto

Part of the the goal of the WHATWG is to document how web browsers actually handle HTML. As such browser vendors already have veto power - by not following the standard. The W3C and WHATWG do not have any enforcement power and can only write what browsers are willing to implement. Not removing features from the HTML standard that at least one browser vendor has stated they are unwilling to implement causes the HTML spec to not accurately document reality.[1][2]. The veto isn't a power that we grant browsers, it's a right that they earn on their own by virtue of having users. The minimum market share for a veto is somewhere around 1%.[3]

Using elements where scripts "work"

In addition, arguments were made that JavaScript-based implementations of details suffer from problems and limitations. Scripting behavior may be inconsistent across browsers, or even unavailable in some contexts. Accessibility is "bolted on", allowing more opportunity for author error, even when using libraries. The data model is not exposed in a consistent way in the markup. And matching native appearance and behavior across a range of platforms may be impractical.[4]

It isn't just about web browsers

Web browsers are not the only programs that use HTML. Sometimes elements and features are needed even when browsers won't use them in any meaningful way. Document authoring tools, validators, search engines, screen readers, outliners, researchers, etc. all need and can use more information than a browser can. Furthermore if you provide more information than is currently used by browsers it opens up room for innovation.

Experimenting with features

New unknown and untested features are unlikely to get accepted into the WHATWG spec. Browsers and browser extensions (like Google Gears) are expected to first establish use cases and implementation possibilities before the spec is changed. [5]

Versioning the spec

Most authors don't care about whether or not an implementation supports an entire, full specification; they just want to know "Can I use this feature in this browser?" So saying that all major implementations support much of CSS 2 to a high degree of correctness is useless for knowing if, say, the author can use display: run-in. In other words, the feature tables are what web authors would actually use in real life.[6]


Modifying existing semantics

Some elements have different semantics than what HTML4 users would expect. Semantic markup isn't very useful if most pages use elements in a manner that conflicts with the defined semantics. For example, if a search engine treated dd as enclosing a term being defined, for the purposes of searching for definitions (or excluding defining occurrences from results), it would not find many definitions, and it would misclassify things.[7]

Specific Elements

Doctype

Since HTML5 has moved to an unversioned model the doctype does not a have version number. It is necessary for legacy browsers that will switch to standards mode only when a doctype is present.

Plaintext

The <plaintext> element is a obsolete precursor to the <pre> element. [8] It is now in the HTML5 spec as a method of stopping all further html token parsing. It lacks an end tag and just emits the rest of the page as plain text. It throws a parse error upon reaching the end of the document as it is not considered a valid element (and it is missing an end-tag).

Image

<image> element is treated as an alternate (but invalid) name for <img>. This is because some sites (around 0.2%[9]) make this mistake. It is already treated as an image by most major browsers.

Meter and Progress (are not the same thing)

<meter> is not just a special case of <progress>. The meter element represents a scalar measurement within a known range, such as storage quota usage, a relative popularity rating or relevance indicator. The control allows for the indication of high and low ranges, or minimum, maximum and optimal levels.

The progress element, on the other hand, represents the completion progress of a task. This could be a real time indicator for background processing task (e.g. using Web Workers or a file upload). Progress elmements can also be in the indeterminate state, indicating that something is in progress, but it's completion progress is unknown.[10]

The default rendering for a meter element could look something like the following:

<img src="http://developer.apple.com/mac/library/documentation/userexperience/conceptual/applehiguidelines/art/ct_leveldiscrete.gif" alt="example of proper rendering for the meter element">

Whereas, the default rendering for the progress element could look like this:

<img src="http://developer.apple.com/mac/library/documentation/userexperience/conceptual/applehiguidelines/art/ct_determprogsizes.jpg">

Alternatively, an indeterminate progress bar could also be styled as a throbber, which indicates progress without any indication of the remaining progress:

<img src="http://developer.apple.com/mac/library/documentation/userexperience/conceptual/applehiguidelines/art/ct_asynchprogindsizes.jpg" alt="picture of the default apple throbber">

See Re: <progress> draft for details.

B, I, EM, STRONG, and MARK

<em> is meant to indicate that some text is emphasized. <strong> is meant to confer importance upon text. <b> is meant for text that is stylistically offset from the rest of the text. Finally <i> is used to indicate that some text is meant to be read in an alternate mood.

For example

   Cats are <em>cute</em> animals.

could mean that cats are specifically cute.

   Cats are <strong>cute</strong> animals.

could mean that the word cute is in some way important

   Cats are <b>cute</b> animals.

could mean that the word cute is a new word (perhaps in a language lesson) but is not important

   Cats are <i>cute</i> animals.

could mean that the word cute is meant to be read in a different tone (sarcastically for example)

   Cats are <mark>cute</mark> animals.

means that the sentence is to be read normally but the word "cute" should be highlighted or marked in some way. This could be used for search terms on the page or alterations to an original text.

IMG tag & alt text

On certain types of pages adding alt text is impossible (like sites that the user could upload images but does not supply a description). Because of this the alt attribute is optional [11][12][13] A longdesc attribute is not needed [14]

textarea

The text area defaults to soft wrapping of the text area. The attribute @wrap can have one of the following values: soft, hard, or off.[15]. "off" is considered a non-conforming value because it appears to have no purpose other than a visual presentational effect. [16][17]

hgroup and other heading elements

The point of <hgroup> is to hide the subtitle from the outlining algorithm.

details element

The <details> element is needed to provide an accessible way of reflecting a common application widget in HTML-based applications without requiring authors to use extensive scripting, ARIA, and platform-specific CSS to get the same effect.[18][19]

HTML parsing

script element

Why the restrictions for contents of script elements? Why the complicated parsing rules for script elements?

See http://lists.w3.org/Archives/Public/public-html-comments/2010Mar/0017.html

@DEFER and @ASYNC

ASYNC tells the browsers to run the script with its following content at the SAME time(namely, asynchronously). DEFER tells the browsers to run the script LATER, and to run the following content first(the browsers will run the script until the page is ready).[20]

quirks mode

The HTML parser has the following behavior difference in quirks mode:

A start tag whose tag name is "table"
If the Document is not set to quirks mode, and the stack of open elements has a p element in scope, then act as if an end tag with the tag name "p" had been seen.

Why? See http://hsivonen.iki.fi/last-html-quirk/

ignored white space before head

White space before the <head> tag is ignored. The main reason is that, given the markup

<!DOCTYPE html>
<html>
 <head>
  <title>Sample page</title>
...,

some people expect

document.documentElement.firstChild

to return the head element.[21]


Failed proposals

An "advert" tag for advertisements

There is no advert tag because if users had an easy method of plainly disabling all ads from downloading or appearing content authors would cease to use the tag.[22]

sandbox attribute on the html element

HTML is the wrong level for disabling scripts or other features. This is the kind of thing we should do at the HTTP layer.[23][24]

feature queries

Various proposals have come up with the idea of being able to determine of a certain feature is available.[25] These fail for a variety of reasons: Part of the problem is that browser vendors will be economical with the truth. Marketing people always have an over-optimistic view of the compliance of their product, and will always give themselves the benefit of the doubt in borderline cases. Also, changing the compliance statement, to remove false claims that are exposed, is likely to a very low priority for the developers.[26] With regard to CSS feature compliance: Remember that CSS provides hints and implementations don't have to accept those hints, and hardware may sometimes prevent their being implemented.[27] Some other reasons can be found in the footnotes.[28][29]

custom HTML elements

Custom elements make it impossible for search engines, developers, and browsers to understand the semantics of a page.[30]


Other Pages

References

  1. http://lists.w3.org/Archives/Public/public-html/2009Jul/0257.html -- Re: Codecs for <video> and <audio></a>
  2. http://lists.w3.org/Archives/Public/www-archive/2009Jul/0075.html --Formal Objection to One vendor, One Veto
  3. http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2010-June/026897.html
  4. http://lists.w3.org/Archives/Public/public-html/2010Jun/att-0659/issue-93-decision.html
  5. http://www.mail-archive.com/[email protected]/msg22577.html
  6. http://www.mail-archive.com/[email protected]/msg23306.html
  7. http://lists.whatwg.org/htdig.cgi/help-whatwg.org/2010-October/000668.html
  8. http://www.w3.org/MarkUp/draft-ietf-iiir-html-01.txt
  9. Email from Ian Hickson; comment in spec source
  10. http://html5doctor.com/your-questions-answered-11/
  11. http://www.paciellogroup.com/resources/articles/altinhtml5.html
  12. http://juicystudio.com/article/requiring-alt-attribute-html5.php
  13. http://lists.w3.org/Archives/Public/public-html/2007Jun/0393.html
  14. http://juicystudio.com/article/html5-image-element-no-alt.php
  15. http://www.whatwg.org/specs/web-apps/current-work/#the-textarea-element-0
  16. http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2009-August/022022.html
  17. http://www.mail-archive.com/[email protected]/msg22660.html
  18. http://www.w3.org/Bugs/Public/show_bug.cgi?id=8379#c13
  19. http://www.w3.org/html/wg/wiki/ChangeProposals/removedetails
  20. http://www.mail-archive.com/[email protected]/msg22436.html
  21. [whatwg] several messages about the tree construction stage of HTML parsing
  22. http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2008-February/013939.html
  23. http://www.w3.org/Bugs/Public/show_bug.cgi?id=8849
  24. https://wiki.mozilla.org/Security/CSP
  25. http://lists.w3.org/Archives/Public/www-style/2009Dec/0130.html
  26. http://lists.w3.org/Archives/Public/www-style/2010Jul/0097.html
  27. http://lists.w3.org/Archives/Public/www-style/2003Nov/0000.html
  28. http://lists.w3.org/Archives/Public/www-style/2003Oct/0074.html
  29. http://lists.w3.org/Archives/Public/www-style/2004Mar/0282.html
  30. http://html5doctor.com/your-questions-13/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+html5doctor+%28HTML5doctor%29