(ctx context.Context, o *options.Options, args []string)
| 519 | } |
| 520 | |
| 521 | func (p *Parser) applyMaxAnimationFrameResolutionOption(ctx context.Context, o *options.Options, args []string) error { |
| 522 | if err := p.IsSecurityOptionsAllowed(ctx); err != nil { |
| 523 | return err |
| 524 | } |
| 525 | |
| 526 | return p.parseResolution(ctx, o, keys.MaxAnimationFrameResolution, args...) |
| 527 | } |
| 528 | |
| 529 | func (p *Parser) applyMaxResultDimensionOption( |
| 530 | ctx context.Context, |
no test coverage detected