summaryrefslogtreecommitdiff
path: root/content/handlers/javascript/duktape/CSSStyleSheet.bnd
blob: 9167b8afa034a83820574fb05df125f5da6f660d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* CSS Stylesheet 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
 * stylesheets will have to come from documents etc.
 */

class CSSStyleSheet {
    private bool unused;
};

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