Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix case when dashed/dotted borders do not work with overflow: hidden (…
…facebook#48414) Summary: Was looking into facebook#48078 which was brought to my attention due to my recent refactorings of iOS Views, especially around how overflow: hidden works. This bug was not brought on by my changes but seems to be a lingering Fabric bug (iirc this bool was not changed when I refactored things) Anyway, dotted/dashed borders did not work with overflow: hidden. The reason why is we use core animation borders in this case which is incorrect as CA cannot do these types of borders. So I added a check to make sure that the borders are solid as well if we want to use CA to draw them. Changelog: [iOS] [Fixed] - Dashed & dotted borders now work with overflow: hidden Reviewed By: mdvacca Differential Revision: D67720492
- Loading branch information