| Index: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/generic/generic-0_1-img-src.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/generic/generic-0_1-img-src.html b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/generic/generic-0_1-img-src.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c3778f81604d4961e264315d29706579a4180ccb
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/generic/generic-0_1-img-src.html
|
| @@ -0,0 +1,35 @@
|
| +<!DOCTYPE HTML>
|
| +<html>
|
| +<head>
|
| + <title>default-src should cascade to img-src directive</title>
|
| + <script src='/resources/testharness.js'></script>
|
| + <script src='/resources/testharnessreport.js'></script>
|
| + <script src='../support/siblingPath.js'></script>
|
| +</head>
|
| +<body>
|
| + <h1>default-src should cascade to img-src directive</h1>
|
| + <div id='log'></div>
|
| +
|
| + <script>
|
| + var imgsrc = async_test("Verify cascading of default-src to img-src policy");
|
| + var onerrorFired = false;
|
| + </script>
|
| +
|
| + <img id='imgfail' src=''
|
| + onload='imgsrc.step(function() { assert_unreached("Image load was not blocked."); });'
|
| + onerror='onerrorFired = true;'>
|
| + <img src='../support/pass.png'
|
| + onload='imgsrc.step(function() { assert_true(true, "Image load was blocked."); });'>
|
| +
|
| + <script>
|
| + document.getElementById('imgfail').src = buildSiblingPath('www1', '../support/fail.png');
|
| + onload = function() {
|
| + imgsrc.step(function() { assert_true(onerrorFired, "onerror handler for blocked img didn't fire");});
|
| + imgsrc.done();
|
| + }
|
| + </script>
|
| +
|
| + <script async defer src='../support/checkReport.sub.js?reportField=violated-directive&reportValue=default-src%20%27self%27%20%27unsafe-inline%27'></script>
|
| +
|
| +</body>
|
| +</html>
|
|
|