File Coverage

third_party/modest/source/modest/style/default.c
Criterion Covered Total %
statement 0 650 0.0
branch 0 74 0.0
condition n/a
subroutine n/a
pod n/a
total 0 724 0.0


line stmt bran cond sub pod time code
1             /*
2             Copyright (C) 2016-2017 Alexander Borisov
3            
4             This library is free software; you can redistribute it and/or
5             modify it under the terms of the GNU Lesser General Public
6             License as published by the Free Software Foundation; either
7             version 2.1 of the License, or (at your option) any later version.
8            
9             This library is distributed in the hope that it will be useful,
10             but WITHOUT ANY WARRANTY; without even the implied warranty of
11             MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12             Lesser General Public License for more details.
13            
14             You should have received a copy of the GNU Lesser General Public
15             License along with this library; if not, write to the Free Software
16             Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17            
18             Author: lex.borisov@gmail.com (Alexander Borisov)
19             */
20              
21             #include "modest/style/default.h"
22             #include "modest/style/default_resources.h"
23              
24 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
25             {
26 0 0         if(node->tag_id < MyHTML_TAG_LAST_ENTRY)
27 0           return modest_style_default_function_of_declarations[ node->tag_id ](modest, node, type);
28            
29 0           return NULL;
30             }
31              
32 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node__undef(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
33             {
34 0           return NULL;
35             }
36              
37 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node__text(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
38             {
39 0           return NULL;
40             }
41              
42 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node__comment(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
43             {
44 0           return NULL;
45             }
46              
47 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node__doctype(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
48             {
49 0           return NULL;
50             }
51              
52 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_a(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
53             {
54 0           return NULL;
55             }
56              
57 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_abbr(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
58             {
59 0           return NULL;
60             }
61              
62 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_acronym(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
63             {
64 0           return NULL;
65             }
66              
67 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_address(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
68             {
69 0 0         switch (type) {
70 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
71 0           return &modest_style_default_entry_display_block;
72            
73 0           default:
74 0           return NULL;
75             }
76             }
77              
78 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_annotation_xml(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
79             {
80 0           return NULL;
81             }
82              
83 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_applet(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
84             {
85 0           return NULL;
86             }
87              
88 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_area(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
89             {
90 0 0         switch (type) {
91 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
92 0           return &modest_style_default_entry_display_none;
93            
94 0           default:
95 0           return NULL;
96             }
97             }
98              
99 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_article(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
100             {
101 0           return NULL;
102             }
103              
104 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_aside(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
105             {
106 0           return NULL;
107             }
108              
109 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_audio(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
110             {
111 0           return NULL;
112             }
113              
114 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_b(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
115             {
116 0           return NULL;
117             }
118              
119 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_base(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
120             {
121 0 0         switch (type) {
122 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
123 0           return &modest_style_default_entry_display_none;
124            
125 0           default:
126 0           return NULL;
127             }
128             }
129              
130 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_basefont(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
131             {
132 0 0         switch (type) {
133 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
134 0           return &modest_style_default_entry_display_none;
135            
136 0           default:
137 0           return NULL;
138             }
139             }
140              
141 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_bdi(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
142             {
143 0           return NULL;
144             }
145              
146 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_bdo(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
147             {
148 0           return NULL;
149             }
150              
151 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_bgsound(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
152             {
153 0           return NULL;
154             }
155              
156 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_big(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
157             {
158 0           return NULL;
159             }
160              
161 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_blink(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
162             {
163 0           return NULL;
164             }
165              
166 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_blockquote(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
167             {
168 0 0         switch (type) {
169 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
170 0           return &modest_style_default_entry_display_block;
171            
172 0           default:
173 0           return NULL;
174             }
175             }
176              
177 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_body(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
178             {
179 0 0         switch (type) {
180 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
181 0           return &modest_style_default_entry_display_block;
182            
183 0           default:
184 0           return NULL;
185             }
186             }
187              
188 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_br(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
189             {
190 0           return NULL;
191             }
192              
193 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_button(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
194             {
195 0           return NULL;
196             }
197              
198 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_canvas(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
199             {
200 0           return NULL;
201             }
202              
203 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_caption(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
204             {
205 0           return NULL;
206             }
207              
208 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_center(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
209             {
210 0 0         switch (type) {
211 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
212 0           return &modest_style_default_entry_display_block;
213            
214 0           default:
215 0           return NULL;
216             }
217             }
218              
219 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_cite(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
220             {
221 0           return NULL;
222             }
223              
224 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_code(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
225             {
226 0           return NULL;
227             }
228              
229 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_col(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
230             {
231 0           return NULL;
232             }
233              
234 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_colgroup(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
235             {
236 0           return NULL;
237             }
238              
239 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_command(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
240             {
241 0           return NULL;
242             }
243              
244 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_comment(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
245             {
246 0           return NULL;
247             }
248              
249 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_datalist(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
250             {
251 0 0         switch (type) {
252 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
253 0           return &modest_style_default_entry_display_none;
254            
255 0           default:
256 0           return NULL;
257             }
258             }
259              
260 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_dd(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
261             {
262 0           return NULL;
263             }
264              
265 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_del(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
266             {
267 0           return NULL;
268             }
269              
270 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_details(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
271             {
272 0           return NULL;
273             }
274              
275 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_dfn(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
276             {
277 0           return NULL;
278             }
279              
280 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_dialog(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
281             {
282 0           return NULL;
283             }
284              
285 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_dir(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
286             {
287 0           return NULL;
288             }
289              
290 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_div(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
291             {
292 0 0         switch (type) {
293 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
294 0           return &modest_style_default_entry_display_block;
295            
296 0           default:
297 0           return NULL;
298             }
299             }
300              
301 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_dl(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
302             {
303 0           return NULL;
304             }
305              
306 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_dt(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
307             {
308 0           return NULL;
309             }
310              
311 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_em(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
312             {
313 0           return NULL;
314             }
315              
316 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_embed(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
317             {
318 0           return NULL;
319             }
320              
321 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_fieldset(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
322             {
323 0           return NULL;
324             }
325              
326 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_figcaption(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
327             {
328 0 0         switch (type) {
329 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
330 0           return &modest_style_default_entry_display_block;
331            
332 0           default:
333 0           return NULL;
334             }
335             }
336              
337 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_figure(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
338             {
339 0 0         switch (type) {
340 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
341 0           return &modest_style_default_entry_display_block;
342            
343 0           default:
344 0           return NULL;
345             }
346             }
347              
348 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_font(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
349             {
350 0           return NULL;
351             }
352              
353 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_footer(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
354             {
355 0 0         switch (type) {
356 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
357 0           return &modest_style_default_entry_display_block;
358            
359 0           default:
360 0           return NULL;
361             }
362             }
363              
364 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_form(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
365             {
366 0 0         switch (type) {
367 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
368 0           return &modest_style_default_entry_display_block;
369            
370 0           default:
371 0           return NULL;
372             }
373             }
374              
375 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_frame(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
376             {
377 0           return NULL;
378             }
379              
380 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_frameset(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
381             {
382 0           return NULL;
383             }
384              
385 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_h1(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
386             {
387 0           return NULL;
388             }
389              
390 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_h2(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
391             {
392 0           return NULL;
393             }
394              
395 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_h3(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
396             {
397 0           return NULL;
398             }
399              
400 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_h4(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
401             {
402 0           return NULL;
403             }
404              
405 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_h5(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
406             {
407 0           return NULL;
408             }
409              
410 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_h6(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
411             {
412 0           return NULL;
413             }
414              
415 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_head(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
416             {
417 0 0         switch (type) {
418 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
419 0           return &modest_style_default_entry_display_none;
420            
421 0           default:
422 0           return NULL;
423             }
424             }
425              
426 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_header(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
427             {
428 0 0         switch (type) {
429 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
430 0           return &modest_style_default_entry_display_block;
431            
432 0           default:
433 0           return NULL;
434             }
435             }
436              
437 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_hgroup(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
438             {
439 0           return NULL;
440             }
441              
442 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_hr(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
443             {
444 0 0         switch (type) {
445 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
446 0           return &modest_style_default_entry_display_block;
447            
448 0           default:
449 0           return NULL;
450             }
451             }
452              
453 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_html(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
454             {
455 0 0         switch (type) {
456 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
457 0           return &modest_style_default_entry_display_block;
458            
459 0           default:
460 0           return NULL;
461             }
462             }
463              
464 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_i(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
465             {
466 0           return NULL;
467             }
468              
469 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_iframe(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
470             {
471 0           return NULL;
472             }
473              
474 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_image(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
475             {
476 0           return NULL;
477             }
478              
479 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_img(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
480             {
481 0           return NULL;
482             }
483              
484 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_input(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
485             {
486 0           return NULL;
487             }
488              
489 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_ins(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
490             {
491 0           return NULL;
492             }
493              
494 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_isindex(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
495             {
496 0           return NULL;
497             }
498              
499 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_kbd(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
500             {
501 0           return NULL;
502             }
503              
504 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_keygen(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
505             {
506 0           return NULL;
507             }
508              
509 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_label(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
510             {
511 0           return NULL;
512             }
513              
514 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_legend(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
515             {
516 0 0         switch (type) {
517 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
518 0           return &modest_style_default_entry_display_block;
519            
520 0           default:
521 0           return NULL;
522             }
523             }
524              
525 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_li(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
526             {
527 0           return NULL;
528             }
529              
530 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_link(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
531             {
532 0 0         switch (type) {
533 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
534 0           return &modest_style_default_entry_display_none;
535            
536 0           default:
537 0           return NULL;
538             }
539             }
540              
541 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_listing(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
542             {
543 0 0         switch (type) {
544 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
545 0           return &modest_style_default_entry_display_block;
546            
547 0           default:
548 0           return NULL;
549             }
550             }
551              
552 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_main(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
553             {
554 0 0         switch (type) {
555 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
556 0           return &modest_style_default_entry_display_block;
557            
558 0           default:
559 0           return NULL;
560             }
561             }
562              
563 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_map(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
564             {
565 0           return NULL;
566             }
567              
568 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mark(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
569             {
570 0           return NULL;
571             }
572              
573 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_marquee(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
574             {
575 0           return NULL;
576             }
577              
578 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_menu(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
579             {
580 0           return NULL;
581             }
582              
583 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_menuitem(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
584             {
585 0           return NULL;
586             }
587              
588 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_meta(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
589             {
590 0 0         switch (type) {
591 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
592 0           return &modest_style_default_entry_display_none;
593            
594 0           default:
595 0           return NULL;
596             }
597             }
598              
599 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_meter(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
600             {
601 0           return NULL;
602             }
603              
604 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mtext(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
605             {
606 0           return NULL;
607             }
608              
609 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_nav(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
610             {
611 0           return NULL;
612             }
613              
614 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_nobr(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
615             {
616 0           return NULL;
617             }
618              
619 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_noembed(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
620             {
621 0 0         switch (type) {
622 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
623 0           return &modest_style_default_entry_display_none;
624            
625 0           default:
626 0           return NULL;
627             }
628             }
629              
630 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_noframes(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
631             {
632 0 0         switch (type) {
633 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
634 0           return &modest_style_default_entry_display_none;
635            
636 0           default:
637 0           return NULL;
638             }
639             }
640              
641 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_noscript(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
642             {
643 0           return NULL;
644             }
645              
646 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_object(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
647             {
648 0           return NULL;
649             }
650              
651 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_ol(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
652             {
653 0           return NULL;
654             }
655              
656 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_optgroup(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
657             {
658 0           return NULL;
659             }
660              
661 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_option(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
662             {
663 0           return NULL;
664             }
665              
666 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_output(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
667             {
668 0           return NULL;
669             }
670              
671 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_p(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
672             {
673 0 0         switch (type) {
674 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
675 0           return &modest_style_default_entry_display_block;
676            
677 0           default:
678 0           return NULL;
679             }
680             }
681              
682 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_param(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
683             {
684 0 0         switch (type) {
685 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
686 0           return &modest_style_default_entry_display_none;
687            
688 0           default:
689 0           return NULL;
690             }
691             }
692              
693 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_plaintext(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
694             {
695 0 0         switch (type) {
696 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
697 0           return &modest_style_default_entry_display_block;
698            
699 0           default:
700 0           return NULL;
701             }
702             }
703              
704 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_pre(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
705             {
706 0 0         switch (type) {
707 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
708 0           return &modest_style_default_entry_display_block;
709            
710 0           default:
711 0           return NULL;
712             }
713             }
714              
715 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_progress(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
716             {
717 0           return NULL;
718             }
719              
720 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_q(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
721             {
722 0           return NULL;
723             }
724              
725 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_rb(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
726             {
727 0           return NULL;
728             }
729              
730 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_rp(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
731             {
732 0 0         switch (type) {
733 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
734 0           return &modest_style_default_entry_display_none;
735            
736 0           default:
737 0           return NULL;
738             }
739             }
740              
741 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_rt(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
742             {
743 0           return NULL;
744             }
745              
746 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_rtc(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
747             {
748 0           return NULL;
749             }
750              
751 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_ruby(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
752             {
753 0           return NULL;
754             }
755              
756 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_s(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
757             {
758 0           return NULL;
759             }
760              
761 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_samp(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
762             {
763 0           return NULL;
764             }
765              
766 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_script(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
767             {
768 0 0         switch (type) {
769 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
770 0           return &modest_style_default_entry_display_none;
771            
772 0           default:
773 0           return NULL;
774             }
775             }
776              
777 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_section(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
778             {
779 0           return NULL;
780             }
781              
782 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_select(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
783             {
784 0           return NULL;
785             }
786              
787 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_small(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
788             {
789 0           return NULL;
790             }
791              
792 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_source(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
793             {
794 0 0         switch (type) {
795 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
796 0           return &modest_style_default_entry_display_none;
797            
798 0           default:
799 0           return NULL;
800             }
801             }
802              
803 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_span(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
804             {
805 0           return NULL;
806             }
807              
808 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_strike(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
809             {
810 0           return NULL;
811             }
812              
813 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_strong(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
814             {
815 0           return NULL;
816             }
817              
818 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_style(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
819             {
820 0 0         switch (type) {
821 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
822 0           return &modest_style_default_entry_display_none;
823            
824 0           default:
825 0           return NULL;
826             }
827             }
828              
829 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_sub(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
830             {
831 0           return NULL;
832             }
833              
834 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_summary(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
835             {
836 0           return NULL;
837             }
838              
839 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_sup(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
840             {
841 0           return NULL;
842             }
843              
844 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_svg(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
845             {
846 0           return NULL;
847             }
848              
849 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_table(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
850             {
851 0           return NULL;
852             }
853              
854 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_tbody(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
855             {
856 0           return NULL;
857             }
858              
859 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_td(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
860             {
861 0           return NULL;
862             }
863              
864 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_template(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
865             {
866 0 0         switch (type) {
867 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
868 0           return &modest_style_default_entry_display_none;
869            
870 0           default:
871 0           return NULL;
872             }
873             }
874              
875 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_textarea(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
876             {
877 0           return NULL;
878             }
879              
880 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_tfoot(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
881             {
882 0           return NULL;
883             }
884              
885 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_th(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
886             {
887 0           return NULL;
888             }
889              
890 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_thead(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
891             {
892 0           return NULL;
893             }
894              
895 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_time(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
896             {
897 0           return NULL;
898             }
899              
900 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_title(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
901             {
902 0 0         switch (type) {
903 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
904 0           return &modest_style_default_entry_display_none;
905            
906 0           default:
907 0           return NULL;
908             }
909             }
910              
911 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_tr(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
912             {
913 0           return NULL;
914             }
915              
916 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_track(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
917             {
918 0 0         switch (type) {
919 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
920 0           return &modest_style_default_entry_display_none;
921            
922 0           default:
923 0           return NULL;
924             }
925             }
926              
927 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_tt(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
928             {
929 0           return NULL;
930             }
931              
932 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_u(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
933             {
934 0           return NULL;
935             }
936              
937 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_ul(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
938             {
939 0           return NULL;
940             }
941              
942 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_var(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
943             {
944 0           return NULL;
945             }
946              
947 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_video(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
948             {
949 0           return NULL;
950             }
951              
952 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_wbr(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
953             {
954 0           return NULL;
955             }
956              
957 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_xmp(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
958             {
959 0 0         switch (type) {
960 0           case MyCSS_PROPERTY_TYPE_DISPLAY:
961 0           return &modest_style_default_entry_display_block;
962            
963 0           default:
964 0           return NULL;
965             }
966             }
967              
968 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_altGlyph(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
969             {
970 0           return NULL;
971             }
972              
973 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_altGlyphDef(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
974             {
975 0           return NULL;
976             }
977              
978 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_altGlyphItem(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
979             {
980 0           return NULL;
981             }
982              
983 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_animate(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
984             {
985 0           return NULL;
986             }
987              
988 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_animateColor(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
989             {
990 0           return NULL;
991             }
992              
993 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_animateMotion(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
994             {
995 0           return NULL;
996             }
997              
998 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_animateTransform(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
999             {
1000 0           return NULL;
1001             }
1002              
1003 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_circle(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1004             {
1005 0           return NULL;
1006             }
1007              
1008 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_clipPath(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1009             {
1010 0           return NULL;
1011             }
1012              
1013 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_color_profile(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1014             {
1015 0           return NULL;
1016             }
1017              
1018 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_cursor(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1019             {
1020 0           return NULL;
1021             }
1022              
1023 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_defs(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1024             {
1025 0           return NULL;
1026             }
1027              
1028 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_desc(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1029             {
1030 0           return NULL;
1031             }
1032              
1033 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_ellipse(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1034             {
1035 0           return NULL;
1036             }
1037              
1038 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feBlend(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1039             {
1040 0           return NULL;
1041             }
1042              
1043 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feColorMatrix(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1044             {
1045 0           return NULL;
1046             }
1047              
1048 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feComponentTransfer(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1049             {
1050 0           return NULL;
1051             }
1052              
1053 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feComposite(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1054             {
1055 0           return NULL;
1056             }
1057              
1058 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feConvolveMatrix(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1059             {
1060 0           return NULL;
1061             }
1062              
1063 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feDiffuseLighting(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1064             {
1065 0           return NULL;
1066             }
1067              
1068 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feDisplacementMap(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1069             {
1070 0           return NULL;
1071             }
1072              
1073 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feDistantLight(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1074             {
1075 0           return NULL;
1076             }
1077              
1078 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feDropShadow(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1079             {
1080 0           return NULL;
1081             }
1082              
1083 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feFlood(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1084             {
1085 0           return NULL;
1086             }
1087              
1088 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feFuncA(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1089             {
1090 0           return NULL;
1091             }
1092              
1093 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feFuncB(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1094             {
1095 0           return NULL;
1096             }
1097              
1098 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feFuncG(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1099             {
1100 0           return NULL;
1101             }
1102              
1103 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feFuncR(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1104             {
1105 0           return NULL;
1106             }
1107              
1108 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feGaussianBlur(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1109             {
1110 0           return NULL;
1111             }
1112              
1113 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feImage(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1114             {
1115 0           return NULL;
1116             }
1117              
1118 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feMerge(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1119             {
1120 0           return NULL;
1121             }
1122              
1123 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feMergeNode(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1124             {
1125 0           return NULL;
1126             }
1127              
1128 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feMorphology(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1129             {
1130 0           return NULL;
1131             }
1132              
1133 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feOffset(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1134             {
1135 0           return NULL;
1136             }
1137              
1138 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_fePointLight(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1139             {
1140 0           return NULL;
1141             }
1142              
1143 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feSpecularLighting(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1144             {
1145 0           return NULL;
1146             }
1147              
1148 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feSpotLight(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1149             {
1150 0           return NULL;
1151             }
1152              
1153 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feTile(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1154             {
1155 0           return NULL;
1156             }
1157              
1158 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_feTurbulence(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1159             {
1160 0           return NULL;
1161             }
1162              
1163 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_filter(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1164             {
1165 0           return NULL;
1166             }
1167              
1168 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_font_face(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1169             {
1170 0           return NULL;
1171             }
1172              
1173 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_font_face_format(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1174             {
1175 0           return NULL;
1176             }
1177              
1178 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_font_face_name(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1179             {
1180 0           return NULL;
1181             }
1182              
1183 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_font_face_src(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1184             {
1185 0           return NULL;
1186             }
1187              
1188 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_font_face_uri(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1189             {
1190 0           return NULL;
1191             }
1192              
1193 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_foreignObject(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1194             {
1195 0           return NULL;
1196             }
1197              
1198 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_g(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1199             {
1200 0           return NULL;
1201             }
1202              
1203 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_glyph(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1204             {
1205 0           return NULL;
1206             }
1207              
1208 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_glyphRef(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1209             {
1210 0           return NULL;
1211             }
1212              
1213 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_hkern(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1214             {
1215 0           return NULL;
1216             }
1217              
1218 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_line(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1219             {
1220 0           return NULL;
1221             }
1222              
1223 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_linearGradient(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1224             {
1225 0           return NULL;
1226             }
1227              
1228 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_marker(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1229             {
1230 0           return NULL;
1231             }
1232              
1233 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mask(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1234             {
1235 0           return NULL;
1236             }
1237              
1238 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_metadata(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1239             {
1240 0           return NULL;
1241             }
1242              
1243 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_missing_glyph(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1244             {
1245 0           return NULL;
1246             }
1247              
1248 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mpath(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1249             {
1250 0           return NULL;
1251             }
1252              
1253 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_path(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1254             {
1255 0           return NULL;
1256             }
1257              
1258 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_pattern(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1259             {
1260 0           return NULL;
1261             }
1262              
1263 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_polygon(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1264             {
1265 0           return NULL;
1266             }
1267              
1268 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_polyline(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1269             {
1270 0           return NULL;
1271             }
1272              
1273 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_radialGradient(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1274             {
1275 0           return NULL;
1276             }
1277              
1278 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_rect(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1279             {
1280 0           return NULL;
1281             }
1282              
1283 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_set(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1284             {
1285 0           return NULL;
1286             }
1287              
1288 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_stop(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1289             {
1290 0           return NULL;
1291             }
1292              
1293 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_switch(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1294             {
1295 0           return NULL;
1296             }
1297              
1298 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_symbol(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1299             {
1300 0           return NULL;
1301             }
1302              
1303 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_text(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1304             {
1305 0           return NULL;
1306             }
1307              
1308 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_textPath(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1309             {
1310 0           return NULL;
1311             }
1312              
1313 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_tref(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1314             {
1315 0           return NULL;
1316             }
1317              
1318 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_tspan(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1319             {
1320 0           return NULL;
1321             }
1322              
1323 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_use(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1324             {
1325 0           return NULL;
1326             }
1327              
1328 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_view(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1329             {
1330 0           return NULL;
1331             }
1332              
1333 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_vkern(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1334             {
1335 0           return NULL;
1336             }
1337              
1338 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_math(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1339             {
1340 0           return NULL;
1341             }
1342              
1343 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_maction(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1344             {
1345 0           return NULL;
1346             }
1347              
1348 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_maligngroup(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1349             {
1350 0           return NULL;
1351             }
1352              
1353 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_malignmark(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1354             {
1355 0           return NULL;
1356             }
1357              
1358 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_menclose(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1359             {
1360 0           return NULL;
1361             }
1362              
1363 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_merror(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1364             {
1365 0           return NULL;
1366             }
1367              
1368 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mfenced(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1369             {
1370 0           return NULL;
1371             }
1372              
1373 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mfrac(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1374             {
1375 0           return NULL;
1376             }
1377              
1378 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mglyph(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1379             {
1380 0           return NULL;
1381             }
1382              
1383 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mi(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1384             {
1385 0           return NULL;
1386             }
1387              
1388 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mlabeledtr(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1389             {
1390 0           return NULL;
1391             }
1392              
1393 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mlongdiv(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1394             {
1395 0           return NULL;
1396             }
1397              
1398 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mmultiscripts(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1399             {
1400 0           return NULL;
1401             }
1402              
1403 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mn(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1404             {
1405 0           return NULL;
1406             }
1407              
1408 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mo(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1409             {
1410 0           return NULL;
1411             }
1412              
1413 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mover(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1414             {
1415 0           return NULL;
1416             }
1417              
1418 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mpadded(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1419             {
1420 0           return NULL;
1421             }
1422              
1423 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mphantom(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1424             {
1425 0           return NULL;
1426             }
1427              
1428 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mroot(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1429             {
1430 0           return NULL;
1431             }
1432              
1433 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mrow(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1434             {
1435 0           return NULL;
1436             }
1437              
1438 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_ms(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1439             {
1440 0           return NULL;
1441             }
1442              
1443 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mscarries(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1444             {
1445 0           return NULL;
1446             }
1447              
1448 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mscarry(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1449             {
1450 0           return NULL;
1451             }
1452              
1453 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_msgroup(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1454             {
1455 0           return NULL;
1456             }
1457              
1458 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_msline(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1459             {
1460 0           return NULL;
1461             }
1462              
1463 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mspace(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1464             {
1465 0           return NULL;
1466             }
1467              
1468 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_msqrt(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1469             {
1470 0           return NULL;
1471             }
1472              
1473 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_msrow(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1474             {
1475 0           return NULL;
1476             }
1477              
1478 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mstack(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1479             {
1480 0           return NULL;
1481             }
1482              
1483 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_mstyle(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1484             {
1485 0           return NULL;
1486             }
1487              
1488 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_msub(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1489             {
1490 0           return NULL;
1491             }
1492              
1493 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_msup(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1494             {
1495 0           return NULL;
1496             }
1497              
1498 0           mycss_declaration_entry_t * modest_style_default_declaration_by_html_node_msubsup(modest_t * modest, myhtml_tree_node_t* node, mycss_property_type_t type)
1499             {
1500 0           return NULL;
1501             }
1502              
1503