http://www.w3.org/TR/html5-diff/
http://channy.creation.net/project/html5/html4-differences/Overview_ko.html
HTML 5 differences from HTML 4
W3C Working Draft 23 April 2009
- This Version:
- http://www.w3.org/TR/2009/WD-html5-diff-20090423/
- Latest Published Version:
- http://www.w3.org/TR/html5-diff/
- Latest Editor's Draft:
- http://dev.w3.org/html5/html4-differences/
- Previous Versions:
- http://www.w3.org/TR/2009/WD-html5-diff-20090212/
- http://www.w3.org/TR/2008/WD-html5-diff-20080610/
- http://www.w3.org/TR/2008/WD-html5-diff-20080122/
- http://www.w3.org/TR/2008/WD-html5-diff-20080610/
- Editor:
- Anne van Kesteren (Opera Software ASA) <annevk@opera.com>
Copyright © 2009 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark and document use rules apply.
Abstract
HTML 5 defines the fifth major revision of the core language of the World Wide Web, HTML. "HTML 5 differences from HTML 4" describes the differences between HTML 4 and HTML 5 and provides some of the rationale for the changes. This document may not provide accurate information as the HTML 5 specification is still actively in development. When in doubt, always check the HTML 5 specification itself. [HTML5]
Status of this Document
This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.
This is the 23 April 2009 W3C Working Draft produced by the HTML Working Group, part of the HTML Activity. The Working Group intends to publish this document as a Working Group Note to accompany the HTML 5 specification. The appropriate forum for comments is public-html-comments@w3.org, a mailing list with a public archive.
Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.
This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.
Table of Contents
1 Introduction
HTML has been in continuous evolution since it was introduced to the Internet in the early 1990's. Some features were introduced in specifications; others were introduced in software releases. In some respects, implementations and author practices have converged with each other and with specifications and standards, but in other ways, they continue to diverge.
HTML 4 became a W3C Recommendation in 1997. While it continues to serve as a rough guide to many of the core features of HTML, it does not provide enough information to build implementations that interoperate with each other and, more importantly, with a critical mass of deployed content. The same goes for XHTML 1, which defines an XML serialization for HTML 4, and DOM Level 2 HTML, which defines JavaScript APIs for both HTML and XHTML. HTML 5 will replace these documents. [DOM2HTML] [HTML4] [XHTML1]
The HTML 5 draft reflects an effort, started in 2004, to study contemporary HTML implementations and deployed content. The draft:
- Defines a single language called HTML 5 which can be written in HTML syntax and in XML syntax.
- Defines detailed processing models to foster interoperable implementations.
- Improves markup for documents.
- Introduces markup and APIs for emerging idioms, such as Web applications.
1.1 Open Issues
HTML 5 is still a draft. The contents of HTML 5, as well as the contents of this document which depend on HTML 5, are still being discussed on the HTML Working Group and WHATWG mailing lists. The open issues include (this list is not exhaustive):
- De facto semantic definitions for some formerly presentational elements.
- Details of accessibility and media-independence features, such as the
longdesc,altandsummaryattributes.
1.2 Backwards Compatible
HTML 5 is defined in a way that it is backwards compatible with the way user agents handle deployed content. To keep the authoring language relatively simple for authors several elements and attributes are not included as outlined in the other sections of this document, such as presentational elements that are better dealt with using CSS.
User agents, however, will always have to support these older elements and attributes and this is why the specification clearly separates requirements for authors and user agents. This means that authors cannot use the isindex or the plaintext element, but user agents are required to support them in a way that is compatible with how these elements need to behave for compatibility with deployed content.
Since HTML 5 has separate conformance requirements for authors and user agents there is no longer a need for marking features "deprecated".
1.3 Development Model
The HTML 5 specification will not be considered finished before there are at least two complete implementations of the specification. This is a different approach than previous versions of HTML had. The goal is to ensure that the specification is implementable and usable by designers and developers once it is finished.
1.4 Impact on Web Architecture
The following areas / features defined in HTML 5 are believed to impact the Web architecture:
- The use of the DOM as a basis for defining the language.
- The concept of browsing contexts.
- The distinction between user agent requirements and authoring requirements.
- The use of imperative definitions rather than abstract definitions with the requirement of black-box equivalence in implementations.
- The new content model concepts (replacing HTML 4's block and inline concepts).
- The focus on accessibility as a built-in concept for new features (such as the
hiddenattribute, theprogresselement, et cetera) instead of an add-on (like thealtattribute). - The focus on defining the semantics in detail (e.g. the outline algorithm, replacing the vague semantics in HTML 4).
- The
datagridelement. - The
menuandcommandelements. - The origin concept.
- Offline Web application caches.
- The definition of the browsing context "navigation" algorithm and the related session history traversal algorithms.
- The content-type sniffing and character encoding sniffing.
- The very explicit definition of a parser.
- The
contentEditablefeature and theUndoManagerfeature. - The Drag and Drop and Copy and Paste architecture.
- The cross-document messaging feature (the
postMessageAPI). - The new sandboxing features for
iframe. - The definition of URL.
2 Syntax
HTML 5 defines an HTML syntax that is compatible with HTML 4 and XHTML 1 documents published on the Web, but is not compatible with the more esoteric SGML features of HTML 4, such as the NET syntax (i.e. <em/content/). Documents using the HTML syntax must be served with the text/html media type.
HTML 5 also defines detailed parsing rules (including "error handling") for this syntax which are largely compatible with popular implementations. User agents must use these rules for resources that have the text/html media type. Here is an example document that conforms to the HTML syntax:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Example document</title>
</head>
<body>
<p>Example paragraph</p>
</body>
</html>
The other syntax that can be used for HTML 5 is XML. This syntax is compatible with XHTML 1 documents and implementations. Documents using this syntax need to be served with an XML media type and elements need to be put in the http://www.w3.org/1999/xhtml namespace following the rules set forth by the XML specifications. [XML]
Below is an example document that conforms to the XML syntax of HTML 5. Note that XML documents must have an XML media type such as application/xhtml+xml or application/xml.
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Example document</title>
</head>
<body>
<p>Example paragraph</p>
</body>
</html>
2.1 Character Encoding
For the HTML syntax of HTML 5 authors have three means of setting the character encoding:
- At the transport level. By using the HTTP
Content-Typeheader for instance. - Using a Unicode Byte Order Mark (BOM) character at the start of the file. This character provides a signature for the encoding used.
- Using a
metaelement with acharsetattribute that specifies the encoding within the first 512 bytes of the document. E.g.<meta charset="UTF-8">could be used to specify the UTF-8 encoding. This replaces the need for<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">although that syntax is still allowed.
For the XML syntax, authors have to use the rules as set forth in the XML specifications to set the character encoding.
2.2 The DOCTYPE
The HTML syntax of HTML 5 requires a DOCTYPE to be specified to ensure that the browser renders the page in standards mode. The DOCTYPE has no other purpose and is therefore optional for XML. Documents with an XML media type are always handled in standards mode. [DOCTYPE]
The DOCTYPE declaration is <!DOCTYPE html> and is case-insensitive in the HTML syntax. DOCTYPEs from earlier versions of HTML were longer because the HTML language was SGML-based and therefore required a reference to a DTD. With HTML 5 this is no longer the case and the DOCTYPE is only needed to enable standards mode for documents written using the HTML syntax. Browsers already do this for <!DOCTYPE html>.
2.3 MathML and SVG
The HTML syntax of HTML 5 allows for MathML and SVG elements to be used inside a document. E.g. a very simple document using some of the minimal syntax features could look like:
<!doctype html>
<title>SVG in text/html</title>
<p>
A green circle:
<svg> <circle r="50" cx="50" cy="50" fill="green"/> </svg>
</p>
More complex combinations are also possible. E.g. with the SVG foreignObject element you could nest MathML, HTML, or both inside an SVG fragment that is itself inside HTML.
2.4 Miscellaneous
There are a few other syntax changes worthy of mentioning:
- HTML now has native support for IRIs, though they can only be fully used if the document encoding is UTF-8 or UTF-16.
- The
langattribute takes the empty string in addition to a valid language identifier, just likexml:langdoes in XML.
3 Language
This section is split up in several subsections to more clearly illustrate the various differences there are between HTML 4 and HTML 5.
3.1 New Elements
The following elements have been introduced for better structure:
-
sectionrepresents a generic document or application section. It can be used together with theh1,h2,h3,h4,h5, andh6elements to indicate the document structure. -
articlerepresents an independent piece of content of a document, such as a blog entry or newspaper article. -
asiderepresents a piece of content that is only slightly related to the rest of the page. -
headerrepresents the header of a section. -
footerrepresents a footer for a section and can contain information about the author, copyright information, et cetera. -
navrepresents a section of the document intended for navigation. -
dialogcan be used to mark up a conversation like this:<dialog> <dt> Costello <dd> Look, you gotta first baseman? <dt> Abbott <dd> Certainly. <dt> Costello <dd> Who's playing first? <dt> Abbott <dd> That's right. <dt> Costello <dd> When you pay off the first baseman every month, who gets the money? <dt> Abbott <dd> Every dollar of it. </dialog> -
figurecan be used to associate a caption together with some embedded content, such as a graphic or video:<figure> <video src="ogg"></video> <legend>Example</legend> </figure>
Then there are several other new elements:
-
audioandvideofor multimedia content. Both provide an API so application authors can script their own user interface, but there is also a way to trigger a user interface provided by the user agent.sourceelements are used together with these elements if there are multiple streams available of different types. -
embedis used for plugin content. -
markrepresents a run of marked text. -
meterrepresents a measurement, such as disk usage. -
progressrepresents a completion of a task, such as downloading or when performing a series of expensive operations. -
timerepresents a date and/or time. -
canvasis used for rendering dynamic bitmap graphics on the fly, such as graphs or games. -
commandrepresents a command the user can invoke. -
datagridrepresents an interactive representation of a tree, list or tabular data. -
detailsrepresents additional information or controls which the user can obtain on demand. -
datalisttogether with the a newlistattribute forinputis used to make comboboxes:<input list="browsers"> <datalist id="browsers"> <option value="Safari"> <option value="Internet Explorer"> <option value="Opera"> <option value="Firefox"> </datalist> -
keygenrepresents control for key pair generation. -
bbrepresents a user agent command that the user can invoke. -
outputrepresents some type of output, such as from a calculation done through scripting. -
ruby,rtandrpallow for marking up ruby annotations.
The input element's type attribute now has the following new values:
datetimedatetime-localdatemonthweektimenumberrangeemailurlsearchcolor
The idea of these new types is that the user agent can provide the user interface, such as a calendar date picker or integration with the user's address book, and submit a defined format to the server. It gives the user a better experience as his input is checked before sending it to the server meaning there is less time to wait for feedback.
3.2 New Attributes
HTML 5 has introduced several new attributes to various elements that were already part of HTML 4:
-
The
aandareaelements now have amediaattribute for consistency with thelinkelement. It is purely advisory. -
The
aandareaelements have a new attribute calledpingthat specifies a space-separated list of URLs which have to be pinged when the hyperlink is followed. Currently user tracking is mostly done through redirects. This attribute allows the user agent to inform users which URLs are going to be pinged as well as giving privacy-conscious users a way to turn it off. -
The
areaelement, for consistency with theaandlinkelements, now also has thehreflangandrelattributes. -
The
baseelement can now have atargetattribute as well, mainly for consistency with theaelement. (This is already widely supported.) Also, thetargetattribute for theaandareaelements is no longer deprecated, as it is useful in Web applications, e.g. in conjunction withiframe. -
The
valueattribute for thelielement is no longer deprecated as it is not presentational. The same goes for thestartattribute of theolelement. -
The
metaelement has acharsetattribute now as this was already widely supported and provides a nice way to specify the character encoding for the document. -
A new
autofocusattribute can be specified on theinput(except when thetypeattribute ishidden),select,textareaandbuttonelements. It provides a declarative way to focus a form control during page load. Using this feature should enhance the user experience as the user can turn it off if he does not like it, for instance. -
A new
placeholderattribute can be specified on theinputandtextareaelements. -
The new
formattribute forinput,output,select,textarea,buttonandfieldsetelements allows for controls to be associated with a form. I.e. these elements can now be placed anywhere on a page, not just as descendants of theformelement. -
The new
requiredattribute applies toinput(except when thetypeattribute ishidden,imageor some button type such assubmit) andtextarea. It indicates that the user has to fill in a value in order to submit the form. -
The
fieldsetelement now allows thedisabledattribute disabling all its contents when specified. -
The
inputelement has several new attributes to specify constraints:autocomplete,min,max,multiple,patternandstep. As mentioned before it also has a newlistattribute which can be used together with thedatalistandselectelement. -
The
formelement has anovalidateattribute that can be used to disable form validation submission (i.e. the form can always be submitted). -
The
inputandbuttonelements haveformaction,formenctype,formmethod,formnovalidate, andformtargetas new attributes. If present, they override theaction,enctype,method,novalidate, andtargetattributes on theformelement. -
The
menuelement has two new attributes:typeandlabel. They allow the element to transform into a menu as found in typical user interfaces as well as providing for context menus in conjunction with the globalcontextmenuattribute. -
The
styleelement has a newscopedattribute which can be used to enable scoped style sheets. Style rules within such astyleelement only apply to the local tree. -
The
scriptelement has a new attribute calledasyncthat influences script loading and execution. -
The
htmlelement has a new attribute calledmanifestthat points to an application cache manifest used in conjunction with the API for offline Web applications. -
The
linkelement has a new attribute calledsizes. It can be used in conjunction with theiconrelationship (set through therelattribute) to indicate the size of the referenced icon. -
The
olelement has a new attribute calledreversedto indicate that the list order is descending when present. -
The
iframeelement has two new attributes calledseamlessandsandboxwhich allow for sandboxing content, e.g. blog comments.
Several attributes from HTML 4 now apply to all elements. These are called global attributes: class, dir, id, lang, style, tabindex and title.
There are also several new global attributes:
- The
contenteditableattribute indicates that the element is an editable area. The user can change the contents of the element and manipulate the markup. - The
contextmenuattribute can be used to point to a context menu provided by the author. - The
data-*collection of author-defined attributes. Authors can define any attribute they want as long as they prefix it withdata-to avoid clashes with future versions of HTML. The only requirement on these attributes is that they are not used for user agent extensions. - The
draggableattribute can be used together with the new drag & drop API. - The
hiddenattribute indicates that an element is not yet, or is no longer, relevant. - The
spellcheckattribute allows for hinting whether content can be checked for spelling or not.
HTML 5 also makes all event handler attributes from HTML 4 that take the form onevent-name global attributes and adds several new event handler attributes for new events it defines, such as the onmessage attribute which can be used together with the new eventsource element and the cross-document messaging API.
3.3 Changed Elements
These elements have slightly modified meanings in HTML 5 to better reflect how they are used on the Web or to make them more useful:
-
The
aelement without anhrefattribute now represents a "placeholder link". It can also contain flow content rather than being restricted to phrase content. -
The
addresselement is now scoped by the new concept of sectioning. -
The
belement now represents a span of text to be stylistically offset from the normal prose without conveying any extra importance, such as key words in a document abstract, product names in a review, or other spans of text whose typical typographic presentation is emboldened. -
The
hrelement now represents a paragraph-level thematic break. -
The
ielement now represents a span of text in an alternate voice or mood, or otherwise offset from the normal prose, such as a taxonomic designation, a technical term, an idiomatic phrase from another language, a thought, a ship name, or some other prose whose typical typographic presentation is italicized. Usage varies widely by language. -
For the
labelelement the browser should no longer move focus from the label to the control unless such behavior is standard for the underlying platform user interface. -
The
menuelement is redefined to be useful for toolbars and context menus. -
The
smallelement now represents small print (for side comments and legal print). -
The
strongelement now represents importance rather than strong emphasis.
3.4 Absent Elements
The elements in this section are not to be used by authors. User agents will still have to support them and various sections in HTML 5 define how. E.g. the obsolete isindex element is handled by the parser section.
The following elements are not in HTML 5 because their effect is purely presentational and their function is better handled by CSS:
basefontbigcenterfontsstrikettu
The following elements are not in HTML 5 because their usage affected usability and accessibility for the end user in a negative way:
frameframesetnoframes
The following elements are not included because they have not been used often, created confusion, or their function can be handled by other elements:
acronymis not included because it has created a lot of confusion. Authors are to useabbrfor abbreviations.applethas been obsoleted in favor ofobject.isindexusage can be replaced by usage of form controls.dirhas been obsoleted in favor oful.
Finally the noscript is only conforming in the HTML syntax. It is not included in the XML syntax as its usage relies on an HTML parser.
3.5 Absent Attributes
Some attributes from HTML 4 are no longer allowed in HTML 5. If they need to have any impact on user agents for compatibility reasons it is defined how they should work in those scenarios.
accesskeyattribute ona,area,button,input,label,legendandtextarea.revandcharsetattributes onlinkanda.shapeandcoordsattributes ona.longdescattribute onimgandiframe.targetattribute onlink.nohrefattribute onarea.profileattribute onhead.versionattribute onhtml.nameattribute onimganda(useidinstead).schemeattribute onmeta.archive,classid,codebase,codetype,declareandstandbyattributes onobject.valuetypeandtypeattributes onparam.languageattribute onscript.summaryattribute ontable.axisandabbrattributes ontdandth.scopeattribute ontd.
In addition, HTML 5 has none of the presentational attributes that were in HTML 4 as their functions are better handled by CSS:
alignattribute oncaption,iframe,img,input,object,legend,table,hr,div,h1,h2,h3,h4,h5,h6,p,col,colgroup,tbody,td,tfoot,th,theadandtr.alink,link,textandvlinkattributes onbody.backgroundattribute onbody.bgcolorattribute ontable,tr,td,thandbody.borderattribute ontable,imgandobject.cellpaddingandcellspacingattributes ontable.charandcharoffattributes oncol,colgroup,tbody,td,tfoot,th,theadandtr.clearattribute onbr.compactattribute ondl,menu,olandul.frameattribute ontable.frameborderattribute oniframe.heightattribute ontdandth.hspaceandvspaceattributes onimgandobject.marginheightandmarginwidthattributes oniframe.noshadeattribute onhr.nowrapattribute ontdandth.rulesattribute ontable.scrollingattribute oniframe.sizeattribute onhr.typeattribute onli,olandul.valignattribute oncol,colgroup,tbody,td,tfoot,th,theadandtr.widthattribute onhr,table,td,th,col,colgroupandpre.
4 APIs
HTML 5 introduces a number of APIs that help in creating Web applications. These can be used together with the new elements introduced for applications:
- 2D drawing API which can be used with the new
canvaselement. - API for playing of video and audio which can be used with the new
videoandaudioelements. - An API that enables offline Web applications.
- An API that allows a Web application to register itself for certain protocols or media types.
- Editing API in combination with a new global
contenteditableattribute. - Drag & drop API in combination with a
draggableattribute. - API that exposes the history and allows pages to add to it to prevent breaking the back button.
- Cross-document messaging.
4.1 Extensions to HTMLDocument
HTML 5 has extended the HTMLDocument interface from DOM Level 2 HTML in a number of ways. The interface is now implemented on all objects implementing the Document interface so it stays meaningful in a compound document context. It also has several noteworthy new members:
-
getElementsByClassName()to select elements by their class name. The way this method is defined will allow it to work for any content withclassattributes and aDocumentobject such as SVG and MathML. -
innerHTMLas an easy way to parse and serialize an HTML or XML document. This attribute was previously only available onHTMLElementin Web browsers and not part of any standard. -
activeElementandhasFocusto determine which element is currently focused and whether theDocumenthas focus respectively. -
getSelection()which returns an object that represents the current selection(s). -
designModeandexecCommand()which are mostly used for editing of documents.
4.2 Extensions to HTMLElement
The HTMLElement interface has also gained several extensions in HTML 5:
-
getElementsByClassName()which is basically a scoped version of the one found onHTMLDocument. -
innerHTMLas found in Web browsers today. It is also defined to work in XML context (when it is used in an XML document). -
classListis a convenient accessor forclassName. The object it returns exposes methods,has(),add(),remove()andtoggle(), for manipulating the element's classes. Thea,areaandlinkelements have a similar attribute calledrelListthat provides the same functionality for therelattribute.
5 HTML 5 Changelogs
The changelogs in this section indicate what has been changed between publications of the HTML 5 drafts. Rationale for changes can be found in the public-html@w3.org and whatwg@whatwg.org mailing list archives and to some extent in the This Week in HTML 5 series of blog posts. Many editorial and minor technical changes are not included in these changelogs. I.e. implementors are strongly encouraged to follow the development of the main specification on a frequent basis so they become aware of all changes that affect them early on.
The changes in the changelogs are in rough chronological order to ease editing this document.
5.1 Changes since 12 February 2009
- A new global attribute called
spellcheckhas been added. - Defined that ECMAScript
thisin the global object returns aWindowProxyobject rather than theWindowobject. - The
valueDOM attribute forinputelements in the File Upload state is now defined. - Definition of
designModewas changed to be more in line with legacy implementations. - The
drawImage()method of the 2D drawing API can now take avideoelement as well. - The way media elements load resources has been changed.
document.domainis now IPv6-compatible.- The
videoelement gained anautobufferboolean attribute that serves as a hint. - You are now allowed to specify the
metaelement with acharsetattribute in XML documents if the value of that attribute matches the encoding of the document. (Note that it does not specify the value, it is just a talisman.) - The
bufferingRateandbufferingThrottledmembers of media elements have been removed. - The media element resource selection algorithm is now asynchronous.
- The
postMessage()API now takes an array ofMessagePortobjects rather than just one. - The second argument of the
add()method on theselectelement and theoptionsmember of theselectelement is now optional. - The
action,enctype,method,novalidate, andtargetattributes oninputandbuttonelements have been renamed toformaction,formenctype,formmethod,formnovalidate, andformtarget. - A "storage mutex" concept has been added to deal with separate pages trying to change a storage object (
document.cookieandlocalStorage) at the same time. TheNavigatorgained agetStorageUpdates()method to allow it to be explicitly released. - A syntax for SVG similar to MathML is now defined so that SVG can be included in
text/htmlresources. - The
placeholderattribute has been added to thetextareaelement. - Added a
keygenelement for key pair generation. - The
datagridelement was revised to make the API more asynchronous and allow for unloaded parts of the grid.
In addition, several parts of HTML 5 have been taken out and will be further developed by the Web Applications Working Group as standalone specifications:
- Web Sockets
- Server-Sent Events
- Web Storage (the persistent storage and database storage features)
5.2 Changes from 10 June 2008 to 12 February 2009
- The
datamember ofImageDataobjects has been changed from an array to aCanvasPixelArrayobject. - Shadows are now required from implementations of the
canvaselement and its API. - Security model for
canvasis clarified. - Various changes to the processing model of
canvashave been made in response to implementation and author feedback. E.g. clarifying what happens when NaN and Infinity are passed and fixing the definitions ofarc()andarcTo(). innerHTMLin XML was slightly changed to improve round-tripping.- The
toDataURL()method on thecanvaselement now supports setting a quality level when the media type argument isimage/jpeg. - The
posterattribute of thevideoelement now affects its intrinsic dimensions. - The behavior of the
typeattribute of thelinkelement has been clarified. - Sniffing is now allowed for
linkwhen the expected type is an image. - A section on URLs is introduced dealing with how URL values are to be interpreted and what exactly authors are required to do. Every feature of the specification that uses URLs has been reworded to take the new URL section into account.
- It is now explicit that the
hrefattribute of thebaseelement does not depend onxml:base. - It is now defined what the behavior should be when the base URL changes.
- URL decomposition DOM attributes are now more aligned with Internet Explorer.
- The
xmlnsattribute with the valuehttp://www.w3.org/1999/xhtmlis now allowed on all HTML elements. data-*attributes and custom attributes on theembedelement now have to match the XMLNameproduction and cannot contain a colon.- Web Socket API is introduced for bidirectional communication with a server. It is currently limited to text messages.
- The default value of
volumeon media elements is now 1.0 rather than 0.5. event-sourcewas renamed toeventsourcebecause no other HTML element uses a hyphen.- A message channel API has been introduced augmenting
postMessage(). - A new element named
bbhas been added. It represents a user agent command that the user can invoke. - The
addCueRange()method on media elements has been modified to take an identifier which is exposed in the callbacks. - It is now defined how to mutate a DOM into an infoset.
- The
parentattribute of theWindowobject is now defined. - The
embedelement is defined to do extension sniffing for compatibilty with servers that deliver Flash astext/plain. (This is marked as an issue in the specification to figure out if there is a better way to make this work.) - The
embedcan now be used without itssrcattribute. getElementsByClassName()is defined to be ASCII case-insensitive in quirks mode for consistency with CSS.- In HTML documents
localNameno longer returns the node name in uppercase. data-*attributes are defined to be always lowercase.- The
openerattribute of theWindowobject is not to be present when the page was opened from a link withtarget="_blank"andrel="noreferrer". - The
topattribute of theWindowobject is now defined. - The
aelement now allows nested flow content, but not nested interactive content. - It is now defined what the
headerelement means to document summaries and table of contents. - What it means to fetch a resource is now defined.
- Patterns are now required for the
canvaselement. - The
autosubmitattribute has been removed from themenuelement. - Support for
outerHTMLandinsertAdjacentHTML()has been added. xml:langis now allowed in HTML whenlangis also specified and they have the same value. In XMLlangis allowed ifxml:langis also specified and they have the same value.- The
frameElementattribute of theWindowobject is now defined. - An event loop and task queue is now defined detailing script execution and events. All features have been updated to be defined in terms of this mechanism.
- If the
altattribute is omitted atitleattribute, an enclosingfigureelement with alegendelement descendant, or an enclosing section with an associated heading must be present. - The
irrelevantattribute has been renamed tohidden. - The
definitionURLattribute of MathML is now properly supported. Previously it would have ended up being all lowercase during parsing. - User agents must treat US-ASCII as Windows-1252 for compatibility reasons.
- An alternative syntax for the
DOCTYPEis allowed for compatibility with some XML tools. - Data templates have been removed (consisted of the
datatemplate,ruleandnestelements). - The media elements now support just a single
loopattribute. - The
load()method on media elements has been redefined as asynchronous. It also tries out files in turn now rather than just looking at thetypeattribute of thesourceelement. - A new member called
canPlayType()has been added to the media elements. - The
totalBytesandbufferedBytesattributes have been removed from the media elements. - The
Locationobject gained aresolveURL()method. - The
qelement has changed again. Punctation is to be provided by the user agent again. - Various changes were made to the HTML parser algorithm to be more in line with the behavior Web sites require.
- The
unloadandbeforeunloadevents are now defined. - The IDL blocks in the specification have been revamped to be in line with the upcoming Web IDL specification.
- Table headers can now have headers. User agents are required to support a
headersattribute pointing to atdorthelement, but authors are required to only let them point tothelements. - Interested parties can now register new
http-equivvalues. - When the
metaelement has acharsetattribute it must occur within the first 512 bytes. - The
StorageEventobject now has astorageAreaattribute. - It is now defined how HTML is to be used within the SVG
foreignObjectelement. - The notification API has been dropped.
- How [[Get]] works for the
HTMLDocumentandWindowobjects is now defined. - The
Windowobject gained thelocationbar,menubar,personalbar,scrollbars,statusbarandtoolbarattributes giving information about the user interface. - The application cache section has been significantly revised and updated.
document.domainnow relies on the Public Suffix List. [PSL]- A non-normative rendering section has been added that describes user agent rendering rules for both obsolete and conforming elements.
- A normative section has been added that defines when certain selectors as defined in the Selectors and the CSS3 Basic User Interface Module match HTML elements. [SELECTORS] [CSS-UI]
Web Forms 2.0, previously a standalone specification, has been fully integrated into HTML 5 since last publication. The following changes were made to the forms chapter:
- Support for XML submission has been removed.
- Support for form filling has been removed.
- Support for filling of the
selectanddatalistelements through thedataattribute has been removed. - Support for associating a field with multiple forms has been removed. A field can still be associated with a form it is not nested in through the
formattribute. - The
dispatchFormInput()anddispatchFormChange()methods have been removed. - Repetition templates have been removed.
- The
inputmodeattribute has been removed. - The
inputelement in the File Upload state no longer supports theminandmaxattributes. - The
allowattribute oninputelements in the File Upload state is no longer authoritative. - The
patternandacceptattributes fortextareahave been removed. - RFC 3106 is no longer explicitly supported.
- The
submit()method now just submits, it no longer ensures the form controls are valid. - The
inputelement in the Range state now defaults to the middle, rather than the minimum value. - The
sizeattribute on theinputelement is now conforming (rather than deprecated). objectelements now partake in form submission.- The
typeattribute of theinputelement gained the valuescolorandsearch. - The
inputelement gained amultipleattribute which allows for either multiple e-mails or multiple files to be uploaded depending on the value of thetypeattribute. - The
input,buttonandformelements now have anovalidateattribute to indicate that the form fields should not be required to have valid values upon submission. - When the
labelelement contains aninputit may still have aforattribute as long as it points to theinputelement it contains. - The
inputelement now has anindeterminateDOM attribute. - The
inputelement gained aplaceholderattribute.
5.3 Changes from 22 January 2008 to 10 June 2008
- Implementation and authoring details around the
pingattribute have changed. <meta http-equiv=content-type>is now a conforming way to set the character encoding.- API for the
canvaselement has been cleaned up. Text support has been added. globalStorageis now restricted to the same-origin policy and renamed tolocalStorage. Related event dispatching has been clarified.postMessage()API changed. Only the origin of the message is exposed, no longer the URL. It also requires a second argument that indicates the origin of the target document.- Drag and drop API has got clarification. The
dataTransferobject now has atypesattribute indicating the type of data being transferred. - The
melement is now calledmark. - Server-sent events has changed and gotten clarification. It uses a new format so that older implementations are not broken.
- The
figureelement no longer requires a caption. - The
olelement has a newreversedattribute. - Character encoding detection has changed in response to feedback.
- Various changes have been made to the HTML parser section in response to implementation feedback.
- Various changes to the editing section have been made, including adding
queryCommandEnabled()and related methods. - The
headersattribute has been added fortdelements. - The
tableelement has a newcreateTBody()method. - MathML support has been added to the HTML parser section. (SVG support is still awaiting input from the SVG WG.)
- Author-defined attributes have been added. Authors can add attributes to elements in the form of
data-nameand can access these through the DOM usingdataset[name]on the element in question. - The
qelement has changed to require punctation inside rather than having the browser render it. - The
targetattribute can now have the value_blank. - The
showModalDialogAPI has been added. - The
document.domainAPI has been defined. - The
sourceelement now has a newpixelratioattribute useful for videos that have some kind encoding error. bufferedBytes,totalBytesandbufferingThrottledDOM attributes have been added to thevideoelement.- Media
beginevent has been renamed toloadstartfor consistency with the Progress Events specification. charsetattribute has been added toscript.- The
iframeelement has gained thesandboxandseamlessattributes which provide sandboxing functionality. - The
ruby,rtandrpelements have been added to support ruby annotation. - A
showNotification()method has been added to show notification messages to the user. - Support for
beforeprintandafterprintevents has been added.
Acknowledgments
The editor would like to thank Ben Millard, Cameron McCormack, Charles McCathieNevile, Dan Connolly, David Håsäther, Frank Ellermann, Henri Sivonen, James Graham, Jens Meiert, Jürgen Jeka, Maciej Stachowiak, Mark Pilgrim, Martijn Wargers, Martyn Haigh, Masataka Yakura, Michael Smith, Olivier Gendrin, Øistein E. Andersen, Philip Taylor and Simon Pieters for their contributions to this document as well as to all the people who have contributed to HTML 5 over the years for improving the Web!
References
- [CSS-UI]
- CSS3 Basic User Interface Module, T. Çelik, editor. W3C, May 2004.
- [DOCTYPE]
- Activating Browser Modes with Doctype, H. Sivonen, January 2008.
- [DOM2HTML]
- Document Object Model (DOM) Level 2 HTML Specification, J. Stenback, P. Le Hégaret, A. Le Hors, editors. W3C, January 2003.
- [HTML4]
- HTML 4.01 Specification, D. Raggett, A. Le Hors, I. Jacobs, editors. W3C, December 1999.
- [HTML5]
- HTML 5, I. Hickson, D. Hyatt, editors. W3C, February 2009.
- HTML 5 (editor's draft), I. Hickson, editor. WHATWG, 2009.
- HTML 5 (editors' draft), I. Hickson, D. Hyatt, editors. W3C, 2009.
- HTML 5 (editor's draft), I. Hickson, editor. WHATWG, 2009.
- [PSL]
- Public Suffix List, Mozilla Foundation, 2007.
- [SELECTORS]
- Selectors, D. Glazman, T. Çelik, I. Hickson, editors. W3C, December 2005.
- [XHTML1]
- XHTML™ 1.1 - Module-based XHTML (Second Edition), S. McCarron, M. Ishikawa, editors. W3C, February 2007.
- [XML]
- Extensible Markup Language (XML) 1.0 (Fifth Edition), T. Bray, J. Paoli, C. Sperberg-McQueen, E. Maler, F. Yergeau, editors. W3C, November 2008.
- Namespaces in XML 1.0 (Second Edition), T. Bray, D. Hollander, A. Layman, R. Tobin, editors. W3C, August 2006.
올해에는 HTML5도 눈여겨 봐야 합니다. 구글은 최근 ‘기어스(Gears)’ 개발을 중단하고 HTML5를 밀기로 했다고 하는데요. HTML5가 되면 동영상을 보기 위해 어도비 플래시나 마이크로소프트의 실버라이트 등의 플러그인을 설치할 필요가 없어집니다. 또한 웹브라우저에서 오프라인 상태에서도 데이터를 저장하는 것도 가능해지고 드래그앤드롭(Drag&Drop)이 가능해지는 등 웹 자체가 데스크톱 애플리케이션처럼 동작할 수 있게 됩니다.
작년부터 클라우드 서비스가 각광을 받고 있는데 웹에 HTML5가 보급될수록 클라우드 서비스의 발전 속도는 더 빨라질 것 같습니다. 클라우드 서비스와 이를 위한 운영체제인 크롬OS를 밀고 있는 구글에서 HTML5를 대대적으로 밀겠죠.
출처: 2010년을 뒤흔들 10가지 기술 중에서
http://www.bloter.net/archives/22327
--------------------------------------------------------------------------
눈여겨 보아야할 부분은 오프라인 상태에서도 데이터를 저장하는 것이 가능하다는 것이다. 구글 Gears가 원래 그런 기능을 하기 위한 것이였지만, 사용방법은 쉽지 않았던 기억이 난다. Gears 같은 기능이 HTML5 기술에, 즉, 오프라인에서도
데이터를 저장하는 것이 가능해 질 때, BioInformatics에 어떤 영향을 미치게 될까?
대용량 데이터의 Upload 문제가 해결될 수 있는 실마리가 되지 않을까?
오프라인에서도 데이터를 저장한다는 것은 Gears 기능으로 미루어볼때
Local에서 입력한 자료(Parameter)들이 서버로 전송되지 아니하고, Local에 저장되어 있다가 나중에 서버로 올라갈 수 있다는 말인데, 한번 HTML5에 대해 곰곰히 생각해볼만한 가치가 있는 것 같다.
'Technology > Programming' 카테고리의 다른 글
| FLEX / Flex Chart example (0) | 2010.01.14 |
|---|---|
| FLEX / FLEX 한글화 문서 (0) | 2010.01.14 |
| Javascript / Javascript document (0) | 2009.12.11 |
| JAVA / 외부 명령어(프로그램) 실행하기 (0) | 2009.12.03 |
| JAVA / 파일처리 (0) | 2009.12.01 |