Skip to content

Commit 2b08084

Browse files
authored
Fix Anki css scoping breaking due to Anki shipping with incredibly out of date Chromium version (112) (#1747)
* Add addScopeToCssLegacy for Anki css scoping * Fix tests
1 parent 7ad5f15 commit 2b08084

File tree

2 files changed

+36
-3
lines changed

2 files changed

+36
-3
lines changed

ext/js/core/utilities.js

+33
Original file line numberDiff line numberDiff line change
@@ -282,3 +282,36 @@ export function sanitizeCSS(css) {
282282
export function addScopeToCss(css, scopeSelector) {
283283
return scopeSelector + ' {' + css + '\n}';
284284
}
285+
286+
/**
287+
* Older browser versions do not support nested css and cannot use the normal `addScopeToCss`.
288+
* All major web browsers should be fine but Anki is still distributing Chromium 112 on some platforms as of Anki version 24.11.
289+
* Chromium 120+ is required for full support.
290+
* @param {string} css
291+
* @param {string} scopeSelector
292+
* @returns {string}
293+
*/
294+
export function addScopeToCssLegacy(css, scopeSelector) {
295+
const stylesheet = new CSSStyleSheet();
296+
// nodejs must fall back to the normal version of the function
297+
if (typeof stylesheet.replaceSync === 'undefined') {
298+
return addScopeToCss(css, scopeSelector);
299+
}
300+
stylesheet.replaceSync(css);
301+
const newCSSRules = [];
302+
for (const cssRule of stylesheet.cssRules) {
303+
// ignore non-style rules
304+
if (!(cssRule instanceof CSSStyleRule)) {
305+
continue;
306+
}
307+
308+
const newSelectors = [];
309+
for (const selector of cssRule.selectorText.split(',')) {
310+
newSelectors.push(scopeSelector + ' ' + selector);
311+
}
312+
const newRule = cssRule.cssText.replace(cssRule.selectorText, newSelectors.join(', '));
313+
newCSSRules.push(newRule);
314+
}
315+
stylesheet.replaceSync(newCSSRules.join('\n'));
316+
return [...stylesheet.cssRules].map((rule) => rule.cssText || '').join('\n');
317+
}

ext/js/data/anki-note-data-creator.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

19-
import {addScopeToCss} from '../core/utilities.js';
19+
import {addScopeToCssLegacy} from '../core/utilities.js';
2020
import {getDisambiguations, getGroupedPronunciations, getPronunciationsOfType, getTermFrequency, groupTermTags} from '../dictionary/dictionary-data-util.js';
2121
import {distributeFurigana, distributeFuriganaInflected} from '../language/ja/japanese.js';
2222

@@ -584,7 +584,7 @@ function getTermDictionaryEntryCommonInfo(dictionaryEntry, type, dictionaryStyle
584584
* @returns {string}
585585
*/
586586
function addGlossaryScopeToCss(css) {
587-
return addScopeToCss(css, '.yomitan-glossary');
587+
return addScopeToCssLegacy(css, '.yomitan-glossary');
588588
}
589589

590590
/**
@@ -597,7 +597,7 @@ function addDictionaryScopeToCss(css, dictionaryTitle) {
597597
.replace(/\\/g, '\\\\')
598598
.replace(/"/g, '\\"');
599599

600-
return addScopeToCss(css, `[data-dictionary="${escapedTitle}"]`);
600+
return addScopeToCssLegacy(css, `[data-dictionary="${escapedTitle}"]`);
601601
}
602602

603603
/**

0 commit comments

Comments
 (0)