Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / webui / identity_internals_ui_browsertest.js
index 67a6cb6..765e892 100644 (file)
@@ -31,7 +31,7 @@ BaseIdentityInternalsWebUITest.prototype = {
 
   /**
    * Gets all of the token entries on the page.
-   * return {Element[]} Elements displaying token information.
+   * @return {!NodeList} Elements displaying token information.
    */
   getTokens: function() {
     return document.querySelectorAll('#token-list > div');
@@ -234,7 +234,7 @@ function IdentityInternalsWebUITestAsync() {}
 IdentityInternalsWebUITestAsync.prototype = {
   __proto__: IdentityInternalsMultipleTokensWebUITest.prototype,
 
-  /** @inhritDoc */
+  /** @override */
   isAsync: true,
 };
 
@@ -243,7 +243,7 @@ TEST_F('IdentityInternalsWebUITestAsync', 'revokeToken', function() {
   expectEquals(2, tokenListBefore.length);
   var tokenRevokeDone = identity_internals.tokenRevokeDone;
   identity_internals.tokenRevokeDone = this.continueTest(
-      WhenTestDone.ALWAYS, function (accessTokens) {
+      WhenTestDone.ALWAYS, function(accessTokens) {
         tokenRevokeDone.call(identity_internals, accessTokens);
         identity_internals.tokenRevokeDone = tokenRevokeDone;
         var tokenListAfter = this.getTokens();