Support @supports inside @-moz-document

This commit is contained in:
tophf 2017-03-17 08:07:44 +03:00
parent ef8f507c50
commit 4684016a47

View File

@ -1706,6 +1706,9 @@ Parser.prototype = function() {
case Tokens.DOCUMENT_SYM:
this._document();
break;
case Tokens.SUPPORTS_SYM:
this._supports();
break;
default:
ok = Boolean(this._ruleset());
}