Firefox Tomorrow

web api instance method

StorageAccessHandle: createObjectURL() method

View on MDN ↗

[!NOTE] See createObjectURL() to understand usage.

Syntax

createObjectURL(object)

Parameters

Return value

A string containing an unpartitioned object URL that can be used to reference the contents of the specified source object.

Exceptions

  • SecurityError DomException
    • : Thrown if access was not granted.

See createObjectURL()

Examples

document.requestStorageAccess({ createObjectURL: true }).then(
  (handle) => {
    console.log("createObjectURL access granted");
    handle.createObjectURL(new Blob(["foo"]));
  },
  () => {
    console.log("createObjectURL access denied");
  },
);

[!NOTE] See Using the Storage Access API for a more complete example.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also