| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 3 <html> | 3 <html> |
| 4 <!-- Copyright 2008 Google Inc. All rights reserved. --> | 4 <!-- Copyright 2008 Google Inc. All rights reserved. --> |
| 5 <head> | 5 <head> |
| 6 <title> SRPC Display Shared Memory Example </title> | 6 <title> SRPC Display Shared Memory Example </title> |
| 7 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> | 7 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> |
| 8 <META HTTP-EQUIV="Expires" CONTENT="-1"> | 8 <META HTTP-EQUIV="Expires" CONTENT="-1"> |
| 9 <script type='application/x-javascript'> | 9 <script type='application/x-javascript'> |
| 10 //<![CDATA[ | 10 //<![CDATA[ |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 setColor(color); | 57 setColor(color); |
| 58 } | 58 } |
| 59 //]]> | 59 //]]> |
| 60 </script> | 60 </script> |
| 61 </head> | 61 </head> |
| 62 <body onload="Init();"> | 62 <body onload="Init();"> |
| 63 <h1> SRPC Display Shared Memory Example </h1> | 63 <h1> SRPC Display Shared Memory Example </h1> |
| 64 <table summary="A colored box with ARGB inputs"> | 64 <table summary="A colored box with ARGB inputs"> |
| 65 <tr> | 65 <tr> |
| 66 <td> | 66 <td> |
| 67 FIXME(adonovan): is this correct? no src? |
| 67 <embed height=256 width=256 type="application/x-nacl-srpc" | 68 <embed height=256 width=256 type="application/x-nacl-srpc" |
| 68 id="nacl" /> | 69 id="nacl" /> |
| 69 </td> | 70 </td> |
| 70 <td> | 71 <td> |
| 71 <table summary="ARGB settings for controlling the color of the box"> | 72 <table summary="ARGB settings for controlling the color of the box"> |
| 72 <tr> | 73 <tr> |
| 73 <td align=right> Alpha </td> | 74 <td align=right> Alpha </td> |
| 74 <td> | 75 <td> |
| 75 <input type="text" id="al" /> | 76 <input type="text" id="al" /> |
| 76 </td> | 77 </td> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 99 <tr> | 100 <tr> |
| 100 <td> | 101 <td> |
| 101 <button type="button" onclick="changeColor()"> | 102 <button type="button" onclick="changeColor()"> |
| 102 Change Color | 103 Change Color |
| 103 </button> | 104 </button> |
| 104 </td> | 105 </td> |
| 105 </tr> | 106 </tr> |
| 106 </table> | 107 </table> |
| 107 </body> | 108 </body> |
| 108 </html> | 109 </html> |
| OLD | NEW |