Index: Source/modules/websockets/WebSocket.idl |
diff --git a/Source/modules/websockets/WebSocket.idl b/Source/modules/websockets/WebSocket.idl |
index 4c7ee2d6d41c41a015aa91bae66e392488226638..47a8c2ed46a106866068d957bfd9b335e8f9e87f 100644 |
--- a/Source/modules/websockets/WebSocket.idl |
+++ b/Source/modules/websockets/WebSocket.idl |
@@ -58,10 +58,8 @@ enum BinaryType { "blob", "arraybuffer" }; |
attribute EventHandler onopen; |
attribute EventHandler onerror; |
attribute EventHandler onclose; |
- // FIXME: Per spec and impl, should never return undefined. Verify and remove extended attribute. |
- [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString extensions; |
- // FIXME: Per spec and impl, should never return undefined. Verify and remove extended attribute. |
- [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString protocol; |
+ readonly attribute DOMString extensions; |
+ readonly attribute DOMString protocol; |
[RaisesException] void close([Clamp] optional unsigned short code, optional USVString reason); |
// messaging |