Fixed the issue and the tests that were failing before, but it interfered with two other tests. I think I handled them, I’d like your opinion on it.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Please ask review one of third_party/blink/renderer/core/html/OWNERS.
// http://www.whatwg.org/specs/web-apps/current-work/#floating-point-numbersSo the URL should be updated to https://html.spec.whatwg.org/C/#rules-for-parsing-floating-point-number-values , right?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Please ask review one of third_party/blink/renderer/core/html/OWNERS.
Done
So the URL should be updated to https://html.spec.whatwg.org/C/#rules-for-parsing-floating-point-number-values , right?
I don't think we need to update it. The spec already mentions in the parsing algorithm that if a '+' appears before a number (e.g. "+100") [see point 8 here](https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#rules-for-parsing-floating-point-number-values), it should be skipped and the number should still be parsed. Firefox follows the same behavior as well:
https://searchfox.org/firefox-main/source/mozglue/misc/decimal/Decimal.h#234
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |