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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/meta/meta-img-src.html

Issue 2695813009: Import wpt@503f5b5f78ec4e87d144f78609f363f0ed0ea8db (Closed)
Patch Set: Skip some tests Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3
4 <head>
5 <meta id="meta_csp" http-equiv="Content-Security-Policy" content="img-src 'n one'">
6 <title>meta-img-src</title>
7 <script src="/resources/testharness.js"></script>
8 <script src="/resources/testharnessreport.js"></script>
9 <script src='../support/logTest.sub.js?logs=["PASS","TEST COMPLETE"]'></scri pt>
10 </head>
11
12 <body>
13 <p>Test passes if the image is blocked.</p>
14
15 <script>
16 function testImgSrc() {
17 var img = document.createElement('img');
18 img.src = '../support/fail.png';
19 img.onerror = function() {
20 log("PASS");
21 };
22 img.onload = function() {
23 log("FAIL");
24 };
25 document.body.appendChild(img);
26 }
27 testImgSrc();
28 log("TEST COMPLETE");
29 </script>
30 <div id="log"></div>
31 </body>
32
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698