Merge branch 'master' into resize-header

This commit is contained in:
tophf 2022-01-11 21:19:02 +03:00
commit 228e77badc
2 changed files with 2 additions and 8 deletions

View File

@ -375,9 +375,6 @@
},
"description": "Title of the page for editing styles"
},
"editorCodeLabel": {
"message": "Code"
},
"editorSettings": {
"message": "Editor settings"
},
@ -1661,9 +1658,6 @@
"message": "As a security precaution, the browser prohibits extensions from affecting its built-in pages (like chrome://version, the standard new tab page as of Chrome 61, about:addons, and so on) as well as other extensions' pages. Each browser also restricts access to its own extensions gallery (like Chrome Web Store or AMO).",
"description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
},
"styleOriginLabel": {
"message": "Style origin"
},
"styleUpdateUrlLabel": {
"message": "Update URL"
},

View File

@ -4127,8 +4127,8 @@ self.parserlib = (() => {
this.fire(event, property);
if (consumeSemicolon) {
while (stream.match(TT.semiS)) {/*NOP*/}
this._ws();
}
this._ws();
return true;
}
@ -4392,7 +4392,7 @@ self.parserlib = (() => {
readMargins && this._margin() ||
(tt && stream.unget(), this._declaration(true, Props)) ||
(next = stream.LT(1)).value === ';' ||
this._ws(next, true)) {
this._ws(null, true)) {
continue;
}
break;