- From: Anne van Kesteren via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 26 Jan 2009 14:29:53 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/html4-differences
In directory hutz:/tmp/cvs-serv25870
Modified Files:
	Overview.html Overview.src.html 
Log Message:
quoted attribute day; use consistent markup
Index: Overview.html
===================================================================
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:30:01 UTC