Search Issue Tracker
By Design
Votes
0
Found in
2017.4.0f1
2018.2.15f1
Issue ID
1116375
Regression
No
WebGL build is not respecting the StringComparison.InvariantCultureIgnoreCase string comparison parameter
How to reproduce:
1. Open the attached project
2. Go to Menu bar -> File -> Build Settings -> Switch to WebGL platform and build
3. Run the WebGL project
4. Enter a capital B in the input field
Aspected: Both words are lightened green
Actual: Lover case b is being ignored
Reproducible with: 2017.4.22f1, 2018.3.7f1, 2019.1.0b5, 2019.2.0a7
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Crash on RaiseException when opening a specific project
- DownloadHandlerScript.CompleteContent is called twice when building for WebGL
- Scene view has Y coordinates of the Screen Position node flipped when some of the URP features are disabled
- Volumetric fog shader variants are missing from build when "Strict Shader Variant Matching" is disabled
- Unnecessary modifications clutter the Scene when using a RectTransform driven by a LayoutGroup in a Prefab
Resolution Note (2019.2.X):
This occurs because embedded resources are disabled by default for WebGL builds. Use the following editor script to enable embedded resources:
using UnityEditor;
public class WebGLEditorScript
{
[MenuItem("WebGL/Enable Embedded Resources")]
public static void EnableErrorMessageTesting()
{
PlayerSettings.SetPropertyBool("useEmbeddedResources", true, BuildTargetGroup.WebGL);
}
}