| Index: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/eval-blocked-and-sends-report.sub.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/eval-blocked-and-sends-report.sub.html b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/eval-blocked-and-sends-report.sub.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..599b01c3138184bfb1844b7012d005954d46f6a9
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/eval-blocked-and-sends-report.sub.html
|
| @@ -0,0 +1,29 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +
|
| +<head>
|
| + <!-- Programmatically converted from a WebKit Reftest, please forgive resulting idiosyncracies.-->
|
| + <title>eval-blocked-and-sends-report</title>
|
| + <script src="/resources/testharness.js"></script>
|
| + <script src="/resources/testharnessreport.js"></script>
|
| + <script src='../support/logTest.sub.js?logs=["PASS: eval() blocked."]'></script>
|
| + <script src="../support/alertAssert.sub.js?alerts=[]"></script>
|
| + <!-- enforcing policy:
|
| +script-src 'self' 'unsafe-inline' 'self'; report-uri resources/save-report.php?test=eval-blocked-and-sends-report.html; connect-src 'self';
|
| +-->
|
| +</head>
|
| +
|
| +<body>
|
| + <script>
|
| + try {
|
| + eval("alert_assert('FAIL')");
|
| + } catch (e) {
|
| + log('PASS: eval() blocked.');
|
| + }
|
| +
|
| + </script>
|
| + <div id="log"></div>
|
| + <script async defer src="../support/checkReport.sub.js?reportExists=true&reportField=violated-directive&reportValue=script-src%20'self'%20'unsafe-inline'"></script>
|
| +</body>
|
| +
|
| +</html>
|
|
|