-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CSP] Added new policy violation source: wasm-eval
This extends the suite of policy violation sources to include a WebAssembly specific source: wasm-eval. This has also been reflected in the PR (w3c/webappsec-csp#293 (review)) against the CSP spec. Added test for proper security violation event of the right form. Bug: 948834 Change-Id: I0b76fd725136b7ddda92e629f147f5ba77c50ffb
- Loading branch information
1 parent
1cc2d8c
commit 727ac19
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
content-security-policy/wasm-unsafe-eval/script-src-spv-asynch.any.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// META: global=window,worker | ||
let code = new Uint8Array([0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0]); | ||
async_test(t => { | ||
self.addEventListener('securitypolicyviolation', e => { | ||
t.step(function(){ | ||
assert_equals(e.violatedDirective, "script-src"); | ||
assert_equals(e.originalPolicy, "default-src 'self' 'unsafe-inline'") | ||
assert_equals(e.blockedURI, "wasm-eval") | ||
}) | ||
t.done(); | ||
}); | ||
}, "Securitypolicyviolation event looks like it should"); | ||
|
||
promise_test(t => { | ||
return promise_rejects_js( | ||
t, WebAssembly.CompileError, | ||
WebAssembly.instantiate(code)); | ||
}); | ||
|
||
|
||
|
1 change: 1 addition & 0 deletions
1
content-security-policy/wasm-unsafe-eval/script-src-spv-asynch.any.js.headers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Content-Security-Policy: default-src 'self' 'unsafe-inline' |