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).

Common Subset: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(Redirected page to HTML vs. XHTML)
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The common subset intersecting HTML5 and XHTML5 is a subset of both syntaxes meant to create . The common subset is only implicitly defined by the HTML and XHTML specification because they have many syntax elements in common. A document is said to use the common subset when it can parse correctly with both the XML parser and the HTML parser.
#REDIRECT [[HTML vs. XHTML]]
 
A document using the '''conforming''' common subset is conforming with the specification whether it is interpreted as HTML or XHTML. The conforming common subset rejects any element with are not conforming in either of the two DOM variants.
 
A document using the common subset can be served as HTML (text/html media type) or XHTML (with an XML media type). The media type is what the browser use to decide if it'll be parsed as HTML or XHTML and which varient of the DOM is used.
 
 
== Common Syntax ==
 
[TBD]
 
== Limitations from HTML ==
 
[TBD]
 
== Limitations from XML and XHTML ==
 
* The doctype, optional in XHTML but mandatory in HTML, must match case-sensitivly this <code><!DOCTYPE html></code> to be well-formed and valid in XHTML.
* Well-formness contrains, not respecting these will generate fatal errors in XHTML.
** Comments cannot contain double-hyphens (--).
** Start tags and end tags must be balenced correctly, unless they're void element.
** Void tags must always be closed by a tailing slash ("/>").
** All attributes values must be quoted. Attributes without value are disallowed.
** All < and & in the text must be escaped, so is > inside comments or anywhere in the text when preceded by ]] (where it would be CData section end marker).
** Some characters are illegal in XML (U+0009, U+000A, U+000D, U+0020-U+D7FF, U+E000-U+FFFD, U+10000-U+10FFFF)
** Others constrains defined in the [http://www.w3.org/TR/REC-xml/ XML specification].
* <code>script</code> and <code>style</code> elements may not contain < or & in their unescaped form, unless they're in a CDATA block which would make the document non-conforming on the HTML side (althoug it should still be possible to make it work). External scripts and stylesheets are unaffected.
* <code>noscript</code> has no effect in XHTML.
* <code>document.write()</code> does not work in XHTML.
* Entity references cannot be used in XHTML (excluding the 5 predefined entities: &amp;, &lt;, &gt;, &quot; and &apos;).
* The namespace declaration (<code>xmlns</code> attribute) is required in XHTML. The xmlns attribute is also allowed to appear on the html element in HTML on the condition that is has the value "http://www.w3.org/1999/xhtml". <html xmlns="http://www.w3.org/1999/xhtml">
* DOM apis are case-sensitive in XHTML, scripts should always use lowercase to be compatible.
* Style rules are matching case sensitivly in XHTML, stylesheets should always use lowercase tag, attribute and class names to be compatible.
 
== Markup Issues and Workarounds ==
 
=== Base URI ===
 
HTML:
 
<base src="uri">
 
XML / XHTML:
 
<html xml:base="uri">
 
Workaround: HTTP Content-Location header:
 
Content-Location: uri
 
[http://www.w3.org/TR/html4/struct/links.html#h-12.4.1 HTML 4 Spec]
 
 
=== Character Set ===
 
HTML
 
<meta http-equiv="Content-Type" value="text/html;charset=utf-8">
 
XHTML / XML
 
<?xml version="1.0" encoding="utf-8"?>
 
Workaround: HTTP Content-Type header with encoding specified:
 
Content-Type: text/html;charset=utf-8
Content-Type: application/xhtml+xml;charset=utf-8
 
 
=== Language ===
 
HTML
 
<html lang="en">
 
XML / XHTML
 
<html xml:lang="en">
 
Workaround: HTTP Content-Language header:
 
Content-Language: en
 
[http://www.whatwg.org/specs/web-apps/current-work/#lang HTML 5 Spec]
[http://www.w3.org/TR/html4/struct/dirlang.html#h-8.1.2 HTML 4 Spec]
 
Note that there is no conforming workaround to switch language for different parts of a document. There is a method which will work however: if you use HTML's lang attribute, instead of the conformant xml:lang, browser will correctly deduce the language of the element. But this will make the document non-conforming when served with an XML media type and interpreted as XHTML.

Latest revision as of 14:26, 9 July 2013

Redirect to: