Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: third_party/WebKit/LayoutTests/webexposed/global-interface-listing.html

Issue 2889423003: Unify webexposed/global-interface-listing scripts (Closed)
Patch Set: Rebased Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698