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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scripthash-handler-blocked.html

Issue 1923273002: CSP: Allow hashed inline event handlers only with 'unsafe-hashed-attributes' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scripthash-handler-blocked.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scripthash-handler-allowed.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scripthash-handler-blocked.html
similarity index 59%
copy from third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scripthash-handler-allowed.html
copy to third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scripthash-handler-blocked.html
index b73cc17b1ab5e7603f8f12b3c9ae76ee462c24c1..b5e21d1214b2bffe64b734f7a5d155756fe7f887 100644
--- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scripthash-handler-allowed.html
+++ b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scripthash-handler-blocked.html
@@ -5,29 +5,20 @@
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(function (t) {
- window.expectSuccess = t.step_func_done(function (el) {
- assert_equals(el, document.querySelector('#pass'));
- });
+ window.expectSuccess = t.unreached_func("Handler should not execute.");
window.addEventListener('load', t.step_func(function () {
document.querySelector('#pass').click();
}));
- }, 'Inline event handlers whitelisted by the policy should fire.');
-
- async_test(function (t) {
- window.expectFailure = t.unreached_func("Handler should not execute.");
document.addEventListener('securitypolicyviolation', t.step_func_done(function (e) {
assert_equals(e.target, document);
}));
- window.addEventListener('load', t.step_func(function () {
- document.querySelector('#fail').click();
- }));
- }, 'Inline event handlers not whitelisted by the policy should generate error events.');
+ }, 'Inline event handlers whitelisted by the policy should not fire, as \'unsafe-hash-attributes\' is not present.');
</script>
<meta http-equiv="Content-Security-Policy" content="script-src 'sha256-nhtYaXCssBJTThiDLYewspQYue9tisulEwJ3nTJKcMI='">
</head>
<body>
- <button id="pass" onclick="expectSuccess(this)"></button>
+ <button id="pass" onclick="expectFailure(this)"></button>
<button id="fail" onclick="expectFailure(this)"></button>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698