- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 22 Aug 2008 06:05:54 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv28446
Modified Files:
Overview.html
Log Message:
Oops, forgot to escape the example. (whatwg r2103)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1275
retrieving revision 1.1276
diff -u -d -r1.1275 -r1.1276
--- Overview.html 22 Aug 2008 06:05:05 -0000 1.1275
+++ Overview.html 22 Aug 2008 06:05:51 -0000 1.1276
@@ -24084,19 +24084,19 @@
<p>If we wanted just the coloured areas to be clickable, we could do it as
follows:</p>
- <pre>
-</pre>
-
- <p> Please select a shape: <img alt="Four shapes are available: a red
- hollow box, a green circle, a blue triangle, and a yellow four-pointed
- star." src=shapes.png usemap="#shapes"> <map name=shapes><area
- coords="50,50,100,100" shape=rect><!-- the hole in the red box -->
- <area alt="Red box." coords="25,25,125,125" href=red.html
- shape=rect><area alt="Green circle." coords="200,75,50" href=green.html
- shape=circle><area alt="Blue triangle." coords="325,25,262,125,388,125"
- href=blue.html shape=poly><area alt="Yellow star."
- coords="450,25,435,60,400,75,435,90,450,125,465,90,500,75,465,60"
- href=yellow.html shape=poly></map></p>
+ <pre><p>
+ Please select a shape:
+ <img src="shapes.png" usemap="#shapes"
+ alt="Four shapes are available: a red hollow box, a green circle, a blue triangle, and a yellow four-pointed star.">
+ <map name="shapes">
+ <area shape=rect coords="50,50,100,100"> <!-- the hole in the red box -->
+ <area shape=rect coords="25,25,125,125" href="red.html" alt="Red box.">
+ <area shape=circle coords="200,75,50" href="green.html" alt="Green circle.">
+ <area shape=poly coords="325,25,262,125,388,125" href="blue.html" alt="Blue triangle.">
+ <area shape=poly coords="450,25,435,60,400,75,435,90,450,125,465,90,500,75,465,60"
+ href="yellow.html" alt="Yellow star.">
+ </map>
+</p></pre>
</div>
<h5 id=processing><span class=secno>4.7.14.2. </span>Processing model</h5>
Received on Friday, 22 August 2008 06:06:29 UTC