CSS properties page-break-*
[htmlpurifier.git] / library / HTMLPurifier / CSSDefinition.php
blob8c4c3127bc90a2ac4b70a31f325d724837fbb92a
1 <?php
3 /**
4 * Defines allowed CSS attributes and what their values are.
5 * @see HTMLPurifier_HTMLDefinition
6 */
7 class HTMLPurifier_CSSDefinition extends HTMLPurifier_Definition
10 public $type = 'CSS';
12 /**
13 * Assoc array of attribute name to definition object.
15 public $info = array();
17 /**
18 * Constructs the info array. The meat of this class.
20 protected function doSetup($config) {
22 $this->info['text-align'] = new HTMLPurifier_AttrDef_Enum(
23 array('left', 'right', 'center', 'justify'), false);
25 $border_style =
26 $this->info['border-bottom-style'] =
27 $this->info['border-right-style'] =
28 $this->info['border-left-style'] =
29 $this->info['border-top-style'] = new HTMLPurifier_AttrDef_Enum(
30 array('none', 'hidden', 'dotted', 'dashed', 'solid', 'double',
31 'groove', 'ridge', 'inset', 'outset'), false);
33 $this->info['border-style'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_style);
35 $this->info['clear'] = new HTMLPurifier_AttrDef_Enum(
36 array('none', 'left', 'right', 'both'), false);
37 $this->info['float'] = new HTMLPurifier_AttrDef_Enum(
38 array('none', 'left', 'right'), false);
39 $this->info['font-style'] = new HTMLPurifier_AttrDef_Enum(
40 array('normal', 'italic', 'oblique'), false);
41 $this->info['font-variant'] = new HTMLPurifier_AttrDef_Enum(
42 array('normal', 'small-caps'), false);
44 $uri_or_none = new HTMLPurifier_AttrDef_CSS_Composite(
45 array(
46 new HTMLPurifier_AttrDef_Enum(array('none')),
47 new HTMLPurifier_AttrDef_CSS_URI()
51 $this->info['list-style-position'] = new HTMLPurifier_AttrDef_Enum(
52 array('inside', 'outside'), false);
53 $this->info['list-style-type'] = new HTMLPurifier_AttrDef_Enum(
54 array('disc', 'circle', 'square', 'decimal', 'lower-roman',
55 'upper-roman', 'lower-alpha', 'upper-alpha', 'none'), false);
56 $this->info['list-style-image'] = $uri_or_none;
58 $this->info['list-style'] = new HTMLPurifier_AttrDef_CSS_ListStyle($config);
60 $this->info['text-transform'] = new HTMLPurifier_AttrDef_Enum(
61 array('capitalize', 'uppercase', 'lowercase', 'none'), false);
62 $this->info['color'] = new HTMLPurifier_AttrDef_CSS_Color();
64 $this->info['background-image'] = $uri_or_none;
65 $this->info['background-repeat'] = new HTMLPurifier_AttrDef_Enum(
66 array('repeat', 'repeat-x', 'repeat-y', 'no-repeat')
68 $this->info['background-attachment'] = new HTMLPurifier_AttrDef_Enum(
69 array('scroll', 'fixed')
71 $this->info['background-position'] = new HTMLPurifier_AttrDef_CSS_BackgroundPosition();
73 $border_color =
74 $this->info['border-top-color'] =
75 $this->info['border-bottom-color'] =
76 $this->info['border-left-color'] =
77 $this->info['border-right-color'] =
78 $this->info['background-color'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
79 new HTMLPurifier_AttrDef_Enum(array('transparent')),
80 new HTMLPurifier_AttrDef_CSS_Color()
81 ));
83 $this->info['background'] = new HTMLPurifier_AttrDef_CSS_Background($config);
85 $this->info['border-color'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_color);
87 $border_width =
88 $this->info['border-top-width'] =
89 $this->info['border-bottom-width'] =
90 $this->info['border-left-width'] =
91 $this->info['border-right-width'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
92 new HTMLPurifier_AttrDef_Enum(array('thin', 'medium', 'thick')),
93 new HTMLPurifier_AttrDef_CSS_Length('0') //disallow negative
94 ));
96 $this->info['border-width'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_width);
98 $this->info['letter-spacing'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
99 new HTMLPurifier_AttrDef_Enum(array('normal')),
100 new HTMLPurifier_AttrDef_CSS_Length()
103 $this->info['word-spacing'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
104 new HTMLPurifier_AttrDef_Enum(array('normal')),
105 new HTMLPurifier_AttrDef_CSS_Length()
108 $this->info['font-size'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
109 new HTMLPurifier_AttrDef_Enum(array('xx-small', 'x-small',
110 'small', 'medium', 'large', 'x-large', 'xx-large',
111 'larger', 'smaller')),
112 new HTMLPurifier_AttrDef_CSS_Percentage(),
113 new HTMLPurifier_AttrDef_CSS_Length()
116 $this->info['line-height'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
117 new HTMLPurifier_AttrDef_Enum(array('normal')),
118 new HTMLPurifier_AttrDef_CSS_Number(true), // no negatives
119 new HTMLPurifier_AttrDef_CSS_Length('0'),
120 new HTMLPurifier_AttrDef_CSS_Percentage(true)
123 $margin =
124 $this->info['margin-top'] =
125 $this->info['margin-bottom'] =
126 $this->info['margin-left'] =
127 $this->info['margin-right'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
128 new HTMLPurifier_AttrDef_CSS_Length(),
129 new HTMLPurifier_AttrDef_CSS_Percentage(),
130 new HTMLPurifier_AttrDef_Enum(array('auto'))
133 $this->info['margin'] = new HTMLPurifier_AttrDef_CSS_Multiple($margin);
135 // non-negative
136 $padding =
137 $this->info['padding-top'] =
138 $this->info['padding-bottom'] =
139 $this->info['padding-left'] =
140 $this->info['padding-right'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
141 new HTMLPurifier_AttrDef_CSS_Length('0'),
142 new HTMLPurifier_AttrDef_CSS_Percentage(true)
145 $this->info['padding'] = new HTMLPurifier_AttrDef_CSS_Multiple($padding);
147 $this->info['text-indent'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
148 new HTMLPurifier_AttrDef_CSS_Length(),
149 new HTMLPurifier_AttrDef_CSS_Percentage()
152 $trusted_wh = new HTMLPurifier_AttrDef_CSS_Composite(array(
153 new HTMLPurifier_AttrDef_CSS_Length('0'),
154 new HTMLPurifier_AttrDef_CSS_Percentage(true),
155 new HTMLPurifier_AttrDef_Enum(array('auto'))
157 $max = $config->get('CSS.MaxImgLength');
159 $this->info['width'] =
160 $this->info['height'] =
161 $max === null ?
162 $trusted_wh :
163 new HTMLPurifier_AttrDef_Switch('img',
164 // For img tags:
165 new HTMLPurifier_AttrDef_CSS_Composite(array(
166 new HTMLPurifier_AttrDef_CSS_Length('0', $max),
167 new HTMLPurifier_AttrDef_Enum(array('auto'))
169 // For everyone else:
170 $trusted_wh
173 $this->info['text-decoration'] = new HTMLPurifier_AttrDef_CSS_TextDecoration();
175 $this->info['font-family'] = new HTMLPurifier_AttrDef_CSS_FontFamily();
177 // this could use specialized code
178 $this->info['font-weight'] = new HTMLPurifier_AttrDef_Enum(
179 array('normal', 'bold', 'bolder', 'lighter', '100', '200', '300',
180 '400', '500', '600', '700', '800', '900'), false);
182 // MUST be called after other font properties, as it references
183 // a CSSDefinition object
184 $this->info['font'] = new HTMLPurifier_AttrDef_CSS_Font($config);
186 // same here
187 $this->info['border'] =
188 $this->info['border-bottom'] =
189 $this->info['border-top'] =
190 $this->info['border-left'] =
191 $this->info['border-right'] = new HTMLPurifier_AttrDef_CSS_Border($config);
193 $this->info['border-collapse'] = new HTMLPurifier_AttrDef_Enum(array(
194 'collapse', 'separate'));
196 $this->info['caption-side'] = new HTMLPurifier_AttrDef_Enum(array(
197 'top', 'bottom'));
199 $this->info['table-layout'] = new HTMLPurifier_AttrDef_Enum(array(
200 'auto', 'fixed'));
202 $this->info['vertical-align'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
203 new HTMLPurifier_AttrDef_Enum(array('baseline', 'sub', 'super',
204 'top', 'text-top', 'middle', 'bottom', 'text-bottom')),
205 new HTMLPurifier_AttrDef_CSS_Length(),
206 new HTMLPurifier_AttrDef_CSS_Percentage()
209 $this->info['border-spacing'] = new HTMLPurifier_AttrDef_CSS_Multiple(new HTMLPurifier_AttrDef_CSS_Length(), 2);
211 // These CSS properties don't work on many browsers, but we live
212 // in THE FUTURE!
213 $this->info['white-space'] = new HTMLPurifier_AttrDef_Enum(array('nowrap', 'normal', 'pre', 'pre-wrap', 'pre-line'));
215 if ($config->get('CSS.Proprietary')) {
216 $this->doSetupProprietary($config);
219 if ($config->get('CSS.AllowTricky')) {
220 $this->doSetupTricky($config);
223 if ($config->get('CSS.Trusted')) {
224 $this->doSetupTrusted($config);
227 $allow_important = $config->get('CSS.AllowImportant');
228 // wrap all attr-defs with decorator that handles !important
229 foreach ($this->info as $k => $v) {
230 $this->info[$k] = new HTMLPurifier_AttrDef_CSS_ImportantDecorator($v, $allow_important);
233 $this->setupConfigStuff($config);
236 protected function doSetupProprietary($config) {
237 // Internet Explorer only scrollbar colors
238 $this->info['scrollbar-arrow-color'] = new HTMLPurifier_AttrDef_CSS_Color();
239 $this->info['scrollbar-base-color'] = new HTMLPurifier_AttrDef_CSS_Color();
240 $this->info['scrollbar-darkshadow-color'] = new HTMLPurifier_AttrDef_CSS_Color();
241 $this->info['scrollbar-face-color'] = new HTMLPurifier_AttrDef_CSS_Color();
242 $this->info['scrollbar-highlight-color'] = new HTMLPurifier_AttrDef_CSS_Color();
243 $this->info['scrollbar-shadow-color'] = new HTMLPurifier_AttrDef_CSS_Color();
245 // technically not proprietary, but CSS3, and no one supports it
246 $this->info['opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue();
247 $this->info['-moz-opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue();
248 $this->info['-khtml-opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue();
250 // only opacity, for now
251 $this->info['filter'] = new HTMLPurifier_AttrDef_CSS_Filter();
253 // more CSS3
254 $this->info['page-break-after'] =
255 $this->info['page-break-before'] = new HTMLPurifier_AttrDef_Enum(array('auto','always','avoid','left','right'));
256 $this->info['page-break-inside'] = new HTMLPurifier_AttrDef_Enum(array('auto','avoid'));
260 protected function doSetupTricky($config) {
261 $this->info['display'] = new HTMLPurifier_AttrDef_Enum(array(
262 'inline', 'block', 'list-item', 'run-in', 'compact',
263 'marker', 'table', 'inline-block', 'inline-table', 'table-row-group',
264 'table-header-group', 'table-footer-group', 'table-row',
265 'table-column-group', 'table-column', 'table-cell', 'table-caption', 'none'
267 $this->info['visibility'] = new HTMLPurifier_AttrDef_Enum(array(
268 'visible', 'hidden', 'collapse'
270 $this->info['overflow'] = new HTMLPurifier_AttrDef_Enum(array('visible', 'hidden', 'auto', 'scroll'));
273 protected function doSetupTrusted($config) {
274 $this->info['position'] = new HTMLPurifier_AttrDef_Enum(array(
275 'static', 'relative', 'absolute', 'fixed'
277 $this->info['top'] =
278 $this->info['left'] =
279 $this->info['right'] =
280 $this->info['bottom'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
281 new HTMLPurifier_AttrDef_CSS_Length(),
282 new HTMLPurifier_AttrDef_CSS_Percentage(),
283 new HTMLPurifier_AttrDef_Enum(array('auto')),
285 $this->info['z-index'] = new HTMLPurifier_AttrDef_CSS_Composite(array(
286 new HTMLPurifier_AttrDef_Integer(),
287 new HTMLPurifier_AttrDef_Enum(array('auto')),
292 * Performs extra config-based processing. Based off of
293 * HTMLPurifier_HTMLDefinition.
294 * @todo Refactor duplicate elements into common class (probably using
295 * composition, not inheritance).
297 protected function setupConfigStuff($config) {
299 // setup allowed elements
300 $support = "(for information on implementing this, see the ".
301 "support forums) ";
302 $allowed_properties = $config->get('CSS.AllowedProperties');
303 if ($allowed_properties !== null) {
304 foreach ($this->info as $name => $d) {
305 if(!isset($allowed_properties[$name])) unset($this->info[$name]);
306 unset($allowed_properties[$name]);
308 // emit errors
309 foreach ($allowed_properties as $name => $d) {
310 // :TODO: Is this htmlspecialchars() call really necessary?
311 $name = htmlspecialchars($name);
312 trigger_error("Style attribute '$name' is not supported $support", E_USER_WARNING);
316 $forbidden_properties = $config->get('CSS.ForbiddenProperties');
317 if ($forbidden_properties !== null) {
318 foreach ($this->info as $name => $d) {
319 if (isset($forbidden_properties[$name])) {
320 unset($this->info[$name]);
328 // vim: et sw=4 sts=4