diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-28 08:40:39 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-28 08:40:39 +0100 |
commit | 23f3adb7a0256f855b7bb73e0a46ad409af5f205 (patch) | |
tree | 7a0edadc7730e26e72c82597f7350d8ef77fefec /platform/web/js | |
parent | 5eeb6e5906ebf303ba695bc26f87b41ab1b85200 (diff) | |
parent | 8fcd54d13edbee1fedfa15bb60b735768e981887 (diff) |
Merge pull request #67815 from Calinou/html5-improve-feature-errors
Improve feature errors in HTML5 for easier understanding
Diffstat (limited to 'platform/web/js')
-rw-r--r-- | platform/web/js/engine/features.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/web/js/engine/features.js b/platform/web/js/engine/features.js index f91a4eff81..b7c6c9d445 100644 --- a/platform/web/js/engine/features.js +++ b/platform/web/js/engine/features.js @@ -76,19 +76,19 @@ const Features = { // eslint-disable-line no-unused-vars getMissingFeatures: function () { const missing = []; if (!Features.isWebGLAvailable(2)) { - missing.push('WebGL2'); + missing.push('WebGL2 - Check web browser configuration and hardware support'); } if (!Features.isFetchAvailable()) { - missing.push('Fetch'); + missing.push('Fetch - Check web browser version'); } if (!Features.isSecureContext()) { - missing.push('Secure Context'); + missing.push('Secure Context - Check web server configuration (use HTTPS)'); } if (!Features.isCrossOriginIsolated()) { - missing.push('Cross Origin Isolation'); + missing.push('Cross Origin Isolation - Check web server configuration (send correct headers)'); } if (!Features.isSharedArrayBufferAvailable()) { - missing.push('SharedArrayBuffer'); + missing.push('SharedArrayBuffer - Check web server configuration (send correct headers)'); } // Audio is normally optional since we have a dummy fallback. return missing; |