1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 function testGetStrings() {
7 chrome.resourcesPrivate.getStrings(
8 "identity", chrome.test.callbackPass(function(data) {
9 // String from the identity component.
10 chrome.test.assertTrue('window-title' in data);
11 // String from the loadTimeData defaults.
12 chrome.test.assertTrue('language' in data);
13 chrome.test.succeed();