summaryrefslogtreecommitdiff
path: root/src/select/assets.py
blob: 67c6b6b209279f6ca7d4f1e6e216ff883b2cb6a5 (plain)
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
# This file is part of LibCSS.
# Licensed under the MIT License,
# http://www.opensource.org/licenses/mit-license.php
# Copyright 2017 Lucas Neves <lcneves@gmail.com>

copyright = '''\
/*
 * This file is part of LibCSS
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2017 The NetSurf Project
 */
'''

assets = {}

assets['computed.h'] = {}
assets['computed.h']['header'] = copyright
assets['computed.h']['footer'] = ''

assets['propset.h'] = {}
assets['propset.h']['header'] = copyright + '''
/** Default values are 'initial value', unless the property is inherited,
 *  in which case it is 'inherit'. */'''
assets['propset.h']['footer'] = ''

assets['propget.h'] = {}
assets['propget.h']['header'] = copyright
assets['propget.h']['footer'] = ''