OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 |
| 4 <head> |
| 5 <!-- Programmatically converted from a WebKit Reftest, please forgive result
ing idiosyncracies.--> |
| 6 <title>connect-src-eventsource-blocked</title> |
| 7 <script src="/resources/testharness.js"></script> |
| 8 <script src="/resources/testharnessreport.js"></script> |
| 9 <script src='../support/logTest.sub.js?logs=["Pass"]'></script> |
| 10 <script src="../support/alertAssert.sub.js?alerts=[]"></script> |
| 11 <!-- enforcing policy: |
| 12 connect-src 'self'; script-src 'self' 'unsafe-inline'; |
| 13 --> |
| 14 </head> |
| 15 |
| 16 <body> |
| 17 <script> |
| 18 try { |
| 19 var es = new EventSource("http://www1.{{host}}:{{ports[http][0]}}/co
ntent-security-policy/blink-contrib/resources/simple-event-stream"); |
| 20 // Firefox doesn't throw an exception and takes some time to close a
sync |
| 21 if (es.readyState == EventSource.CONNECTING) { |
| 22 setTimeout( function() { |
| 23 es.readyState != EventSource.CLOSED ? log("Fail") : log("Pas
s"); |
| 24 }, 2); |
| 25 } else if (es.readyState == EventSource.CLOSED) { |
| 26 log("Pass"); |
| 27 } else { |
| 28 log("Fail"); |
| 29 } |
| 30 |
| 31 } catch (e) { |
| 32 log("Pass"); |
| 33 } |
| 34 |
| 35 </script> |
| 36 <div id="log"></div> |
| 37 <script async defer src="../support/checkReport.sub.js?reportExists=true&
;reportField=violated-directive&reportValue=connect-src%20'self'">
</script> |
| 38 </body> |
| 39 |
| 40 </html> |
OLD | NEW |