diff options
Diffstat (limited to 'Source/WebCore/html/DOMURL.cpp')
-rw-r--r-- | Source/WebCore/html/DOMURL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/html/DOMURL.cpp b/Source/WebCore/html/DOMURL.cpp index 37c6520e6..4f9780dcd 100644 --- a/Source/WebCore/html/DOMURL.cpp +++ b/Source/WebCore/html/DOMURL.cpp @@ -78,7 +78,7 @@ String DOMURL::createObjectURL(ScriptExecutionContext* scriptExecutionContext, B if (publicURL.isEmpty()) return String(); - ThreadableBlobRegistry::registerBlobURL(publicURL, blob->url()); + ThreadableBlobRegistry::registerBlobURL(scriptExecutionContext->securityOrigin(), publicURL, blob->url()); scriptExecutionContext->publicURLManager().blobURLs().add(publicURL.string()); return publicURL.string(); |