| OLD | NEW |
| 1 <html><head> | 1 <html><head> |
| 2 <script> | 2 <script> |
| 3 var expectedClicks = []; | 3 var expectedClicks = []; |
| 4 var clicks = []; | 4 var clicks = []; |
| 5 | 5 |
| 6 var height = 100; | 6 var height = 100; |
| 7 var width = 100; | 7 var width = 100; |
| 8 var items = 0; | 8 var items = 0; |
| 9 | 9 |
| 10 function makePluginElement() | 10 function makePluginElement() |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 plugins. To test interactively, click over the buttons on the | 254 plugins. To test interactively, click over the buttons on the |
| 255 squares. You should not be able to reach the red squares' | 255 squares. You should not be able to reach the red squares' |
| 256 buttons.</p> | 256 buttons.</p> |
| 257 | 257 |
| 258 <p>Prints "SUCCESS" on success, "FAILURE" on failure.</p> | 258 <p>Prints "SUCCESS" on success, "FAILURE" on failure.</p> |
| 259 <div id=output>NONE</div> | 259 <div id=output>NONE</div> |
| 260 <div id="container" style="position: relative;"></div> | 260 <div id="container" style="position: relative;"></div> |
| 261 | 261 |
| 262 </body> | 262 </body> |
| 263 </html> | 263 </html> |
| OLD | NEW |