| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script> | 2 <script> |
| 3 // Save the list of property names of the global object just after page load. | 3 // Save the list of property names of the global object just after page load. |
| 4 var propertyNamesInGlobal = Object.getOwnPropertyNames(this); | 4 var propertyNamesInGlobal = Object.getOwnPropertyNames(this); |
| 5 </script> | 5 </script> |
| 6 <script src="../resources/js-test.js"></script> | 6 <script src="../resources/js-test.js"></script> |
| 7 <script src="resources/global-interface-listing.js"></script> | 7 <script src="../resources/global-interface-listing.js"></script> |
| 8 <script> | 8 <script> |
| 9 description("This test documents all interface attributes and methods on the glo
bal window object and element instances."); | 9 description("This test documents all interface attributes and methods on the glo
bal window object and element instances."); |
| 10 globalInterfaceListing(this, propertyNamesInGlobal, debug); |
| 10 </script> | 11 </script> |
| OLD | NEW |