Skip to content

Commit 794a7e3

Browse files
committed
[css2] markup fixes, quoting -> quotes
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401357
1 parent 6abc095 commit 794a7e3

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

css2/selector.src

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN'>
22
<html lang="en">
3-
<!-- $Id: selector.src,v 2.39 1998-03-22 23:59:17 ijacobs Exp $ -->
3+
<!-- $Id: selector.src,v 2.40 1998-03-23 05:00:47 ijacobs Exp $ -->
44
<head>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<title>Selectors</title>
@@ -149,7 +149,7 @@ href="#simple-selector">simple selector</a>, the '*' may be
149149
omitted. For example:</P>
150150

151151
<ul>
152-
<li><code>*[LANG=fr] </code>and <code>[LANG=fr]</code> are equivalent.
152+
<li><code>*[LANG=fr] </code> and <code>[LANG=fr]</code> are equivalent.
153153
<li><code>*.warning</code> and <code>.warning</code> are equivalent.
154154
<li><code>*#myid</code> and <code>#myid</code> are equivalent.
155155
</ul>
@@ -950,24 +950,24 @@ operator</a>.
950950

951951
<div class="example">
952952
<p>The following rules set the quotation marks for an HTML document
953-
that is either in Frensh or German:</p>
953+
that is either in French or German:</p>
954954

955955
<pre>
956-
HTML:lang(fr) { quoting: '� ' ' �' }
957-
HTML:lang(de) { quoting: '�' '�' '\2039' '\203A' }
958-
:lang(fr) > Q { quoting: '� ' ' �' }
959-
:lang(de) > Q { quoting: '�' '�' '\2039' '\203A' }
956+
HTML:lang(fr) { quotes: '� ' ' �' }
957+
HTML:lang(de) { quotes: '�' '�' '\2039' '\203A' }
958+
:lang(fr) > Q { quotes: '� ' ' �' }
959+
:lang(de) > Q { quotes: '�' '�' '\2039' '\203A' }
960960
</pre>
961961

962962
<!-- old example, HWL
963-
HTML:lang(fr) { quoting: "�" "�" "\2039" "\203A" "\201C" "\201D" }
964-
HTML:lang(de) { quoting: "�" "�" "\203A" "\2039" "\201E" "\201D" }
965-
[LANG|=fr] > * { quoting: "�" "�" "\2039" "\203A" "\201C" "\201D" }
966-
[LANG|=de] > * { quoting: "�" "�" "\203A" "\2039" "\201E" "\201D" }
963+
HTML:lang(fr) { quotes: "�" "�" "\2039" "\203A" "\201C" "\201D" }
964+
HTML:lang(de) { quotes: "�" "�" "\203A" "\2039" "\201E" "\201D" }
965+
[LANG|=fr] > * { quotes: "�" "�" "\2039" "\203A" "\201C" "\201D" }
966+
[LANG|=de] > * { quotes: "�" "�" "\203A" "\2039" "\201E" "\201D" }
967967
-->
968968

969969
<p>The second pair of rules actually set the <span
970-
class="propinst-quoting">'quoting'</span> property on Q elements
970+
class="propinst-quotes">'quotes'</span> property on Q elements
971971
according to the language of its parent. This is done because the
972972
choice of quote marks is typically based on the language of the
973973
element around the quote, not the quote itself: like this piece of

0 commit comments

Comments
 (0)