presentation-attribute.html (1368B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS integration - image from presentation attribute</title> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <script src="/common/utils.js"></script> 8 <!-- Common global functions for referrer-policy tests. --> 9 <script src="/common/security-features/resources/common.sub.js"></script> 10 <meta name="referrer" content="origin"> 11 </head> 12 <body> 13 <p>Check that resources from presentation attributes are loaded with 14 the referrer and referrer policy from the document.</p> 15 16 <script> 17 promise_test(function(css_test) { 18 var id = token(); 19 var css_url = location.protocol + "//www1." + location.hostname + ":" + location.port + "/common/security-features/subresource/image.py" + "?id=" + id; 20 var img_url = css_url + "&report-headers"; 21 22 document.body.background = css_url; 23 return timeoutPromise(css_test, 1000) 24 .then(() => requestViaXhr(img_url)) 25 .then(function(message) { 26 assert_own_property(message, "headers"); 27 assert_own_property(message, "referrer"); 28 assert_equals(message.referrer, location.origin + "/"); 29 }); 30 }, "Image from presentation attributes."); 31 </script> 32 33 <div id="log"></div> 34 </body> 35 </html>