1 /*
2  * This file is part of LibCSS
3  * Licensed under the MIT License,
4  *		  http://www.opensource.org/licenses/mit-license.php
5  * Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
6  */
7 
8 #include "bytecode/bytecode.h"
9 #include "bytecode/opcodes.h"
10 #include "select/propset.h"
11 #include "select/propget.h"
12 #include "utils/utils.h"
13 
14 #include "select/properties/properties.h"
15 #include "select/properties/helpers.h"
16 
css__cascade_richness(uint32_t opv,css_style * style,css_select_state * state)17 css_error css__cascade_richness(uint32_t opv, css_style *style,
18 		css_select_state *state)
19 {
20 	/** \todo richness */
21 	return css__cascade_number(opv, style, state, NULL);
22 }
23 
css__set_richness_from_hint(const css_hint * hint,css_computed_style * style)24 css_error css__set_richness_from_hint(const css_hint *hint,
25 		css_computed_style *style)
26 {
27 	UNUSED(hint);
28 	UNUSED(style);
29 
30 	return CSS_OK;
31 }
32 
css__initial_richness(css_select_state * state)33 css_error css__initial_richness(css_select_state *state)
34 {
35 	UNUSED(state);
36 
37 	return CSS_OK;
38 }
39 
css__compose_richness(const css_computed_style * parent,const css_computed_style * child,css_computed_style * result)40 css_error css__compose_richness(const css_computed_style *parent,
41 		const css_computed_style *child,
42 		css_computed_style *result)
43 {
44 	UNUSED(parent);
45 	UNUSED(child);
46 	UNUSED(result);
47 
48 	return CSS_OK;
49 }
50 
51