- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 22 Mar 2011 17:46:36 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-lists
In directory hutz:/tmp/cvs-serv30402
Modified Files:
Overview.src.html
Log Message:
Removed last of the CDATA sections, reverting them back to just escaping < to <
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- Overview.src.html 22 Mar 2011 17:24:17 -0000 1.35
+++ Overview.src.html 22 Mar 2011 17:46:34 -0000 1.36
@@ -104,25 +104,25 @@
<p>For instance, the following example illustrates how markers may be used to add parentheses around
each numbered list item. This HTML application and style sheet:</p>
- <pre><![CDATA[
-<!doctype html>
-<html>
- <head>
- <title>Creating a list with markers</title>
- <style>
+ <pre>
+<!doctype html>
+<html>
+ <head>
+ <title>Creating a list with markers</title>
+ <style>
li::marker { content: "(" counter(list-item, lower-roman) ")"; }
li { display: list-item; }
- </style>
- </head>
- <body>
- <ol>
- <li>This is the first item.</li>
- <li>This is the second item.</li>
- <li>This is the third item.</li>
- </ol>
- </body>
-</html>
-]]></pre>
+ </style>
+ </head>
+ <body>
+ <ol>
+ <li>This is the first item.</li>
+ <li>This is the second item.</li>
+ <li>This is the third item.</li>
+ </ol>
+ </body>
+</html>
+ </pre>
<p>should produce something like this: </p>
@@ -1099,11 +1099,11 @@
<pre>
li { display: list-item; list-style-type: decimal /* initial value */; }
li::marker { content: normal /* initial value */; }
-</pre>
+ </pre>
<p>And the following document fragment:</p>
- <pre><![CDATA[
-<li>List Item</li>
-]]></pre>
+ <pre>
+<li>List Item</li>
+ </pre>
<p>The computed value of the 'content' property on the ''::marker''
pseudo-element of the list item element is:</p>
<pre>counter(list-item, decimal) "."</pre>
Received on Tuesday, 22 March 2011 17:46:37 UTC