chromium/third_party/blink/renderer/modules/canvas/imagebitmap/worker_create_image_bitmap.idl

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

[
    ImplementedAs=ImageBitmapFactories
] partial interface WorkerGlobalScope {
  // https://html.spec.whatwg.org/#windoworworkerglobalscope
  [CallWith=ScriptState, RaisesException] Promise<ImageBitmap> createImageBitmap(
      ImageBitmapSource imageBitmap, optional ImageBitmapOptions options = {});
  [CallWith=ScriptState, RaisesException] Promise<ImageBitmap> createImageBitmap(
      ImageBitmapSource imageBitmap, long sx, long sy, long sw, long sh, optional ImageBitmapOptions options = {});
};