| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <!-- Issue 49 from the Native Client security contest --> | 2 <!-- Issue 49 from the Native Client security contest --> |
| 3 <head> | 3 <head> |
| 4 <title>Native Client Security Contest -- Issue 49</title> | 4 <title>Native Client Security Contest -- Issue 49</title> |
| 5 | 5 |
| 6 <script type="text/javascript"> | 6 <script type="text/javascript"> |
| 7 | 7 |
| 8 var nacl_elt; | 8 var nacl_elt; |
| 9 | 9 |
| 10 // Ensure the Native Client module is loaded. | 10 // Ensure the Native Client module is loaded. |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 <h1>Native Client Security Contest -- Issue 49</h1> | 40 <h1>Native Client Security Contest -- Issue 49</h1> |
| 41 <p> | 41 <p> |
| 42 Open a Native Client multimedia demo with an invalid width and height. | 42 Open a Native Client multimedia demo with an invalid width and height. |
| 43 </p> | 43 </p> |
| 44 <p> | 44 <p> |
| 45 <b>Note:</b> For the purposes of contest issue #49, there might | 45 <b>Note:</b> For the purposes of contest issue #49, there might |
| 46 be a very large region below, but your browser should continue to | 46 be a very large region below, but your browser should continue to |
| 47 operate properly. | 47 operate properly. |
| 48 </p> | 48 </p> |
| 49 <embed id="embed1" src="voronoi.nexe" type="application/x-nacl-srpc" width=3
2000 height=32000> | 49 <embed id="embed1" src="voronoi.nexe" type="application/x-nacl" |
| 50 width=32000 height=32000> |
| 50 <br> | 51 <br> |
| 51 <script> | 52 <script> |
| 52 var embed1 = document.getElementById('embed1'); | 53 var embed1 = document.getElementById('embed1'); |
| 53 </script> | 54 </script> |
| 54 | 55 |
| 55 </body> | 56 </body> |
| 56 </html> | 57 </html> |
| OLD | NEW |