- From: poot <cvsmail@w3.org>
- Date: Mon, 26 Jan 2009 23:30:24 +0900 (JST)
- To: public-html-diffs@w3.org
quoted attribute day; use consistent markup
1.4 Impact on Web Architecture
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#webarch
2 Syntax
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#syntax
3.1 New Elements
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#new-elements
2.2 The DOCTYPE
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#doctype
1.3 Development Model
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#development-model
2.1 Character Encoding
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.1.58.html#character-encoding
http://people.w3.org/mike/diffs/html5/html4-differences/Overview.diff.html
http://dev.w3.org/cvsweb/html5/html4-differences/Overview.html?r1=1.57&r2=1.58&f=h
===================================================================
RCS file: /sources/public/html5/html4-differences/Overview.html,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- Overview.html 26 Jan 2009 14:05:55 -0000 1.57
+++ Overview.html 26 Jan 2009 14:29:51 -0000 1.58
@@ -354,7 +354,7 @@
the <code>text/html</code> media type. Here is an example document that
conforms to the HTML syntax:
- <pre><!doctype html>
+ <pre><code><!doctype html>
<html>
<head>
<meta charset="UTF-8">
@@ -363,7 +363,7 @@
<body>
<p>Example paragraph</p>
</body>
-</html></pre>
+</html></code></pre>
<p>The other syntax that can be used for HTML 5 is XML. This syntax is
compatible with XHTML1 documents and implementations. Documents using this
@@ -376,7 +376,7 @@
HTML 5. Note that XML documents must have an XML MIME type such as
<code>application/xhtml+xml</code> or <code>application/xml</code>.
- <pre><?xml version="1.0" encoding="UTF-8"?>
+ <pre><code><?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Example document</title>
@@ -384,7 +384,7 @@
<body>
<p>Example paragraph</p>
</body>
-</html></pre>
+</html></code></pre>
<h3 id=character-encoding><span class=secno>2.1 </span>Character Encoding</h3>
@@ -498,7 +498,7 @@
some embedded content, such as a graphic or video:</p>
<pre><code><figure>
- <video src=ogg>…</video>
+ <video src="ogg"></video>
<legend>Example</legend>
</figure></code></pre>
</ul>
@@ -549,8 +549,8 @@
<p><code>datalist</code> together with the a new <code>list</code>
attribute for <code>input</code> is used to make comboboxes:</p>
- <pre><code><input list=browsers>
-<datalist id=browsers>
+ <pre><code><input list="browsers">
+<datalist id="browsers">
<option value="Safari">
<option value="Internet Explorer">
<option value="Opera">
Index: Overview.src.html
===================================================================
RCS file: /sources/public/html5/html4-differences/Overview.src.html,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- Overview.src.html 26 Jan 2009 14:05:55 -0000 1.36
+++ Overview.src.html 26 Jan 2009 14:29:51 -0000 1.37
@@ -277,7 +277,7 @@
have the <code>text/html</code> media type. Here is an example document
that conforms to the HTML syntax:</p>
- <pre><!doctype html>
+ <pre><code><!doctype html>
<html>
<head>
<meta charset="UTF-8">
@@ -286,7 +286,7 @@
<body>
<p>Example paragraph</p>
</body>
-</html></pre>
+</html></code></pre>
<p>The other syntax that can be used for HTML 5 is XML. This syntax
is compatible with XHTML1 documents and implementations. Documents using
@@ -299,7 +299,7 @@
HTML 5. Note that XML documents must have an XML MIME type such as
<code>application/xhtml+xml</code> or <code>application/xml</code>.</p>
- <pre><?xml version="1.0" encoding="UTF-8"?>
+ <pre><code><?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Example document</title>
@@ -307,7 +307,7 @@
<body>
<p>Example paragraph</p>
</body>
-</html></pre>
+</html></code></pre>
<h3 id="character-encoding">Character Encoding</h3>
@@ -425,7 +425,7 @@
with some embedded content, such as a graphic or video:</p>
<pre><code><figure>
- <video src=ogg>…</video>
+ <video src="ogg"></video>
<legend>Example</legend>
</figure></code></pre>
</li>
@@ -469,8 +469,8 @@
<p><code>datalist</code> together with the a new <code>list</code>
attribute for <code>input</code> is used to make comboboxes:</p>
- <pre><code><input list=browsers>
-<datalist id=browsers>
+ <pre><code><input list="browsers">
+<datalist id="browsers">
<option value="Safari">
<option value="Internet Explorer">
<option value="Opera">
Received on Monday, 26 January 2009 14:31:01 UTC