README.md: try browser tests in table.
This commit is contained in:
parent
f5769b00ea
commit
c54a65ba09
96
README.md
96
README.md
|
@ -81,54 +81,60 @@ There a few reasons why a proxy is required:
|
|||
|
||||
<table>
|
||||
<tr>
|
||||
<th>
|
||||
OS
|
||||
</th>
|
||||
<th>
|
||||
Browser
|
||||
</th>
|
||||
<th>
|
||||
Status
|
||||
</th>
|
||||
</tr>
|
||||
<td>
|
||||
Ubuntu 9.04
|
||||
</td>
|
||||
<td>
|
||||
Chrome 5.0.375.29
|
||||
</td>
|
||||
<td bgcolor="#e0ffe0">
|
||||
Works great
|
||||
</td>
|
||||
<th> OS </th> <th> Browser </th>
|
||||
<th> Status </th>
|
||||
<th> Notes </th>
|
||||
</tr> <tr>
|
||||
<td> Ubuntu 9.04 </td> <td> Chrome 5.0.375.29 </td>
|
||||
<td style="background-color: #e0ffe0;"> Works great </td>
|
||||
<td> Very fast. Native WebSockets. </td>
|
||||
</tr> <tr>
|
||||
<td> Ubuntu 9.04 </td> <td> Firefox 3.5 </td>
|
||||
<td style="background-color: #e0ffe0;"> Works well </td>
|
||||
<td> Large full-color images are somewhat slow due to
|
||||
web-socket-js overhead. </td>
|
||||
</tr> <tr>
|
||||
<td> Ubuntu 9.04 </td> <td> Opera 10.60 </td>
|
||||
<td style="background-color: #ffffe0;"> Works </td>
|
||||
<td> Rendering performance is between firefox 3.5 and
|
||||
Chrome. However web-socket-js interaction causes overall
|
||||
performance to be lower than firefox 3.5 and causes
|
||||
occasional hangs. </td>
|
||||
</tr> <tr>
|
||||
<td> Ubuntu 9.04 </td> <td> Arora 0.5 </td>
|
||||
<td style="background-color: #ffffe0;"> Works </td>
|
||||
<td> Broken putImageData so large full-color images
|
||||
are slow. Uses web-socket-js. </td>
|
||||
</tr> <tr>
|
||||
<td> Ubuntu 9.04 </td> <td> Konqueror 4.2.2 </td>
|
||||
<td style="background-color: #ffe0e0;"> Broken </td>
|
||||
<td> web-socket-js never loads </td>
|
||||
</tr> <tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr> <tr>
|
||||
<td> Windows XP </td> <td> Chrome 5.0.375.99 </td>
|
||||
<td style="background-color: #e0ffe0;"> Works great </td>
|
||||
<td> Very fast. Native WebSockets. </td>
|
||||
</tr> <tr>
|
||||
<td> Windows XP </td> <td> Firefox 3.0.19 </td>
|
||||
<td style="background-color: #e0ffe0;"> Works well </td>
|
||||
<td> Some overhead from web-socket-js. </td>
|
||||
</tr> <tr>
|
||||
<td> Windows XP </td> <td> Safari 5.0 </td>
|
||||
<td style="background-color: #ffffe0;"> Works </td>
|
||||
<td> Fast. Native WebSockets. However 'wss://'
|
||||
(SSL/TLS) does not work because client sends strange
|
||||
handshake. </td>
|
||||
</tr> <tr>
|
||||
<td> Windows XP </td> <td> Internet Explorer 6, 7, 8</td>
|
||||
<td style="background-color: #ffe0e0;"> Non-starter </td>
|
||||
<td> No basic Canvas support. Javascript painfully slow. </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
* Chrome 5.0.375.29: Works great. Very fast. Native WebSockets.
|
||||
|
||||
* Firefox 3.5: Works well. Large full-color images are slow mostly due
|
||||
to web-socket-js overhead.
|
||||
|
||||
* Opera 10.60: Works. Rendering performance is between firefox 3.5 and
|
||||
Chrome. However web-socket-js interaction causes overall performance
|
||||
to be lower than firefox 3.5 and causes occasional hangs.
|
||||
|
||||
* Arora 0.50: Works. Broken putImageData so large full-color images
|
||||
are slow. Uses web-socket-js.
|
||||
|
||||
* Konqueror 4.2.2: Broken: web-socket-js never loads.
|
||||
|
||||
|
||||
#### Windows (XP)
|
||||
|
||||
* Chrome 5.0.375.99: Works great. Very fast. Native WebSockets.
|
||||
* Firefox 3.0.19: Works well. Some overhead from web-socket-js.
|
||||
* Safari 5.0: Works. Fast. Native WebSockets support. However 'wss://'
|
||||
(SSL/TLS) does not work because client sends a strange handshake.
|
||||
|
||||
* Internet Explorer 6, 7 and 8: Non-starter: not even basic Canvas
|
||||
support.
|
||||
|
||||
|
||||
|
||||
### Integration
|
||||
|
||||
|
|
Loading…
Reference in New Issue