Issue metadata
Sign in to add a comment
|
PaintWorklet: Create at least two PaintWorkletGlobalScopes for a document |
||||||||||||||||||||||||
Issue description
bool PaintWorklet::NeedsToCreateGlobalScope() {
// "The user agent must have, and select from at least two
// PaintWorkletGlobalScopes in the worklet's WorkletGlobalScopes list, unless
// the user agent is under memory constraints."
// https://drafts.css-houdini.org/css-paint-api-1/#drawing-an-image
// TODO(nhiroki): In the current impl, we create only one global scope. We
// should create at least two global scopes as the spec.
return !GetNumberOfGlobalScopes();
}
,
Jul 3 2017
Assigning to Ian for further triage.
,
Jul 4 2017
|
|||||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||||
Comment 1 by nhiroki@chromium.org
, Jul 3 2017