html5/canvas-api canvas-2d-api.html,1.5,1.6

Update of /sources/public/html5/canvas-api
In directory hutz:/tmp/cvs-serv28499

Modified Files:
	canvas-2d-api.html 
Log Message:
Added block pointing to the current draft of the Canvas 2D API.

Index: canvas-2d-api.html
===================================================================
RCS file: /sources/public/html5/canvas-api/canvas-2d-api.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- canvas-2d-api.html	29 Oct 2009 00:17:00 -0000	1.5
+++ canvas-2d-api.html	11 Nov 2010 19:49:14 -0000	1.6
@@ -10,6 +10,48 @@
 	.style1 {
 		background-color: #EEEEEE;
 	}
+	
+	   fieldset { margin: 1em; padding: 0.5em 1em; }
+   fieldset > legend + * { margin-top: 0; }
+   fieldset > :last-child { margin-bottom: 0; }
+   fieldset p { margin: 0.5em 0; }
+
+   .stability {
+     position: fixed;
+     bottom: 0;
+     left: 0; right: 0;
+     margin: 0 auto 0 auto;
+     width: 50%;
+     background: maroon; color: yellow;
+     -webkit-border-radius: 1em 1em 0 0;
+     -moz-border-radius: 1em 1em 0 0;
+     border-radius: 1em 1em 0 0;
+     -moz-box-shadow: 0 0 1em #500;
+     -webkit-box-shadow: 0 0 1em #500;
+     box-shadow: 0 0 1em red;
+     padding: 0.5em 1em;
+     text-align: center;
+   }
+   .stability strong {
+     display: block;
+   }
+   .stability input {
+     appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black;
+     position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center;
+   }
+   .stability input:hover {
+     color: white;
+     text-shadow: 0 0 2px black;
+   }
+   .stability input:active {
+     padding: 0.3em 0.45em 0.2em 0.55em;
+   }
+   .stability :link, .stability :visited,
+   .stability :link:hover, .stability :visited:hover {
+     background: transparent;
+     color: white;
+   }
+
 	</style>
   </head>
   <body>
@@ -69,7 +111,14 @@
 made obsolete by other documents at any time. It is inappropriate to cite this document as other than work in progress. </p>
 <!-- required boilerplate text related to patent policy requirements -->
     <p> This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February 2004 W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="@@URI to IPP status or other page@@">public list of any patent disclosures</a> 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 <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section 6 of the W3C Patent Policy</a>. </p>
-
+	<p class="all-pages stability" id="wip">
+		<strong>This version of the specification has been superceded!</strong> 
+		For the latest published version of the HTML Canvas 2D Context, please see <a href="http://dev.w3.org/html5/2dcontext/">HTML Canvas 2D Context</a>.
+	  <input onclick="closeWarning(this.parentNode)" type="button" value="&#9587;&#8413;"></p><script class="all-pages">
+	   function closeWarning(element) {
+	     element.parentNode.removeChild(element);
+	   }
+	  </script>
 <!-- TOC -->
     <div class="section">
       <h2 id="contents">Table of Contents</h2>

Received on Thursday, 11 November 2010 19:49:17 UTC