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

Side by Side Diff: chrome/test/data/extensions/api_test/bindings/chromei18nrepro/window.js

Issue 1433343003: [Extensions] Wait until the Window object is cleared before classifying contexts Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Latest master Created 5 years, 1 month 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
(Empty)
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.
4
5 function reportChromeI18nState(background, iframe) {
6 chrome.test.log('got iframe state: ' + background + ', ' + iframe);
7 document.getElementById('background').textContent =
8 background ? 'defined' : 'undefined';
9 document.getElementById('iframe').textContent =
10 iframe ? 'defined' : 'undefined';
11 chrome.test.assertTrue(background);
12 chrome.test.assertTrue(iframe);
13 chrome.test.succeed();
14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698