Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3584 sourcerer 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 
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
 
17
css_error css__cascade_pause_before(uint32_t opv, css_style *style,
18
		css_select_state *state)
19
{
20
	/** \todo pause-before */
21
	return css__cascade_length(opv, style, state, NULL);
22
}
23
 
24
css_error css__set_pause_before_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
 
33
css_error css__initial_pause_before(css_select_state *state)
34
{
35
	UNUSED(state);
36
 
37
	return CSS_OK;
38
}
39
 
40
css_error css__compose_pause_before(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