We generally don't directly postpone GCs in that we forbid them to run in e.g. BeginMainFrame. (There's exceptions but they often make the situation worse as memory needs to be processed eventually.)
That said, we do adjust heuristics and maybe there's something off in this particular case.
In the screenshot below I also see that the GC has already been started before BeginMainFrame and we are not keeping up with marking which is why we mark on allocation of a new object. Large phases of "MarkProcessBailOutObjects" indicate we are dealing with types that we cannot process concurrently. Maybe there's something we can do there as well which would improve this scenario.
Can you file a bug against Blink>GarbageCollection? Ideally with a repro and/or trace :)
Thanks, -Michael