mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 22:59:31 +08:00
12 lines
207 B
Text
12 lines
207 B
Text
'use strict';
|
|
|
|
// https://drafts.csswg.org/css-cascade-5/
|
|
const cssWideKeywords = [
|
|
'initial',
|
|
'inherit',
|
|
'unset',
|
|
'revert',
|
|
'revert-layer'
|
|
];
|
|
|
|
exports.cssWideKeywords = cssWideKeywords;
|