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 <embed height=256 width=256 type="application/x-nacl-srpc" | 67 <embed height=256 width=256 type="application/x-nacl" |
68 id="nacl" /> | 68 id="nacl" /> |
69 </td> | 69 </td> |
70 <td> | 70 <td> |
71 <table summary="ARGB settings for controlling the color of the box"> | 71 <table summary="ARGB settings for controlling the color of the box"> |
72 <tr> | 72 <tr> |
73 <td align=right> Alpha </td> | 73 <td align=right> Alpha </td> |
74 <td> | 74 <td> |
75 <input type="text" id="al" /> | 75 <input type="text" id="al" /> |
76 </td> | 76 </td> |
77 </tr> | 77 </tr> |
(...skipping 21 matching lines...) Expand all Loading... |
99 <tr> | 99 <tr> |
100 <td> | 100 <td> |
101 <button type="button" onclick="changeColor()"> | 101 <button type="button" onclick="changeColor()"> |
102 Change Color | 102 Change Color |
103 </button> | 103 </button> |
104 </td> | 104 </td> |
105 </tr> | 105 </tr> |
106 </table> | 106 </table> |
107 </body> | 107 </body> |
108 </html> | 108 </html> |
OLD | NEW |