Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(939)

Unified Diff: third_party/WebKit/LayoutTests/csspaint/resources/test-runner-invalidation-logging.js

Issue 2872453002: Worklet: Specify JavaScript MIME type for Worklets created from Blob URL (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/csspaint/resources/test-runner-paint-worklet.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/csspaint/resources/test-runner-invalidation-logging.js
diff --git a/third_party/WebKit/LayoutTests/csspaint/resources/test-runner-invalidation-logging.js b/third_party/WebKit/LayoutTests/csspaint/resources/test-runner-invalidation-logging.js
index f13983446b0a1a7cd95465b8ad9f1b59b52d5330..06110c9f5c339f0e04bfa2d324f598b14a0b79d6 100644
--- a/third_party/WebKit/LayoutTests/csspaint/resources/test-runner-invalidation-logging.js
+++ b/third_party/WebKit/LayoutTests/csspaint/resources/test-runner-invalidation-logging.js
@@ -32,7 +32,7 @@ function testRunnerInvalidationLogging(imageType, tests) {
}
`;
- paintWorklet.addModule(URL.createObjectURL(new Blob([workletCode]))).then(function() {
+ paintWorklet.addModule(URL.createObjectURL(new Blob([workletCode], {type: 'text/javascript'}))).then(function() {
for (let i = 0; i < tests.length; i++) {
tests[i].paintName = 'paint-' + i;
registerTest(imageType, tests[i]);
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/csspaint/resources/test-runner-paint-worklet.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698