You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
netsurf/content/handlers/javascript/duktape/CSSRule.bnd

23 lines
528 B

/* 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;
%}