| Summary: | WebSocket readyState should not throw an exception ever. | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Brandon Andrews <sirisian> |
| Component: | WebCore Misc. | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED INVALID | ||
| Severity: | Normal | CC: | ap |
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | All | ||
| OS: | All | ||
|
Description
Brandon Andrews
2014-10-17 12:48:31 PDT
Could you please provide a test case? Looking at the readState attribute implementation, there is no way it could possibly raise an exception on getting. It doesn't even have a way to return an exception code:
WebSocket::State WebSocket::readyState() const
{
return m_state;
}
Please feel free to re-open with a test case. |