exclude FF from COLR font check
父節點
0024a88daf
當前提交
9f4eb7782c
|
|
@ -28,6 +28,12 @@ async function isColrFontSupported() {
|
|||
return colrFontSupported;
|
||||
}
|
||||
|
||||
// Firefox has supported COLR fonts since version 26
|
||||
// but doesn't support the check below with content blocking enabled.
|
||||
if (navigator.userAgent.includes("Firefox")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
try {
|
||||
const canvas = document.createElement('canvas');
|
||||
const context = canvas.getContext('2d');
|
||||
|
|
|
|||
載入中…
新增問題並參考