- From: poot <cvsmail@w3.org>
- Date: Fri, 14 Aug 2009 13:08:53 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Encourage lowercase DOCTYPE names subtly. (whatwg r3611) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2801&r2=1.2802&f=h http://html5.org/tools/web-apps-tracker?from=3610&to=3611 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2801 retrieving revision 1.2802 diff -u -d -r1.2801 -r1.2802 --- Overview.html 14 Aug 2009 04:04:21 -0000 1.2801 +++ Overview.html 14 Aug 2009 04:08:30 -0000 1.2802 @@ -1384,7 +1384,7 @@ <a href="#x-this" title="x-this">this</a> or like <i title="x-this"><a href="#x-this">this</a></i>.<p>The defining instance of an element, attribute, or API is marked up like <dfn id="x-that" title="x-that"><code>this</code></dfn>. References to that element, attribute, or API are marked up like <code title="x-that"><a href="#x-that">this</a></code>.<p>Other code fragments are marked up <code title="">like - this</code>.<p>Variables are marked up like <var title="">this</var>.<p class="impl">This is an implementation requirement.<h3 id="a-quick-introduction-to-html"><span class="secno">1.9 </span>A quick introduction to HTML</h3><p><i>This section is non-normative.</i><p>A basic HTML document looks like this:<pre><!DOCTYPE HTML> + this</code>.<p>Variables are marked up like <var title="">this</var>.<p class="impl">This is an implementation requirement.<h3 id="a-quick-introduction-to-html"><span class="secno">1.9 </span>A quick introduction to HTML</h3><p><i>This section is non-normative.</i><p>A basic HTML document looks like this:<pre><!DOCTYPE html> <html> <head> <title>Sample page</title> @@ -1455,7 +1455,7 @@ or through a speech synthesizer, or on a braille display. To influence exactly how such rendering takes place, authors can use a styling language such as CSS.<p>In the following example, the page has been made yellow-on-blue - using CSS.<pre><!DOCTYPE HTML> + using CSS.<pre><!DOCTYPE html> <html> <head> <title>Sample styled page</title> @@ -6622,7 +6622,7 @@ <p>For example, the following document is non-conforming, despite being syntactically correct:</p> - <pre class="bad"><!DOCTYPE html> + <pre class="bad"><!DOCTYPE HTML> <html lang="en-GB"> <head> <title> Demonstration </title> </head> <body> @@ -6642,7 +6642,7 @@ data (and the <code><a href="#the-cite-element">cite</a></code> element mis-used). A corrected version of this document might be:</p> - <pre><!DOCTYPE html> + <pre><!DOCTYPE HTML> <html lang="en-GB"> <head> <title> Demonstration </title> </head> <body>
Received on Friday, 14 August 2009 04:09:28 UTC