author | Jeff Walden <jwalden@mit.edu> |
Sat, 22 Jan 2011 21:29:22 -0800 | |
changeset 61220 | 26bcf65a0229eb417a7d6069d7752085432e095e |
parent 61219 | bc2ae2ec69c40cf50144257ee35578f3c5b36470 |
child 61221 | bbcc51fa912b89282886ee9404afed5e482536bd |
push id | 18277 |
push user | cleary@mozilla.com |
push date | Tue, 25 Jan 2011 03:52:51 +0000 |
treeherder | mozilla-central@7ee91bd90e7a [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | orange |
milestone | 2.0b10pre |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
browser/components/nsBrowserGlue.js | file | annotate | diff | comparison | revisions | |
content/base/test/chrome/title_window.xul | file | annotate | diff | comparison | revisions |
--- a/browser/components/nsBrowserGlue.js +++ b/browser/components/nsBrowserGlue.js @@ -141,19 +141,19 @@ BrowserGlue.prototype = { if (prefDelay > 0) return; } // delays are in seconds const MAX_DELAY = 300; let delay = 3; - let enum = Services.wm.getEnumerator("navigator:browser"); - while (enum.hasMoreElements()) { - delay += enum.getNext().gBrowser.tabs.length; + let browserEnum = Services.wm.getEnumerator("navigator:browser"); + while (browserEnum.hasMoreElements()) { + delay += browserEnum.getNext().gBrowser.tabs.length; } delay = delay <= MAX_DELAY ? delay : MAX_DELAY; let syncTemp = {}; Cu.import("resource://services-sync/service.js", syncTemp); syncTemp.Weave.Service.delayedAutoConnect(delay); }, #endif
--- a/content/base/test/chrome/title_window.xul +++ b/content/base/test/chrome/title_window.xul @@ -16,18 +16,18 @@ <iframe id="xul1" src="data:application/vnd.mozilla.xul+xml,<window xmlns='http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul' title='Test'/>"/> <iframe id="xul2" src="data:application/vnd.mozilla.xul+xml,<window xmlns='http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul' title='Test'/>"/> <iframe type="content" id="svg1" src="data:text/xml,<svg xmlns='http://www.w3.org/2000/svg'><title id='t'>Test</title></svg>"/> <iframe type="content" id="svg2" src="data:text/xml,<svg xmlns='http://www.w3.org/2000/svg'><title id='t'>Test</title></svg>"/> <script type="application/javascript"> <![CDATA[ var imports = [ "SimpleTest", "is", "isnot", "ok" ]; - for each (var import in imports) { - window[import] = window.opener.wrappedJSObject[import]; + for each (var name in imports) { + window[name] = window.opener.wrappedJSObject[name]; } function testStatics() { function testStatic(id, expect, description) { is(document.getElementById(id).contentDocument.title, expect, description); } testStatic("html1", "Test", "HTML <title>");