| Commit-Queue | +1 |
converter: "ConvertHangingPunctuation",I was using ConvertFlags<blink::HangingPunctuation>, but this template breaks StylePropertyMapTest.CSSKeywordValuesTest..
I wanted to fix the template by using `if ( To<CSSValueList>) {} else {}`, does it make sense to you?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
converter: "ConvertHangingPunctuation",I was using ConvertFlags<blink::HangingPunctuation>, but this template breaks StylePropertyMapTest.CSSKeywordValuesTest..
I wanted to fix the template by using `if ( To<CSSValueList>) {} else {}`, does it make sense to you?
I think it's better to crash (or DCHECK) when the code is not supposed to run in the real world. That said, using `ConvertFlags` looks better.
I'm not sure how the test fails, but is it possible to fix the test for this property?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
converter: "ConvertHangingPunctuation",Koji IshiiI was using ConvertFlags<blink::HangingPunctuation>, but this template breaks StylePropertyMapTest.CSSKeywordValuesTest..
I wanted to fix the template by using `if ( To<CSSValueList>) {} else {}`, does it make sense to you?
I think it's better to crash (or DCHECK) when the code is not supposed to run in the real world. That said, using `ConvertFlags` looks better.
I'm not sure how the test fails, but is it possible to fix the test for this property?
Reading the comments in `CSSKeywordValuesTest`, since it says "DO NOT ADD ADDITIONAL PROPERTIES BELOW", maybe the change is missing some necessary code for Typed OM.
The blame told me that the test was added quite recently, 2025-11-18 by @futhark. You could ask him for advise.