CR-css-mobile-20081210
39.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang=en>
<head><meta content="text/html" http-equiv=Content-Type>
<title>CSS Mobile Profile 2.0</title>
<style type="text/css">
table.features th {
background: #00589f;
color: #fff;
text-align: left;
padding: 0.2em 0.2em 0.2em 0.5em;
}
table.features td {
vertical-align: top;
border: 1px solid #ccc;
padding: 0.3em 0.3em 0.3em 0.7em;
}
tr.optional { background: aqua; }
em.rfc2119 {
text-transform: lowercase;
font-variant: small-caps;
font-style: normal
}
</style>
<link href=default.css rel=stylesheet type="text/css">
<link href="http://www.w3.org/StyleSheets/TR/W3C-CR.css" rel=stylesheet
type="text/css">
<body>
<div class=head> <!--begin-logo-->
<p><a href="http://www.w3.org/"><img alt=W3C height=48
src="http://www.w3.org/Icons/w3c_home" width=72></a> <!--end-logo-->
<h1>CSS Mobile Profile 2.0</h1>
<h2 class="no-num no-toc" id=w3c-candidate>W3C Candidate Recommendation 10
December 2008</h2>
<dl>
<dt>This version:
<dd><a
href="http://www.w3.org/TR/2008/CR-css-mobile-20081210">http://www.w3.org/TR/2008/CR-css-mobile-20081210</a>
<dt>Latest version:
<dd><a
href="http://www.w3.org/TR/css-mobile">http://www.w3.org/TR/css-mobile</a>
<dt>Previous version:
<dd><a
href="http://www.w3.org/TR/2008/CR-css-mobile-20080801">http://www.w3.org/TR/2008/CR-css-mobile-20080801</a>
<dt>Editor:
<dd class=vcard>Svante Schubert, Sun Microsystems Inc. <<span
class=email>Svante Schubert @sun.com</span>>
<dt>Previous Editor:
<dd class=vcard>Robin Berjon, Expway <<span
class=email>robin.berjon @expway.fr</span>> (first draft)
</dl>
<!--begin-copyright-->
<p class=copyright><a
href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
rel=license>Copyright</a> © 2008 <a
href="http://www.w3.org/"><acronym title="World Wide Web
Consortium">W3C</acronym></a><sup>®</sup> (<a
href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute
of Technology">MIT</acronym></a>, <a
href="http://www.ercim.org/"><acronym title="European Research Consortium
for Informatics and Mathematics">ERCIM</acronym></a>, <a
href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a
href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
<a
href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>
and <a
href="http://www.w3.org/Consortium/Legal/copyright-documents">document
use</a> rules apply.</p>
<!--end-copyright-->
<hr title="Separator for header">
</div>
<h2 class="no-num no-toc" id=abstract>Abstract</h2>
<p>This specification defines in general a subset of <acronym
title="Cascading Style Sheets">CSS</acronym> 2.1 <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> that is to be considered a
baseline for interoperability between implementations of <acronym
title="Cascading Style Sheets">CSS</acronym> on constrained devices (e.g.
mobile phones). Its intent is <em>not</em> to produce a profile of
<acronym title="Cascading Style Sheets">CSS</acronym> incompatible with
the complete specification, but rather to ensure that implementations that
due to platform limitations cannot support the entire specification
implement a common subset that is interoperable not only amongst
constrained implementations but also with complete ones. Additionally,
this specification aligns itself as much as possible with the <acronym
title="Open Mobile Alliance">OMA</acronym> Wireless <acronym
title="Cascading Style Sheets">CSS</acronym> 1.1 <a href="#WCSS11"
rel=biblioentry>[WCSS11]<!--{{WCSS11}}--></a> specification. At the same
time, <acronym title="Open Mobile Alliance">OMA</acronym> is doing
alignment work in <acronym title="Open Mobile Alliance">OMA</acronym>
Wireless <acronym title="Cascading Style Sheets">CSS</acronym> 1.2 <a
href="#WCSS12" rel=biblioentry>[WCSS12]<!--{{WCSS12}}--></a>. It is aimed
at aligning the mandatory compliance items between <acronym
title="Cascading Style Sheets">CSS</acronym> Mobile Profile 2.0 and
<acronym title="Open Mobile Alliance">OMA</acronym> Wireless <acronym
title="Cascading Style Sheets">CSS</acronym> 1.2 <a href="#WCSS12"
rel=biblioentry>[WCSS12]<!--{{WCSS12}}--></a>.
<h2 class="no-num no-toc" id=sotd>Status of this document</h2>
<!--begin-status-->
<p><em>This section describes the status of this document at the time of
its publication. Other documents may supersede this document. A list of
current W3C publications and the latest revision of this technical report
can be found in the <a href="http://www.w3.org/TR/">W3C technical reports
index at http://www.w3.org/TR/.</a></em>
<p>This document was produced by the <a href="/Style/CSS/members">CSS
Working Group</a> as a <a href="/TR/#CR">Candidate Recommendation.</a>
<p>A Candidate Recommendation is a document that has been widely reviewed
and ready for implementation. W3C encourages everybody to implement this
specification and return comments to the (<a
href="http://lists.w3.org/Archives/Public/www-style/">archived</a>) public
mailing list <a href="mailto:www-style@w3.org">www-style@w3.org</a> (see
<a href="http://www.w3.org/Mail/Request">instructions</a>). When sending
e-mail, please put the text “css-mobile” in the subject,
preferably like this: “[<!---->css-mobile<!---->]
<em>…summary of comment…</em>”
<p>Publication as a Candidate Recommendation does not imply endorsement by
the W3C Membership. This is a draft document and may be updated, replaced
or obsoleted by other documents at any time. It is inappropriate to cite
this document as other than work in progress.
<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
href="/2004/01/pp-impl/32061/status" rel=disclosure>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="/Consortium/Patent-Policy-20040205/#def-essential">Essential
Claim(s)</a> must disclose the information in accordance with <a
href="/Consortium/Patent-Policy-20040205/#sec-Disclosure">section 6 of the
W3C Patent Policy</a>.</p>
<!--end-status-->
<p>In order to exit the Candidate Recommendation phase, the following
criteria must be satisfied:
<ol>
<li>At least two implementations of all the required features of this
specification.
<li>A minimum of six months of the CR period must be elapsed to ensure
that enough time is given for providing implementation feedback.
</ol>
<p>The marquee-* and overflow-style properties are at risk.
<p>A test suite for this specification will be created during the CR
period. Detailed implementation requirements and the invitation for
participation in the implementation report will be provided in the <a
href="/Style/CSS/Test/Mobile/2.0/css-mobile-implementations.html">preliminary
implementation report</a>. Implementers are encouraged to provide feedback
by 1 February 2009.
<p>This document is the same as the last working draft, except for
editorial changes.
<h2 class="no-num no-toc" id=contents>Table of Contents</h2>
<!--begin-toc-->
<ul class=toc>
<li><a href="#introduction"><span class=secno>1. </span>Introduction</a>
<li><a href="#conformance"><span class=secno>2. </span>Conformance</a>
<li><a href="#selectors"><span class=secno>3. </span>Selectors</a>
<li><a href="#at-rules"><span class=secno>4. </span>At-rules</a>
<li><a href="#properties"><span class=secno>5. </span>Properties</a>
<li><a href="#syntax"><span class=secno>6. </span>Syntax</a>
<li class=no-num><a href="#acknow">Acknowledgments</a>
<li class=no-num><a href="#references">References</a>
<ul class=toc>
<li class=no-num><a href="#normative-references">Normative
references</a>
<li class=no-num><a href="#informative-references">Informative
references</a>
</ul>
</ul>
<!--end-toc-->
<h2 id=introduction><span class=secno>1. </span>Introduction</h2>
<p>This document specifies a profile of <acronym title="Cascading Style
Sheets">CSS</acronym> that is in general based on <acronym
title="Cascading Style Sheets">CSS</acronym> 2.1 <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>, but requires as well new
features from <acronym title="Cascading Style Sheets">CSS</acronym> 3. In
addition the document defines an <em class=rfc2119 title="Keyword in RFC
2119 context">OPTIONAL</em> feature set, that is suggested to be
implemented by more advanced user agents.
<h2 id=conformance><span class=secno>2. </span>Conformance</h2>
<p> The key words of descriptive assertions and RFC 2119 terminology. The
key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to
be interpreted as described in RFC 2119 <a href="#RFC2119"
rel=biblioentry>[RFC2119]<!--{{!RFC2119}}--></a>.
<p> Since the goal of this specification is to define a baseline
interoperability level, user agents <em class=rfc2119 title="Keyword in
RFC 2119 context">MAY</em> accept <acronym title="Cascading Style
Sheets">CSS</acronym> documents conforming to <acronym title="Cascading
Style Sheets">CSS</acronym> 2.1 or subsequent revisions of the <acronym
title="Cascading Style Sheets">CSS</acronym> family of Recommendations.
<p> In order to conform to this specification, user agents, authoring
tools, and content <em class=rfc2119 title="Keyword in RFC 2119
context">MUST</em> conform to the <a
href="/TR/CSS21/conform.html#conformance">Conformance</a> and <a
href="/TR/CSS21/conform.html#errors">Error conditions</a> section of the
<acronym title="Cascading Style Sheets">CSS</acronym> 2.1 specification <a
href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>, with the
following modifications.
<ol>
<li> Only features marked as supported in this specification are <em
class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>. Aside of
the <em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED </em>
feature set, an additional <em class=rfc2119 title="Keyword in RFC 2119
context">OPTIONAL</em> feature set is given, that may be implemented by
more advanced user agents. This feature set is <em class=rfc2119
title="Keyword in RFC 2119 context">REQUIRED</em> by the <acronym
title="Compound Document Formats">CDF</acronym> as in <a
href="#WICDMobile10"
rel=biblioentry>[WICDMobile10]<!--{{!WICDMobile10}}--></a>. Support for a
larger set of <acronym title="Cascading Style Sheets">CSS</acronym> 2.1
is <em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>.
<li> The requirement concerning which <a
href="/TR/CSS21/media.html"><acronym title="Cascading Style
Sheets">CSS</acronym> 2.1 media types</a> are supported is tightened so
that both the <code>handheld</code> and <code>all</code> media types <em
class=rfc2119 title="Keyword in RFC 2119 context">MUST</em> be accepted
and processed. Other media types <em class=rfc2119 title="Keyword in RFC
2119 context">MAY</em> be accepted and processed as well.
<li> The requirements that user agents <em class=rfc2119 title="Keyword in
RFC 2119 context">MUST</em> make it possible to select an alternate style
sheet amongst those linked from the document, as well as provide for a
way to turn off author style sheets, are relaxed to be <em class=rfc2119
title="Keyword in RFC 2119 context">RECOMMENDED</em> behavior, but not
<em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>.
</ol>
<h2 id=selectors><span class=secno>3. </span>Selectors</h2>
<p> Selectors are defined in the <a
href="/TR/CSS21/selector.html">Selectors</a> chapter of the <acronym
title="Cascading Style Sheets">CSS</acronym> 2.1 specification <a
href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>. The following
table identifies which selector constructs <em class=rfc2119
title="Keyword in RFC 2119 context">MUST</em> be supported amongst those
defined by <acronym title="Cascading Style Sheets">CSS</acronym> 2.1.
<table class=features summary="Selectors of CSS mobile profile 2.0">
<tbody>
<tr>
<th>Selector type
<th>Example
<th>Meaning
<th>Conformance
<tr>
<td><a href="/TR/CSS21/selector.html#universal-selector">Universal
selector</a>
<td><code>*</code>
<td>Matches any element.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#type-selectors">Type selectors</a>
<td><code>E</code>
<td>Matches any E element.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#descendant-selectors">Descendant
selectors</a>
<td><code>E F</code>
<td>Matches any F element that is a descendant of an E element.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#child-selectors">Child
selectors</a>
<td><code>E > F</code>
<td>Matches any F element that is a child of an element E.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#link-pseudo-classes">The link
pseudo-classes</a>
<td><code>E:link</code>
<td>Matches element E if E is the source anchor of a hyperlink,
unvisited by a user.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#link-pseudo-classes">The link
pseudo-classes</a>
<td><code>E:visited</code>
<td>Matches element E if E is the source anchor of a hyperlink, visited
by a user.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#dynamic-pseudo-classes">The dynamic
pseudo-classes</a>
<td><code>E:active</code>
<td>Matches element E if E is being activated by the user.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#dynamic-pseudo-classes">The dynamic
pseudo-classes</a>
<td><code>E:focus</code>
<td>Matches element E if E has the focus (accepts keyboard events or
other forms of text input).
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#class-html">Class selectors</a>
<td><code>.warning</code>
<td> <em>Language specific</em>. (In (X)HTML, matches elements whose
<code>class</code> attribute contains a token with the same name.)
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#id-selectors">ID selectors</a>
<td><code>#myid</code>
<td>Matches any element with an ID equal to "myid".
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/selector.html#grouping">Grouping</a>
<td><code>E1, E2, E3 { ... }</code>
<td>Matches a group of elements, which share the same style
declarations.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
</table>
<h2 id=at-rules><span class=secno>4. </span>At-rules</h2>
<p> At-rules are defined in the <a
href="/TR/CSS21/syndata.html#at-rules">at-rules</a> section of the
<acronym title="Cascading Style Sheets">CSS</acronym> 2.1 specification <a
href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>. The following
table identifies which at-rule constructs <em class=rfc2119 title="Keyword
in RFC 2119 context">MUST</em> be supported amongst those defined by
<acronym title="Cascading Style Sheets">CSS</acronym> by setting the
at-rule as <em class=rfc2119 title="Keyword in RFC 2119
context">REQUIRED</em> in the table's last column. Only at-rules that are
part of the suggested feature set for advanced user agents are listed here
as <em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>.
<table class=features summary="At-rules of CSS mobile profile 2.0">
<tbody>
<tr>
<th>Rule
<th>Definition
<th>Conformance
<tr>
<td><a href="/TR/CSS21/syndata.html#charset">@charset</a>
<td>Defines character encoding for the style sheet.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/cascade.html#at-import">@import</a>
<td>Imports an external style sheet.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td><a href="/TR/CSS21/media.html#at-media-rule">@media</a>
<td>Groups a set of style rules to apply only to one or more particular
media. <br>
Only the <code>handheld</code> and <code>all</code> media types <em
class=rfc2119 title="Keyword in RFC 2119 context">MUST</em> be accepted
and processed. Other media types <em class=rfc2119 title="Keyword in
RFC 2119 context">MAY</em> be accepted and processed as well.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr class=optional>
<td><a href="/TR/css3-namespace/#declaration">@namespace</a>
<td>For declaring the default namespace and binding namespaces to
namespace prefixes.
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
</table>
<h2 id=properties><span class=secno>5. </span>Properties</h2>
<p> Properties are defined in several chapters of the <acronym
title="Cascading Style Sheets">CSS</acronym> 2.1 specification <a
href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> and in case of
marquee properties in the <acronym title="Cascading Style
Sheets">CSS</acronym> box model <a href="#CSS3BOX"
rel=biblioentry>[CSS3BOX]<!--{{!CSS3BOX}}--></a>. The following table
identifies which properties <em class=rfc2119 title="Keyword in RFC 2119
context">MUST</em> be supported amongst those defined by <acronym
title="Cascading Style Sheets">CSS</acronym> by setting the property as
<em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em> in the
table's last column. Only properties that are part of the suggested
feature set for advanced user agents are listed here as <em class=rfc2119
title="Keyword in RFC 2119 context">OPTIONAL</em>. The property syntax is
provided (expressed using the same <a
href="/TR/CSS21/about.html#value-defs">value specifications</a> as
<acronym title="Cascading Style Sheets">CSS</acronym> 2.1) when it is
subsetted from the original. Limitations that apply to a property apply
equally to its shorthand alternative.
<table class=features summary="Properties of CSS mobile profile 2.0">
<tbody>
<tr>
<th>Property
<th>Syntax (if different from <acronym title="Cascading Style
Sheets">CSS</acronym>)
<th>Conformance
<tr>
<td> <a
href="/TR/CSS21/colors.html#propdef-background-color">background-color</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/colors.html#propdef-background-image">background-image</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/colors.html#propdef-background-repeat">background-repeat</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/colors.html#propdef-background-attachment">background-attachment</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/colors.html#propdef-background-position">background-position</a>
<td><code>top | center | bottom | left | right | inherit</code>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/colors.html#propdef-background">background</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/box.html#propdef-border-top-width">border-top-width</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-right-width">border-right-width</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-bottom-width">border-bottom-width</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-left-width">border-left-width</a><br>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/box.html#propdef-border-width">border-width</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/box.html#propdef-border-top-color">border-top-color</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-right-color">border-right-color</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-bottom-color">border-bottom-color</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-left-color">border-left-color</a><br>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/box.html#propdef-border-color">border-color</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/box.html#propdef-border-top-style">border-top-style</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-right-style">border-right-style</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-bottom-style">border-bottom-style</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-left-style">border-left-style</a><br>
<td><code>none | solid | dashed | dotted | inherit</code>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/box.html#propdef-border-style">border-style</a>
<td><code>none | solid | dashed | dotted | inherit</code>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/box.html#propdef-border-top">border-top</a><br>
<a href="/TR/CSS21/box.html#propdef-border-right">border-right</a><br>
<a
href="/TR/CSS21/box.html#propdef-border-bottom">border-bottom</a><br>
<a href="/TR/CSS21/box.html#propdef-border-left">border-left</a><br>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/box.html#propdef-border">border</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr class=optional>
<td> <a href="/TR/CSS21/visuren.html#position-props">bottom</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
<tr>
<td> <a href="/TR/CSS21/visuren.html#propdef-clear">clear</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/colors.html#propdef-color">color</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/visuren.html#propdef-display">display</a>
<td><code>inline | block | list-item | none | inherit</code>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/visuren.html#propdef-float">float</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/fonts.html#propdef-font-family">font-family</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/fonts.html#propdef-font-style">font-style</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/fonts.html#propdef-font-variant">font-variant</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/fonts.html#propdef-font-weight">font-weight</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/fonts.html#propdef-font-size">font-size</a>
<td><code><absolute-size> | <relative-size> | inherit</code>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/fonts.html#propdef-font">font</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/visudet.html#propdef-height">height</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr class=optional>
<td> <a href="/TR/CSS21/visuren.html#position-props">left</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
<tr>
<td> <a
href="/TR/CSS21/generate.html#propdef-list-style-type">list-style-type</a>
<td> <code>disc | circle | square | decimal | lower-roman | upper-roman
| lower-alpha | upper-alpha | none | inherit</code>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/generate.html#propdef-list-style-image">list-style-image</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/generate.html#propdef-list-style">list-style</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/box.html#propdef-margin-top">margin-top</a><br>
<a href="/TR/CSS21/box.html#propdef-margin-right">margin-right</a><br>
<a
href="/TR/CSS21/box.html#propdef-margin-bottom">margin-bottom</a><br>
<a href="/TR/CSS21/box.html#propdef-margin-left">margin-left</a><br>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/box.html#propdef-margin">margin</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> marquee-direction <a href="#CSS3BOX"
rel=biblioentry>[CSS3BOX]<!--{{!CSS3BOX}}--></a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> marquee-loop <a href="#CSS3BOX"
rel=biblioentry>[CSS3BOX]<!--{{!CSS3BOX}}--></a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td>marquee-speed <a href="#CSS3BOX"
rel=biblioentry>[CSS3BOX]<!--{{!CSS3BOX}}--></a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td>marquee-style <a href="#CSS3BOX"
rel=biblioentry>[CSS3BOX]<!--{{!CSS3BOX}}--></a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/visudet.html#propdef-max-height">max-height</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/visudet.html#propdef-max-width">max-width</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/visudet.html#propdef-min-height">min-height</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/visudet.html#propdef-min-width">min-width</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr class=optional>
<td> <a href="/TR/CSS21/ui.html#propdef-outline-color">outline-color</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
<tr class=optional>
<td> <a href="/TR/CSS21/ui.html#propdef-outline-style">outline-style</a>
<td><code>none | solid | dashed | dotted | inherit</code>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
<tr class=optional>
<td> <a href="/TR/CSS21/ui.html#propdef-outline-width">outline-width</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
<tr class=optional>
<td> <a href="/TR/CSS21/ui.html#dynamic-outlines">outline</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
<tr>
<td> overflow <a href="#CSS3BOX"
rel=biblioentry>[CSS3BOX]<!--{{!CSS3BOX}}--></a>
<td>auto
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> overflow-style <a href="#CSS3BOX"
rel=biblioentry>[CSS3BOX]<!--{{!CSS3BOX}}--></a>
<td>marquee
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/box.html#propdef-padding-top">padding-top</a><br>
<a
href="/TR/CSS21/box.html#propdef-padding-right">padding-right</a><br>
<a
href="/TR/CSS21/box.html#propdef-padding-bottom">padding-bottom</a><br>
<a href="/TR/CSS21/box.html#propdef-padding-left">padding-left</a><br>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/box.html#propdef-padding">padding</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr class=optional>
<td> <a href="/TR/CSS21/visuren.html#choose-position">position</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
<tr class=optional>
<td> <a href="/TR/CSS21/visuren.html#position-props">right</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
<tr>
<td> <a href="/TR/CSS21/text.html#propdef-text-indent">text-indent</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/text.html#propdef-text-align">text-align</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/text.html#propdef-text-decoration">text-decoration</a>
<td><code>none | blink |underline | inherit</code>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a
href="/TR/CSS21/text.html#propdef-text-transform">text-transform</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr class=optional>
<td> <a href="/TR/CSS21/visuren.html#position-props">top</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
<tr>
<td> <a
href="/TR/CSS21/visudet.html#propdef-vertical-align">vertical-align</a>
<td><code>top | middle | bottom | baseline | inherit</code>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/visufx.html#propdef-visibility">visibility</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/text.html#propdef-white-space">white-space</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr>
<td> <a href="/TR/CSS21/visudet.html#propdef-width">width</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">REQUIRED</em>
<tr class=optional>
<td> <a href="/TR/CSS21/visuren.html#z-index">z-index</a>
<td>
<td><em class=rfc2119 title="Keyword in RFC 2119 context">OPTIONAL</em>
</table>
<h3 class="no-num no-toc" id=informative-note>Informative Notes</h3>
<ul>
<li id=css-best-practise> Content Providers will reach a larger and more
satisfied audience by following Mobile Web Best Practices <a
href="#MOBILE-BP" rel=biblioentry>[MOBILE-BP]<!--{{MOBILE-BP}}--></a> and
<acronym title="Cascading Style Sheets">CSS</acronym> Techniques for Web
Content Accessibility Guidelines <a href="#WCAG10-CSS-TECHS"
rel=biblioentry>[WCAG10-CSS-TECHS]<!--{{WCAG10-CSS-TECHS}}--></a>.
<li id=wcss-extensions> The <acronym title="Open Mobile
Alliance">OMA</acronym> Wireless <acronym title="Cascading Style
Sheets">CSS</acronym> 1.1 <a href="#WCSS11"
rel=biblioentry>[WCSS11]<!--{{WCSS11}}--></a> introduced three extensions
<code>‘<code class=property>Marquee</code>’</code>,
<code>‘<code class=css>Access Keys</code>’</code> and
<code>‘<code class=property>Input</code>’</code>. Those
extensions are deprecated in <acronym title="Open Mobile
Alliance">OMA</acronym> Wireless <acronym title="Cascading Style
Sheets">CSS</acronym> 1.2 <a href="#WCSS12"
rel=biblioentry>[WCSS12]<!--{{WCSS12}}--></a>. The <code>‘<code
class=property>Marquee</code>’</code> functionality has been
redefined by the marquee properties of the <acronym title="Cascading
Style Sheets">CSS</acronym> 3 box model <a href="#CSS3BOX"
rel=biblioentry>[CSS3BOX]<!--{{!CSS3BOX}}--></a>
</ul>
<h2 id=syntax><span class=secno>6. </span>Syntax</h2>
<p> A user agent <em class=rfc2119 title="Keyword in RFC 2119
context">MUST</em> support all value types defined in the <a
href="/TR/CSS21/syndata.html#values">Values</a> section of the <acronym
title="Cascading Style Sheets">CSS</acronym> 2.1 specification <a
href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>, with the
following exceptions:
<ol>
<li>Support for <a href="/TR/CSS21/syndata.html#counter">counter
values</a> is <em class=rfc2119 title="Keyword in RFC 2119
context">OPTIONAL</em>
<li> Support for <a href="/TR/CSS21/ui.html#system-colors">CSS2 System
Colors</a> and <a href="/TR/CSS21/ui.html#system-fonts">User preferences
for fonts</a> is <em class=rfc2119 title="Keyword in RFC 2119
context">OPTIONAL</em>.
</ol>
<h2 class=no-num id=acknow>Acknowledgments</h2>
<p> The editors wish to thank the authors of the previous version of this
document, Ted Wugofski (Openwave), Doug Dominiak (Openwave, formerly
Motorola), Peter Stark (Ericsson), and Tapas Roy (Openwave), as well as
the authors of the <acronym title="Open Mobile Alliance">OMA</acronym>
Wireless <acronym title="Cascading Style Sheets">CSS</acronym>
specifications and the <acronym title="Cascading Style
Sheets">CSS</acronym> 2.1 specification. Furthermore, the editors want to
thank the <acronym title="Compound Document Formats">CDF</acronym>
<acronym title="Working Group">WG</acronym> for their participation on
this specification.
<h2 class=no-num id=references>References</h2>
<h3 class=no-num id=normative-references>Normative references</h3>
<!--begin-normative-->
<!-- Sorted by label -->
<dl class=bibliography>
<dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
<!---->
<dt id=CSS21>[CSS21]
<dd>Bert Bos; et al. <a
href="http://www.w3.org/TR/2007/CR-CSS21-20070719"><cite>Cascading Style
Sheets Level 2 Revision 1 (CSS 2.1) Specification.</cite></a> 19 July
2007. W3C Candidate Recommendation. (Work in progress.) URL: <a
href="http://www.w3.org/TR/2007/CR-CSS21-20070719">http://www.w3.org/TR/2007/CR-CSS21-20070719</a>
</dd>
<!---->
<dt id=CSS3BOX>[CSS3BOX]
<dd>Bert Bos. <a
href="http://www.w3.org/TR/2007/WD-css3-box-20070809"><cite>CSS basic box
model.</cite></a> 9 August 2007. W3C Working Draft. (Work in progress.)
URL: <a
href="http://www.w3.org/TR/2007/WD-css3-box-20070809">http://www.w3.org/TR/2007/WD-css3-box-20070809</a>
</dd>
<!---->
<dt id=RFC2119>[RFC2119]
<dd>S. Bradner. <a href="http://www.ietf.org/rfc/rfc2119.txt"><cite>Key
words for use in RFCs to Indicate Requirement Levels.</cite></a> Internet
RFC 2119. URL: <a
href="http://www.ietf.org/rfc/rfc2119.txt">http://www.ietf.org/rfc/rfc2119.txt</a>
</dd>
<!---->
<dt id=WICDMobile10>[WICDMobile10]
<dd>Timur Mehrvarz; et al. <a
href="http://www.w3.org/TR/2007/CR-WICDMobile-20070718"><cite>WICD Mobile
1.0.</cite></a> 18 July 2007. W3C Candidate Recommendation. (Work in
progress.) URL: <a
href="http://www.w3.org/TR/2007/CR-WICDMobile-20070718">http://www.w3.org/TR/2007/CR-WICDMobile-20070718</a>
</dd>
<!---->
</dl>
<!--end-normative-->
<h3 class=no-num id=informative-references>Informative references</h3>
<!--begin-informative-->
<!-- Sorted by label -->
<dl class=bibliography>
<dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
<!---->
<dt id=MOBILE-BP>[MOBILE-BP]
<dd>Jo Rabin; Charles McCathieNevile. <a
href="http://www.w3.org/TR/2006/PR-mobile-bp-20061102"><cite>Mobile Web
Best Practices 1.0.</cite></a> 2 November 2006. W3C Proposed
Recommendation. (Work in progress.) URL: <a
href="http://www.w3.org/TR/2006/PR-mobile-bp-20061102">http://www.w3.org/TR/2006/PR-mobile-bp-20061102</a>
</dd>
<!---->
<dt id=WCAG10-CSS-TECHS>[WCAG10-CSS-TECHS]
<dd>Wendy Chisholm; Gregg Vanderheiden; Ian Jacobs. <a
href="http://www.w3.org/TR/2000/NOTE-WCAG10-CSS-TECHS-20001106"><cite>CSS
Techniques for Web Content Accessibility Guidelines 1.0.</cite></a> 6
November 2000. W3C Note. URL: <a
href="http://www.w3.org/TR/2000/NOTE-WCAG10-CSS-TECHS-20001106">http://www.w3.org/TR/2000/NOTE-WCAG10-CSS-TECHS-20001106</a>
</dd>
<!---->
<dt id=WCSS11>[WCSS11]
<dd>Open Mobile Alliance. <a
href="http://www.openmobilealliance.org/technical/release_program/docs/Browsing/V2_3-20080331-A/OMA-WAP-WCSS-V1_1-20061020-A.pdf"><cite>Wireless
CSS Specification.</cite></a> October 2006. Approved Version 1.1. URL: <a
href="http://www.openmobilealliance.org/technical/release_program/docs/Browsing/V2_3-20080331-A/OMA-WAP-WCSS-V1_1-20061020-A.pdf">http://www.openmobilealliance.org/technical/release_program/docs/Browsing/V2_3-20080331-A/OMA-WAP-WCSS-V1_1-20061020-A.pdf</a>
</dd>
<!---->
<dt id=WCSS12>[WCSS12]
<dd>Open Mobile Alliance. <a
href="http://www.openmobilealliance.org/ftp/Public_documents/MCE/MAE/Permanent_documents/OMA-TS-WCSS-V1_2-20070921-D.zip"><cite>Wireless
CSS Specification Version 1.2.</cite></a> 21 September 2007. (Work in
progress.) URL: <a
href="http://www.openmobilealliance.org/ftp/Public_documents/MCE/MAE/Permanent_documents/OMA-TS-WCSS-V1_2-20070921-D.zip">http://www.openmobilealliance.org/ftp/Public_documents/MCE/MAE/Permanent_documents/OMA-TS-WCSS-V1_2-20070921-D.zip</a>
</dd>
<!---->
</dl>
<!--end-informative-->
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-declaration:"~/SGML/HTML4.decl"
sgml-default-doctype-name:"html"
sgml-minimize-attributes:t
sgml-nofill-elements:("pre" "style" "br")
sgml-live-element-indicator:t
sgml-omittag:nil
sgml-shorttag:nil
sgml-namecase-general:t
sgml-general-insert-case:lower
sgml-always-quote-attributes:t
sgml-indent-step:nil
sgml-indent-data:t
sgml-parent-document:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->