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

Side by Side Diff: polymer_0.4.0/bower_components/polymer-test-tools/htmltest.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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 /* 1 /*
2 * Copyright 2013 The Polymer Authors. All rights reserved. 2 * Copyright 2013 The Polymer Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style 3 * Use of this source code is governed by a BSD-style
4 * license that can be found in the LICENSE file. 4 * license that can be found in the LICENSE file.
5 */ 5 */
6 6
7 // if standalone 7 // if standalone
8 if (window.top === window) { 8 if (window.top === window) {
9 // if standalone 9 // if standalone
10 var failed = false; 10 var failed = false;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 } else { 84 } else {
85 setTimeout(function() { 85 setTimeout(function() {
86 waitFor(fn, next, intervalOrMutationEl, timeout, timeoutTime); 86 waitFor(fn, next, intervalOrMutationEl, timeout, timeoutTime);
87 }, intervalOrMutationEl); 87 }, intervalOrMutationEl);
88 } 88 }
89 return; 89 return;
90 } 90 }
91 } 91 }
92 next(); 92 next();
93 }; 93 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698