This shows you the differences between two versions of the page.
Both sides previous revision
Previous revision
Next revision
|
Previous revision
|
zac [2010/05/10 17:00] aspectscript |
zac [2010/05/10 18:49] (current) aspectscript |
| |
======= Try ZAC ======= | ======= Try ZAC ======= |
Please visit [[http://www.dcc.uchile.cl/~rtoledo/js/zac/|this page]] to view ZAC in action. You can also interactively try ZAC in this page. Just write some JavaScript code, choose the restrictions you want to enforce and press “Run it!”. The code will be automatically transformed and executed in the interal frame below. The HTML code on the second textarea is also appended to the resulting page, so the JavaScript code can access it. | Please visit [[http://www.dcc.uchile.cl/~rtoledo/js/zac/|this page]] to view ZAC in action. You can also interactively try ZAC in this page. Just write some JavaScript code, choose the restrictions you want to enforce, and press “Run it!”. The code will be automatically transformed and executed in the interal frame below. The HTML code on the second textarea is also appended to the resulting page, so the JavaScript code can access it. |
| |
In the sample code below, alert is called using four different alternatives: (1) direct call, (2) indirect call (using delegation), (3) indirect call (using eval), and (4), scheduled invocation. The four attempts end with an exeption if the restriction R_ALERT is active. Please notice that an exception is thrown when the first alert is executed, so you will have to incrementally comment the calls to alert in order to test the following ones. | In the sample code below, the alert function is called in four different ways: (1) a direct call, (2) an indirect call (using delegation), (3) another indirect call (using eval), and (4), a scheduled invocation. The four attempts end with an exeption if the restriction R_ALERT is active. Please notice that an exception is thrown when the first alert is about to be executed, so you will have to incrementally comment the calls to alert in order to test the remaining ones. |
| |
(The exceptions thrown by ZAC can be observed in the "Error Console" of Firefox, or in the console of <a href="http://getfirebug.com/">Firebug</a> if installed.) | (The exceptions thrown by ZAC can be observed in the "Error Console" of Firefox, or in the console of [[http://getfirebug.com/|Firebug]] if installed.) |
| |
<html> | <html> |