navigate-child-src-about-blank.html (538B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>Set the src attribute to about:blank and check referrer</title> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <div id=log></div> 7 <iframe></iframe> 8 <script> 9 setup({ 10 single_test: true 11 }); 12 onload = function() { 13 var fr = document.querySelector("iframe") 14 fr.src = "about:blank" 15 fr.onload = function() { 16 assert_equals(fr.contentDocument.referrer, document.location.origin + '/') 17 done() 18 } 19 } 20 </script>