| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta http-equiv="Content-Security-Policy" content="default-src *; script-src 'nonce-test'"> |
| <script nonce="test"> |
| if (window.testRunner) |
| testRunner.dumpAsText(); |
| </script> |
| </head> |
| <body> |
| <pre id="console"></pre> |
| <script nonce="test"> |
| function log(message) |
| { |
| document.getElementById("console").appendChild(document.createTextNode(message + "\n")); |
| } |
| |
| try { |
| new WebSocket("ws://127.0.0.1:8880/websocket/tests/hybi/echo"); |
| log("PASS did create WebSocket."); |
| } catch(e) { |
| log("FAIL did not create WebSocket."); |
| } |
| </script> |
| </body> |
| </html> |