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
- Shadows are not visible in Player when using DX12 with Forward+ or Deferred+ rendering in URP
- Rendering Debugger Playmode debug UI scrolling is jittery when using click and drag to scroll
- Frame Debugger Target Selection Search Results window becomes too tiny to even see the default “Editor” selection when there are no search results
- Async method in Play Mode being aborted when calling `new System.Windows.Forms.Form`
- Animator window Eye button on click visual does not cover the whole area of the button when clicked
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);
}
}