blob: b8da6b5ee8c9b320fa902b4f9c54ab96a9f3f82b [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script type="text/javascript">
description(".url attribute should work, previously supported .URL should not");
var url = "ws://127.0.0.1:8880/echo";
var ws = new WebSocket(url);
shouldBeEqualToString("ws.url", url);
shouldBeUndefined("ws.URL");
</script>
</body>
</html>