summaryrefslogtreecommitdiff
path: root/content/handlers/javascript/duktape/CSSRule.bnd
blob: 555023c85d72760179b3bceb38e65fecba735445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* CSS Rule binding for NetSurf using duktape and libcss/libdom
 *
 * Copyright 2022 Daniel Silverstone <dsilvers@netsurf-browser.org>
 *
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 *
 * Released under the terms of the MIT License,
 *         http://www.opensource.org/licenses/mit-license
 */

/* Note, for now this exists purely to block warnings, eventually
 * rules will have to come from stylesheets etc.
 */

class CSSRule {
    private bool unused;
};

init CSSRule()
%{
    priv->unused = true;
%}