summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-properties-values-api/support/alt/alt.js
blob: f25e18beeb8d70932e418865488dff9a3b0d94cf (plain)
1
2
3
4
5
6
7
8
9
10
11
function reg_url(name, inherits) {
    CSS.registerProperty({
        name: name,
        syntax: '<url> | none',
        inherits: inherits,
        initialValue: 'none'
    });
}

reg_url('--reg-alt-non-inherited-url', false);
reg_url('--reg-alt-non-inherited-func', false);