CSS to change GUI font fails with custom content fonts.

User Help for Mozilla Firefox
Post Reply
avada
Posts: 1932
Joined: February 10th, 2008, 6:30 am
Location: Hungary

CSS to change GUI font fails with custom content fonts.

Post by avada »

Hi!

I have this css to change the GUI font for ages:

Code: Select all

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

* {

    font-family:"DejaVu Sans" !important;


}
While I was experimenting now with changing the content font setting in firefox I noticed that it results these fonts will be used on the GUI if I have this script enabled when I don't allow webpages to use their own fonts. It makes no sense at all...
If I disable the script the FF default font is used.

Does anyone have an idea how to fix the CSS?
User avatar
Frank Lion
Posts: 21173
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: CSS to change GUI font fails with custom content fonts.

Post by Frank Lion »

I can't reproduce this.

I tried this in userChrome.css -

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
* {     font-family:"DejaVu Sans" !important; }
and this in userContent.css -

Code: Select all

* {    font-family:"Comic Sans MS" !important;}
@namespace url(http://www.w3.org/1999/xhtml);
* {    font-family:"Comic Sans MS" !important;}
I even added it, as you can see, above the xhtml namespace line and still everything GUI-wise behaved as it should, both with Allow webpages and Not..

By your use of the word 'script' above, I'm reckoning you're using Stylish? Sounds like it's getting confused somewhere.

Btw don't ever use Comic Sans to post a forum reply, it's a very strange experience!
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
avada
Posts: 1932
Joined: February 10th, 2008, 6:30 am
Location: Hungary

Re: CSS to change GUI font fails with custom content fonts.

Post by avada »

Frank Lion wrote:I can't reproduce this.

I tried this in userChrome.css -
Hmm... Another mistery.
Frank Lion wrote: and this in userContent.css -
You mean you didn't use the options in firefox to set fonts? I don't think using CSS is the same.
I changed all three types from defaults.
Frank Lion wrote:By your use of the word 'script' above, I'm reckoning you're using Stylish? Sounds like it's getting confused somewhere.
Indeed, I use Stylish.

PS:
I tried Classic theme restorers custom CSS option also with an identical result.
User avatar
Frank Lion
Posts: 21173
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: CSS to change GUI font fails with custom content fonts.

Post by Frank Lion »

avada wrote:
Frank Lion wrote: and this in userContent.css -
You mean you didn't use the options in firefox to set fonts? I don't think using CSS is the same.
Usually I override website fonts in Options/Preferences. But here, to check your stuff, I used userContent.css. Both ways are fine.

I have used Stylish, but I used to keep getting styles/code conflicting with each other. Somehow, that doesn't seem to happen with userChrome.css, even though there's a fair bit in it. Maybe it's easier to check or something.
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
User avatar
Frank Lion
Posts: 21173
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: CSS to change GUI font fails with custom content fonts.

Post by Frank Lion »

avada wrote:Indeed, I use Stylish.

PS:
I tried Classic theme restorers custom CSS option also with an identical result.
Sorted (does Stylish still have no colour Syntax highlighting in 2018?)

I did what I should have done in the first place! I put your code into a decent text editor and the syntax highlighting showed immediately what was wrong - your xul namespace line is wrong, replace it with this -

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
avada
Posts: 1932
Joined: February 10th, 2008, 6:30 am
Location: Hungary

Re: CSS to change GUI font fails with custom content fonts.

Post by avada »

Frank Lion wrote:
avada wrote:Indeed, I use Stylish.

PS:
I tried Classic theme restorers custom CSS option also with an identical result.
Sorted (does Stylish still have no colour Syntax highlighting in 2018?)

I did what I should have done in the first place! I put your code into a decent text editor and the syntax highlighting showed immediately what was wrong - your xul namespace line is wrong, replace it with this -

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
Well, your line is highlighted the same way.
Anyways it's still not working. When the script is disabled in stylish I see: font-family: Segoe UI; in DOM Inspector

When it's enabled I get: font-family: serif,"comic Sans ms"; (I tested with comic sans in the script) and the font defined in the preferences is used.
If now I enable the option for web pages to use their own fonts I get: font-family: "comic Sans ms"; and that font appearing.
(This time the fonts are not updated on the fly, only for "about:" pages, even though the script is for chrome... I have to close/open the sidebar for it to change and restart the browser for the tabbar/navbar/menubar)

It looks more and more like an FF bug to me.
User avatar
Frank Lion
Posts: 21173
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: CSS to change GUI font fails with custom content fonts.

Post by Frank Lion »

avada wrote:Well, your line is highlighted the same way..
I don't think you understand what syntax highlighting is.

I repeat, you are using a non-valid/non-working xul namespace line......caused by lack of quote marks.

If you are going to convince yourself that everything is a Firefox bug, then don't ask for .css advice in a Theme Dev Forum, where people are coding with .css all the time.

I'm out.
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
avada
Posts: 1932
Joined: February 10th, 2008, 6:30 am
Location: Hungary

Re: CSS to change GUI font fails with custom content fonts.

Post by avada »

Frank Lion wrote:I don't think you understand what syntax highlighting is.
I most definitely do understand. They're just not highlighted differently. Don't take me for a fool.

Image
Frank Lion wrote:I repeat, you are using a non-valid/non-working xul namespace line......caused by lack of quote marks.
I fixed it when you wrote about it. It doesn't make a difference. (It seems to me that it accepts it either way. I get an error message in the editor when there's a syntax issue)
Frank Lion wrote:If you are going to convince yourself that everything is a Firefox bug, then don't ask for .css advice in a Theme Dev Forum, where people are coding with .css all the time.
I'm not convincing myself to anything. The evidence seems to suggest this.
Particularly:
I tested with a new profile and userchrome.css and I got the exact same issue. So unless the CSS is still bugged somehow, it's a FF bug.

Did you change all fonts (serif/sans/monospace)?

Here ar my particular settings and userchrome.css:
Image

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

* {

    font-family:"DejaVu Sans mono" !important;


}
#tabcounter-tabcount{
	font-family:"Roboto" !important;
}
User avatar
Frank Lion
Posts: 21173
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: CSS to change GUI font fails with custom content fonts.

Post by Frank Lion »

avada wrote:
Frank Lion wrote:I don't think you understand what syntax highlighting is.
I most definitely do understand. They're just not highlighted differently. Don't take me for a fool.
Don't act like one then -

Image
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
avada
Posts: 1932
Joined: February 10th, 2008, 6:30 am
Location: Hungary

Re: CSS to change GUI font fails with custom content fonts.

Post by avada »

Frank Lion wrote: Don't act like one then -
I didn't, but you're starting to. I said I added the quotes after you first mentioned it. I showed you that it isn't highlighted differently in the editor that stylish uses. And it still doesn't work. So why are you still obsessing about this?


There's no basis for your derogatory comments since you're the one who still assumes I didn't fix the line even though I repeatedly stated the opposite.
avada
Posts: 1932
Joined: February 10th, 2008, 6:30 am
Location: Hungary

Re: CSS to change GUI font fails with custom content fonts.

Post by avada »

Hmm....
There's this addon:Theme Font & Size Changer
But neither versions flagged to be compatible with FF56 actually function...

But apparently Pale Mooners made a fork: https://addons.palemoon.org/addon/theme-tweaker/
However it's effected by the same glitch: The fonts fail to change unless I check the option that allows pages using their own font in FF.

Something terribly stuffed up. (And by the looks of it, on FF's end)
Last edited by LIMPET235 on January 15th, 2018, 6:47 am, edited 1 time in total.
Reason: Some slight text editing.
User avatar
LIMPET235
Moderator
Posts: 39934
Joined: October 19th, 2007, 1:53 am
Location: The South Coast of N.S.W. Oz.

Re: CSS to change GUI font fails with custom content fonts.

Post by LIMPET235 »

Moving this to Firefox Support...
[Ancient Amateur Astronomer.]
Win-10-H/64 bit/500G SSD/16 Gig Ram/450Watt PSU/350WattUPS/Firefox-115.0.2/T-bird-115.3.2./SnagIt-v10.0.1/MWP-7.12.125.

(Always choose the "Custom" Install.)
avada
Posts: 1932
Joined: February 10th, 2008, 6:30 am
Location: Hungary

Re: CSS to change GUI font fails with custom content fonts.

Post by avada »

I did a bisection with mozregression, and it seems it's broken since FF41...
The last good build found was from 2015-06-28

Code: Select all

2018-01-15T15:11:14: INFO : Running mozilla-central build for 2015-01-16
2018-01-15T15:11:14: INFO : Launching c:\ideiglenes\tmpqdf7vz\firefox\firefox.exe
2018-01-15T15:11:14: INFO : Application command: c:\ideiglenes\tmpqdf7vz\firefox\firefox.exe -profile c:\ideiglenes\tmpbe3gf0
2018-01-15T15:11:14: INFO : application_buildid: 20150116030203
2018-01-15T15:11:14: INFO : application_changeset: cac6192956ab
2018-01-15T15:11:14: INFO : application_display_name: Nightly
2018-01-15T15:11:14: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:11:14: INFO : application_name: Firefox
2018-01-15T15:11:14: INFO : application_remotingname: firefox
2018-01-15T15:11:14: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:11:14: INFO : application_vendor: Mozilla
2018-01-15T15:11:14: INFO : application_version: 38.0a1
2018-01-15T15:11:14: INFO : platform_buildid: 20150116030203
2018-01-15T15:11:14: INFO : platform_changeset: cac6192956ab
2018-01-15T15:11:14: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:11:14: INFO : platform_version: 38.0a1
2018-01-15T15:11:36: INFO : Narrowed nightly regression window from [2013-01-15, 2017-01-15] (1461 days) to [2015-01-16, 2017-01-15] (730 days) (~9 steps left)
2018-01-15T15:11:36: INFO : Running mozilla-central build for 2016-01-16
2018-01-15T15:11:37: INFO : Launching c:\ideiglenes\tmpt0twkv\firefox\firefox.exe
2018-01-15T15:11:37: INFO : Application command: c:\ideiglenes\tmpt0twkv\firefox\firefox.exe -profile c:\ideiglenes\tmpdkvsrl
2018-01-15T15:11:37: INFO : application_buildid: 20160116030240
2018-01-15T15:11:37: INFO : application_changeset: 9879757aa0d4f88df8c79cde4a777ac7eff0152f
2018-01-15T15:11:37: INFO : application_display_name: Nightly
2018-01-15T15:11:37: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:11:37: INFO : application_name: Firefox
2018-01-15T15:11:37: INFO : application_remotingname: firefox
2018-01-15T15:11:37: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:11:37: INFO : application_vendor: Mozilla
2018-01-15T15:11:37: INFO : application_version: 46.0a1
2018-01-15T15:11:37: INFO : platform_buildid: 20160116030240
2018-01-15T15:11:37: INFO : platform_changeset: 9879757aa0d4f88df8c79cde4a777ac7eff0152f
2018-01-15T15:11:37: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:11:37: INFO : platform_version: 46.0a1
2018-01-15T15:11:38: INFO : 1516025498400	addons.xpi-utils	ERROR	Failed to load XPI JSON data from profile: Error: Expected passed argument to contain a descriptor (resource://gre/modules/addons/XPIProvider.jsm -> resource://gre/modules/addons/XPIProviderUtils.js:341:11) JS Stack trace: DBAddonInternal@XPIProviderUtils.js:341:11 < this.XPIDatabase.parseDB@XPIProviderUtils.js:658:24 < this.XPIDatabase.syncLoadDB@XPIProviderUtils.js:586:9 < this.XPIProvider.checkForChanges@XPIProvider.jsm:3638:9 < this.XPIProvider.startup@XPIProvider.jsm:2655:25 < callProvider@AddonManager.jsm:227:12 < _startProvider@AddonManager.jsm:833:5 < AddonManagerInternal.startup@AddonManager.jsm:1016:9 < this.AddonManagerPrivate.startup@AddonManager.jsm:2783:5 < amManager.prototype.observe@addonManager.js:56:7
2018-01-15T15:11:40: INFO : 1516025500736	addons.update-checker	WARN	Update manifest for firefox@getpocket.com did not contain an updates property
2018-01-15T15:11:40: INFO : 1516025500956	addons.update-checker	WARN	Update manifest for loop@mozilla.org did not contain an updates property
2018-01-15T15:11:58: INFO : Narrowed nightly regression window from [2015-01-16, 2017-01-15] (730 days) to [2015-01-16, 2016-01-16] (365 days) (~8 steps left)
2018-01-15T15:11:58: INFO : Running mozilla-central build for 2015-07-18
2018-01-15T15:11:59: INFO : Launching c:\ideiglenes\tmps2udiz\firefox\firefox.exe
2018-01-15T15:11:59: INFO : Application command: c:\ideiglenes\tmps2udiz\firefox\firefox.exe -profile c:\ideiglenes\tmpd1ton5
2018-01-15T15:11:59: INFO : application_buildid: 20150718030211
2018-01-15T15:11:59: INFO : application_changeset: d317a93e5161
2018-01-15T15:11:59: INFO : application_display_name: Nightly
2018-01-15T15:11:59: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:11:59: INFO : application_name: Firefox
2018-01-15T15:11:59: INFO : application_remotingname: firefox
2018-01-15T15:11:59: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:11:59: INFO : application_vendor: Mozilla
2018-01-15T15:11:59: INFO : application_version: 42.0a1
2018-01-15T15:11:59: INFO : platform_buildid: 20150718030211
2018-01-15T15:11:59: INFO : platform_changeset: d317a93e5161
2018-01-15T15:11:59: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:11:59: INFO : platform_version: 42.0a1
2018-01-15T15:12:00: INFO : Shumway is registered
2018-01-15T15:12:06: INFO : Narrowed nightly regression window from [2015-01-16, 2016-01-16] (365 days) to [2015-01-16, 2015-07-18] (183 days) (~7 steps left)
2018-01-15T15:12:10: INFO : Running mozilla-central build for 2015-04-18
2018-01-15T15:12:10: INFO : Launching c:\ideiglenes\tmptrdxha\firefox\firefox.exe
2018-01-15T15:12:10: INFO : Application command: c:\ideiglenes\tmptrdxha\firefox\firefox.exe -profile c:\ideiglenes\tmpwxi60m
2018-01-15T15:12:10: INFO : application_buildid: 20150418030216
2018-01-15T15:12:10: INFO : application_changeset: 8af644c9b616
2018-01-15T15:12:10: INFO : application_display_name: Nightly
2018-01-15T15:12:10: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:12:10: INFO : application_name: Firefox
2018-01-15T15:12:10: INFO : application_remotingname: firefox
2018-01-15T15:12:10: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:10: INFO : application_vendor: Mozilla
2018-01-15T15:12:10: INFO : application_version: 40.0a1
2018-01-15T15:12:10: INFO : platform_buildid: 20150418030216
2018-01-15T15:12:10: INFO : platform_changeset: 8af644c9b616
2018-01-15T15:12:10: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:10: INFO : platform_version: 40.0a1
2018-01-15T15:12:12: INFO : Shumway is registered
2018-01-15T15:12:19: INFO : Narrowed nightly regression window from [2015-01-16, 2015-07-18] (183 days) to [2015-04-18, 2015-07-18] (91 days) (~6 steps left)
2018-01-15T15:12:19: INFO : Running mozilla-central build for 2015-06-03
2018-01-15T15:12:20: INFO : Launching c:\ideiglenes\tmpuu4psz\firefox\firefox.exe
2018-01-15T15:12:20: INFO : Application command: c:\ideiglenes\tmpuu4psz\firefox\firefox.exe -profile c:\ideiglenes\tmpiv8xal
2018-01-15T15:12:20: INFO : application_buildid: 20150603030208
2018-01-15T15:12:20: INFO : application_changeset: 14be4237f855
2018-01-15T15:12:20: INFO : application_display_name: Nightly
2018-01-15T15:12:20: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:12:20: INFO : application_name: Firefox
2018-01-15T15:12:20: INFO : application_remotingname: firefox
2018-01-15T15:12:20: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:20: INFO : application_vendor: Mozilla
2018-01-15T15:12:20: INFO : application_version: 41.0a1
2018-01-15T15:12:20: INFO : platform_buildid: 20150603030208
2018-01-15T15:12:20: INFO : platform_changeset: 14be4237f855
2018-01-15T15:12:20: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:20: INFO : platform_version: 41.0a1
2018-01-15T15:12:22: INFO : Shumway is registered
2018-01-15T15:12:29: INFO : 2018-01-15 15:12:29: stackwalker.cc:125: INFO: Couldn't load symbols for: wntdll.pdb|430DF1D716C340699CB7F08E38D704CC2
2018-01-15T15:12:29: INFO : 2018-01-15 15:12:29: stackwalker.cc:125: INFO: Couldn't load symbols for: wuser32.pdb|F531E6C18328488980315550518FA4202
2018-01-15T15:12:29: INFO : 2018-01-15 15:12:29: stackwalker.cc:125: INFO: Couldn't load symbols for: xul.pdb|8F7E7E26D9F646C3A868F285CDFBA1EC2
2018-01-15T15:12:29: INFO : 2018-01-15 15:12:29: basic_code_modules.cc:88: INFO: No module at 0x3
2018-01-15T15:12:29: INFO : 2018-01-15 15:12:29: basic_code_modules.cc:88: INFO: No module at 0xd8fc90
2018-01-15T15:12:29: INFO : 2018-01-15 15:12:29: basic_code_modules.cc:88: INFO: No module at 0xeb31e8
2018-01-15T15:12:31: INFO : Narrowed nightly regression window from [2015-04-18, 2015-07-18] (91 days) to [2015-06-03, 2015-07-18] (45 days) (~5 steps left)
2018-01-15T15:12:31: INFO : Running mozilla-central build for 2015-06-26
2018-01-15T15:12:32: INFO : Launching c:\ideiglenes\tmpr9xeo6\firefox\firefox.exe
2018-01-15T15:12:32: INFO : Application command: c:\ideiglenes\tmpr9xeo6\firefox\firefox.exe -profile c:\ideiglenes\tmpxh05lu
2018-01-15T15:12:32: INFO : application_buildid: 20150626030206
2018-01-15T15:12:32: INFO : application_changeset: d45440221297
2018-01-15T15:12:32: INFO : application_display_name: Nightly
2018-01-15T15:12:32: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:12:32: INFO : application_name: Firefox
2018-01-15T15:12:32: INFO : application_remotingname: firefox
2018-01-15T15:12:32: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:32: INFO : application_vendor: Mozilla
2018-01-15T15:12:32: INFO : application_version: 41.0a1
2018-01-15T15:12:32: INFO : platform_buildid: 20150626030206
2018-01-15T15:12:32: INFO : platform_changeset: d45440221297
2018-01-15T15:12:32: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:32: INFO : platform_version: 41.0a1
2018-01-15T15:12:33: INFO : Shumway is registered
2018-01-15T15:12:43: INFO : Narrowed nightly regression window from [2015-06-03, 2015-07-18] (45 days) to [2015-06-26, 2015-07-18] (22 days) (~4 steps left)
2018-01-15T15:12:43: INFO : Running mozilla-central build for 2015-07-07
2018-01-15T15:12:44: INFO : Launching c:\ideiglenes\tmpqolh0x\firefox\firefox.exe
2018-01-15T15:12:44: INFO : Application command: c:\ideiglenes\tmpqolh0x\firefox\firefox.exe -profile c:\ideiglenes\tmpjsq2ne
2018-01-15T15:12:44: INFO : application_buildid: 20150707030206
2018-01-15T15:12:44: INFO : application_changeset: e7e69cc8c07b
2018-01-15T15:12:44: INFO : application_display_name: Nightly
2018-01-15T15:12:44: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:12:44: INFO : application_name: Firefox
2018-01-15T15:12:44: INFO : application_remotingname: firefox
2018-01-15T15:12:44: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:44: INFO : application_vendor: Mozilla
2018-01-15T15:12:44: INFO : application_version: 42.0a1
2018-01-15T15:12:44: INFO : platform_buildid: 20150707030206
2018-01-15T15:12:44: INFO : platform_changeset: e7e69cc8c07b
2018-01-15T15:12:44: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:44: INFO : platform_version: 42.0a1
2018-01-15T15:12:45: INFO : Shumway is registered
2018-01-15T15:12:56: INFO : Narrowed nightly regression window from [2015-06-26, 2015-07-18] (22 days) to [2015-06-26, 2015-07-07] (11 days) (~3 steps left)
2018-01-15T15:12:56: INFO : Running mozilla-central build for 2015-07-02
2018-01-15T15:12:57: INFO : Launching c:\ideiglenes\tmpgfj_lm\firefox\firefox.exe
2018-01-15T15:12:57: INFO : Application command: c:\ideiglenes\tmpgfj_lm\firefox\firefox.exe -profile c:\ideiglenes\tmppfeqwv
2018-01-15T15:12:57: INFO : application_buildid: 20150702030207
2018-01-15T15:12:57: INFO : application_changeset: f5e3bacfb60e
2018-01-15T15:12:57: INFO : application_display_name: Nightly
2018-01-15T15:12:57: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:12:57: INFO : application_name: Firefox
2018-01-15T15:12:57: INFO : application_remotingname: firefox
2018-01-15T15:12:57: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:57: INFO : application_vendor: Mozilla
2018-01-15T15:12:57: INFO : application_version: 42.0a1
2018-01-15T15:12:57: INFO : platform_buildid: 20150702030207
2018-01-15T15:12:57: INFO : platform_changeset: f5e3bacfb60e
2018-01-15T15:12:57: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:12:57: INFO : platform_version: 42.0a1
2018-01-15T15:12:58: INFO : Shumway is registered
2018-01-15T15:13:05: INFO : Narrowed nightly regression window from [2015-06-26, 2015-07-07] (11 days) to [2015-06-26, 2015-07-02] (6 days) (~2 steps left)
2018-01-15T15:13:06: INFO : Running mozilla-central build for 2015-06-29
2018-01-15T15:13:07: INFO : Launching c:\ideiglenes\tmpgvojmv\firefox\firefox.exe
2018-01-15T15:13:07: INFO : Application command: c:\ideiglenes\tmpgvojmv\firefox\firefox.exe -profile c:\ideiglenes\tmp2znz67
2018-01-15T15:13:07: INFO : application_buildid: 20150629134017
2018-01-15T15:13:07: INFO : application_changeset: c26dbd63604d
2018-01-15T15:13:07: INFO : application_display_name: Nightly
2018-01-15T15:13:07: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:13:07: INFO : application_name: Firefox
2018-01-15T15:13:07: INFO : application_remotingname: firefox
2018-01-15T15:13:07: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:13:07: INFO : application_vendor: Mozilla
2018-01-15T15:13:07: INFO : application_version: 42.0a1
2018-01-15T15:13:07: INFO : platform_buildid: 20150629134017
2018-01-15T15:13:07: INFO : platform_changeset: c26dbd63604d
2018-01-15T15:13:07: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:13:07: INFO : platform_version: 42.0a1
2018-01-15T15:13:09: INFO : Shumway is registered
2018-01-15T15:13:12: INFO : Narrowed nightly regression window from [2015-06-26, 2015-07-02] (6 days) to [2015-06-26, 2015-06-29] (3 days) (~1 steps left)
2018-01-15T15:13:15: INFO : Running mozilla-central build for 2015-06-28
2018-01-15T15:13:16: INFO : Launching c:\ideiglenes\tmp51jx22\firefox\firefox.exe
2018-01-15T15:13:16: INFO : Application command: c:\ideiglenes\tmp51jx22\firefox\firefox.exe -profile c:\ideiglenes\tmp16biyq
2018-01-15T15:13:16: INFO : application_buildid: 20150628030215
2018-01-15T15:13:16: INFO : application_changeset: eaf4f9b45117
2018-01-15T15:13:16: INFO : application_display_name: Nightly
2018-01-15T15:13:16: INFO : application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
2018-01-15T15:13:16: INFO : application_name: Firefox
2018-01-15T15:13:16: INFO : application_remotingname: firefox
2018-01-15T15:13:16: INFO : application_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:13:16: INFO : application_vendor: Mozilla
2018-01-15T15:13:16: INFO : application_version: 41.0a1
2018-01-15T15:13:16: INFO : platform_buildid: 20150628030215
2018-01-15T15:13:16: INFO : platform_changeset: eaf4f9b45117
2018-01-15T15:13:16: INFO : platform_repository: https://hg.mozilla.org/mozilla-central
2018-01-15T15:13:16: INFO : platform_version: 41.0a1
2018-01-15T15:13:16: INFO : 11D37430 SetInRuleProcessorCache 1
2018-01-15T15:13:16: INFO : 11D37790 SetInRuleProcessorCache 1
2018-01-15T15:13:16: INFO : 12931F40 SetInRuleProcessorCache 1
2018-01-15T15:13:16: INFO : 12975340 SetInRuleProcessorCache 1
2018-01-15T15:13:16: INFO : 0E2368E0 SetInRuleProcessorCache 1
2018-01-15T15:13:17: INFO : 18DB57C0 SetInRuleProcessorCache 1
2018-01-15T15:13:17: INFO : 19D81490 SetInRuleProcessorCache 1
2018-01-15T15:13:17: INFO : 19E737F0 SetInRuleProcessorCache 1
2018-01-15T15:13:17: INFO : 19E73BB0 SetInRuleProcessorCache 1
2018-01-15T15:13:17: INFO : 1A0CD430 SetInRuleProcessorCache 1
2018-01-15T15:13:17: INFO : Shumway is registered
2018-01-15T15:13:17: INFO : 089B1B20 SetInRuleProcessorCache 1
2018-01-15T15:13:17: INFO : 089B1EB0 SetInRuleProcessorCache 1
2018-01-15T15:13:18: INFO : 0A5F2460 SetInRuleProcessorCache 1
2018-01-15T15:13:18: INFO : 0A9FFFA0 SetInRuleProcessorCache 1
2018-01-15T15:13:18: INFO : 0BFD25E0 SetInRuleProcessorCache 1
2018-01-15T15:13:22: INFO : 1E619220 SetInRuleProcessorCache 1
2018-01-15T15:13:23: INFO : 133AE880 SetInRuleProcessorCache 1
2018-01-15T15:13:27: INFO : Narrowed nightly regression window from [2015-06-26, 2015-06-29] (3 days) to [2015-06-28, 2015-06-29] (1 days) (~0 steps left)
2018-01-15T15:13:27: DEBUG : Using url: https://hg.mozilla.org/mozilla-central/json-pushes?changeset=eaf4f9b45117
2018-01-15T15:13:28: DEBUG : Using url: https://hg.mozilla.org/mozilla-central/json-pushes?fromchange=eaf4f9b45117&tochange=c26dbd63604d
2018-01-15T15:13:28: DEBUG : using taskcluster route 'buildbot.revisions.eaf4f9b45117a36aa46e3e770ff2bff52dda1282.mozilla-central.win32'
2018-01-15T15:13:28: DEBUG : using taskcluster route 'buildbot.revisions.c26dbd63604d726430f24b8b6f00b3dedb03fc4c.mozilla-central.win32'
2018-01-15T15:13:43: WARNING : Skipping build eaf4f9b45117: Unable to find build info using the taskcluster route 'buildbot.revisions.eaf4f9b45117a36aa46e3e770ff2bff52dda1282.mozilla-central.win32'
2018-01-15T15:13:45: WARNING : Skipping build c26dbd63604d: Unable to find build info using the taskcluster route 'buildbot.revisions.c26dbd63604d726430f24b8b6f00b3dedb03fc4c.mozilla-central.win32'
2018-01-15T15:13:45: DEBUG : Using url: https://hg.mozilla.org/mozilla-central/json-pushes?startID=28932&endID=28952
2018-01-15T15:13:46: DEBUG : using taskcluster route 'buildbot.revisions.d45440221297a2f2d7bcf9a9b91578e0affb43d8.mozilla-central.win32'
2018-01-15T15:13:46: DEBUG : using taskcluster route 'buildbot.revisions.56e207dbb3bda446e30c8a9fcf16050f35a58fb9.mozilla-central.win32'
2018-01-15T15:13:46: DEBUG : using taskcluster route 'buildbot.revisions.d4c4ce7f060ce928ae3baa629b67d813cbb0fa85.mozilla-central.win32'
2018-01-15T15:13:59: WARNING : Skipping build d4c4ce7f060c: Unable to find build info using the taskcluster route 'buildbot.revisions.d4c4ce7f060ce928ae3baa629b67d813cbb0fa85.mozilla-central.win32'
2018-01-15T15:14:00: WARNING : Skipping build d45440221297: Unable to find build info using the taskcluster route 'buildbot.revisions.d45440221297a2f2d7bcf9a9b91578e0affb43d8.mozilla-central.win32'
2018-01-15T15:14:00: WARNING : Skipping build 56e207dbb3bd: Unable to find build info using the taskcluster route 'buildbot.revisions.56e207dbb3bda446e30c8a9fcf16050f35a58fb9.mozilla-central.win32'
2018-01-15T15:14:00: DEBUG : using taskcluster route 'buildbot.revisions.0e2d2f781adaea117519e3a277d7af4c4b441afb.mozilla-central.win32'
2018-01-15T15:14:00: DEBUG : using taskcluster route 'buildbot.revisions.0b2f5e8b7be546f2cf649b13adea51b800e940d2.mozilla-central.win32'
2018-01-15T15:14:00: DEBUG : using taskcluster route 'buildbot.revisions.bbc26cc168c7239f0946028e90a0862149ee13ec.mozilla-central.win32'
2018-01-15T15:14:15: WARNING : Skipping build 0e2d2f781ada: Unable to find build info using the taskcluster route 'buildbot.revisions.0e2d2f781adaea117519e3a277d7af4c4b441afb.mozilla-central.win32'
2018-01-15T15:14:15: WARNING : Skipping build 0b2f5e8b7be5: Unable to find build info using the taskcluster route 'buildbot.revisions.0b2f5e8b7be546f2cf649b13adea51b800e940d2.mozilla-central.win32'
2018-01-15T15:14:16: WARNING : Skipping build bbc26cc168c7: Unable to find build info using the taskcluster route 'buildbot.revisions.bbc26cc168c7239f0946028e90a0862149ee13ec.mozilla-central.win32'
2018-01-15T15:14:16: DEBUG : using taskcluster route 'buildbot.revisions.7b0df70e27ea18748e2841506cbe9e23cae18b2f.mozilla-central.win32'
2018-01-15T15:14:16: DEBUG : using taskcluster route 'buildbot.revisions.0fb26e988c64f76e309664595785a1d52136ff9d.mozilla-central.win32'
2018-01-15T15:14:16: DEBUG : using taskcluster route 'buildbot.revisions.5ed704eb26e90d69f30c6662810f48b147550c4f.mozilla-central.win32'
2018-01-15T15:14:30: WARNING : Skipping build 0fb26e988c64: Unable to find build info using the taskcluster route 'buildbot.revisions.0fb26e988c64f76e309664595785a1d52136ff9d.mozilla-central.win32'
2018-01-15T15:14:30: WARNING : Skipping build 7b0df70e27ea: Unable to find build info using the taskcluster route 'buildbot.revisions.7b0df70e27ea18748e2841506cbe9e23cae18b2f.mozilla-central.win32'
2018-01-15T15:14:30: WARNING : Skipping build 5ed704eb26e9: Unable to find build info using the taskcluster route 'buildbot.revisions.5ed704eb26e90d69f30c6662810f48b147550c4f.mozilla-central.win32'
2018-01-15T15:14:30: DEBUG : using taskcluster route 'buildbot.revisions.5a3ee6baf14307482c132e750ed7d760d7d908ff.mozilla-central.win32'
2018-01-15T15:14:30: DEBUG : using taskcluster route 'buildbot.revisions.3ae7fd12f53fa7955ab952273870f205a82de527.mozilla-central.win32'
2018-01-15T15:14:30: DEBUG : using taskcluster route 'buildbot.revisions.4cdc1a95a672aaae593448b89b1caee33a159ab7.mozilla-central.win32'
2018-01-15T15:14:44: WARNING : Skipping build 5a3ee6baf143: Unable to find build info using the taskcluster route 'buildbot.revisions.5a3ee6baf14307482c132e750ed7d760d7d908ff.mozilla-central.win32'
2018-01-15T15:14:45: WARNING : Skipping build 4cdc1a95a672: Unable to find build info using the taskcluster route 'buildbot.revisions.4cdc1a95a672aaae593448b89b1caee33a159ab7.mozilla-central.win32'
2018-01-15T15:14:45: WARNING : Skipping build 3ae7fd12f53f: Unable to find build info using the taskcluster route 'buildbot.revisions.3ae7fd12f53fa7955ab952273870f205a82de527.mozilla-central.win32'
2018-01-15T15:14:45: DEBUG : using taskcluster route 'buildbot.revisions.20d8b6076d9bad03c262e85b8f24c7c7307bbc2a.mozilla-central.win32'
2018-01-15T15:14:45: DEBUG : using taskcluster route 'buildbot.revisions.cddf3b36b5e2c2d9553f71c83a3ae943da73006f.mozilla-central.win32'
2018-01-15T15:14:45: DEBUG : using taskcluster route 'buildbot.revisions.be81b8d6fae99c89e8b14591b11dd26eec0a416e.mozilla-central.win32'
2018-01-15T15:14:58: WARNING : Skipping build 20d8b6076d9b: Unable to find build info using the taskcluster route 'buildbot.revisions.20d8b6076d9bad03c262e85b8f24c7c7307bbc2a.mozilla-central.win32'
2018-01-15T15:14:59: WARNING : Skipping build be81b8d6fae9: Unable to find build info using the taskcluster route 'buildbot.revisions.be81b8d6fae99c89e8b14591b11dd26eec0a416e.mozilla-central.win32'
2018-01-15T15:14:59: WARNING : Skipping build cddf3b36b5e2: Unable to find build info using the taskcluster route 'buildbot.revisions.cddf3b36b5e2c2d9553f71c83a3ae943da73006f.mozilla-central.win32'
2018-01-15T15:14:59: DEBUG : using taskcluster route 'buildbot.revisions.b6fe3099f8f699b92b09f79508b0ab9b870d01ff.mozilla-central.win32'
2018-01-15T15:14:59: DEBUG : using taskcluster route 'buildbot.revisions.c319f262ce3ea3db52aad981abb9f33e36857c3d.mozilla-central.win32'
2018-01-15T15:14:59: DEBUG : using taskcluster route 'buildbot.revisions.a38c23ccca0aa117b0a5d03209bb7cd4938c7e28.mozilla-central.win32'
2018-01-15T15:15:13: WARNING : Skipping build b6fe3099f8f6: Unable to find build info using the taskcluster route 'buildbot.revisions.b6fe3099f8f699b92b09f79508b0ab9b870d01ff.mozilla-central.win32'
2018-01-15T15:15:13: WARNING : Skipping build a38c23ccca0a: Unable to find build info using the taskcluster route 'buildbot.revisions.a38c23ccca0aa117b0a5d03209bb7cd4938c7e28.mozilla-central.win32'
2018-01-15T15:15:14: WARNING : Skipping build c319f262ce3e: Unable to find build info using the taskcluster route 'buildbot.revisions.c319f262ce3ea3db52aad981abb9f33e36857c3d.mozilla-central.win32'
2018-01-15T15:15:14: DEBUG : using taskcluster route 'buildbot.revisions.2694ff2ace6a1b5f6d283c5eafafac730487b189.mozilla-central.win32'
2018-01-15T15:15:14: DEBUG : using taskcluster route 'buildbot.revisions.74dfcc92dea888e64f8ab56318e9322915321fd7.mozilla-central.win32'
2018-01-15T15:15:27: WARNING : Skipping build 74dfcc92dea8: Unable to find build info using the taskcluster route 'buildbot.revisions.74dfcc92dea888e64f8ab56318e9322915321fd7.mozilla-central.win32'
2018-01-15T15:15:28: WARNING : Skipping build 2694ff2ace6a: Unable to find build info using the taskcluster route 'buildbot.revisions.2694ff2ace6a1b5f6d283c5eafafac730487b189.mozilla-central.win32'
2018-01-15T15:15:28: CRITICAL : First build eaf4f9b45117 is missing, but mozregression can't find a build before - so it is excluded, but it could contain the regression!
2018-01-15T15:15:28: DEBUG : Using url: https://hg.mozilla.org/mozilla-central/json-pushes?startID=28962&endID=28982
2018-01-15T15:15:29: DEBUG : using taskcluster route 'buildbot.revisions.aad95360a002fb54de07489313489743f5618cee.mozilla-central.win32'
2018-01-15T15:15:29: DEBUG : using taskcluster route 'buildbot.revisions.79800010be78122db7c36d4b5833814fdbf28495.mozilla-central.win32'
2018-01-15T15:15:29: DEBUG : using taskcluster route 'buildbot.revisions.be05753f392a161651393c6f180077070a57b0d8.mozilla-central.win32'
2018-01-15T15:15:43: WARNING : Skipping build aad95360a002: Unable to find build info using the taskcluster route 'buildbot.revisions.aad95360a002fb54de07489313489743f5618cee.mozilla-central.win32'
2018-01-15T15:15:43: WARNING : Skipping build be05753f392a: Unable to find build info using the taskcluster route 'buildbot.revisions.be05753f392a161651393c6f180077070a57b0d8.mozilla-central.win32'
2018-01-15T15:15:43: WARNING : Skipping build 79800010be78: Unable to find build info using the taskcluster route 'buildbot.revisions.79800010be78122db7c36d4b5833814fdbf28495.mozilla-central.win32'
2018-01-15T15:15:44: DEBUG : using taskcluster route 'buildbot.revisions.291614a686f1402b08db75699a8aa4c487d0f17f.mozilla-central.win32'
2018-01-15T15:15:44: DEBUG : using taskcluster route 'buildbot.revisions.fafe4a3be0ae035ca354995261898dfa539b09b7.mozilla-central.win32'
2018-01-15T15:15:44: DEBUG : using taskcluster route 'buildbot.revisions.e5ef71b73fec78e18eaddb2defaa9f2aabff152d.mozilla-central.win32'
2018-01-15T15:15:57: WARNING : Skipping build e5ef71b73fec: Unable to find build info using the taskcluster route 'buildbot.revisions.e5ef71b73fec78e18eaddb2defaa9f2aabff152d.mozilla-central.win32'
2018-01-15T15:15:58: WARNING : Skipping build 291614a686f1: Unable to find build info using the taskcluster route 'buildbot.revisions.291614a686f1402b08db75699a8aa4c487d0f17f.mozilla-central.win32'
2018-01-15T15:15:58: WARNING : Skipping build fafe4a3be0ae: Unable to find build info using the taskcluster route 'buildbot.revisions.fafe4a3be0ae035ca354995261898dfa539b09b7.mozilla-central.win32'
2018-01-15T15:15:58: DEBUG : using taskcluster route 'buildbot.revisions.079b6f1ae1c3e48da37f6a7c4ed4473862c5f809.mozilla-central.win32'
2018-01-15T15:15:58: DEBUG : using taskcluster route 'buildbot.revisions.2b14fa7d314248c9266c21d925cff550ade68543.mozilla-central.win32'
2018-01-15T15:15:58: DEBUG : using taskcluster route 'buildbot.revisions.6accb4750631ff8b79083a44d7f0823d29355727.mozilla-central.win32'
2018-01-15T15:16:12: WARNING : Skipping build 6accb4750631: Unable to find build info using the taskcluster route 'buildbot.revisions.6accb4750631ff8b79083a44d7f0823d29355727.mozilla-central.win32'
2018-01-15T15:16:13: WARNING : Skipping build 2b14fa7d3142: Unable to find build info using the taskcluster route 'buildbot.revisions.2b14fa7d314248c9266c21d925cff550ade68543.mozilla-central.win32'
2018-01-15T15:16:13: WARNING : Skipping build 079b6f1ae1c3: Unable to find build info using the taskcluster route 'buildbot.revisions.079b6f1ae1c3e48da37f6a7c4ed4473862c5f809.mozilla-central.win32'
2018-01-15T15:16:13: DEBUG : using taskcluster route 'buildbot.revisions.2ec00565de09a3237c3fdbf82ab8381e8de75fe8.mozilla-central.win32'
2018-01-15T15:16:13: DEBUG : using taskcluster route 'buildbot.revisions.ca0fd580a9ced2f0db0c12bf034cc7695d0c6714.mozilla-central.win32'
2018-01-15T15:16:13: DEBUG : using taskcluster route 'buildbot.revisions.2fc104758bb58cf72e1793b1a70c0636b8e97e0e.mozilla-central.win32'
2018-01-15T15:16:26: WARNING : Skipping build 2fc104758bb5: Unable to find build info using the taskcluster route 'buildbot.revisions.2fc104758bb58cf72e1793b1a70c0636b8e97e0e.mozilla-central.win32'
2018-01-15T15:16:28: WARNING : Skipping build 2ec00565de09: Unable to find build info using the taskcluster route 'buildbot.revisions.2ec00565de09a3237c3fdbf82ab8381e8de75fe8.mozilla-central.win32'
2018-01-15T15:16:28: WARNING : Skipping build ca0fd580a9ce: Unable to find build info using the taskcluster route 'buildbot.revisions.ca0fd580a9ced2f0db0c12bf034cc7695d0c6714.mozilla-central.win32'
2018-01-15T15:16:28: DEBUG : using taskcluster route 'buildbot.revisions.427c2e13570263ce19c37fe65057a202e47b61cb.mozilla-central.win32'
2018-01-15T15:16:28: DEBUG : using taskcluster route 'buildbot.revisions.c36f684394962d30ab721f790538805ffc9192ac.mozilla-central.win32'
2018-01-15T15:16:28: DEBUG : using taskcluster route 'buildbot.revisions.f5e3bacfb60e91c0ab6624b84d69b2cffa03fcab.mozilla-central.win32'
2018-01-15T15:16:42: WARNING : Skipping build f5e3bacfb60e: Unable to find build info using the taskcluster route 'buildbot.revisions.f5e3bacfb60e91c0ab6624b84d69b2cffa03fcab.mozilla-central.win32'
2018-01-15T15:16:42: WARNING : Skipping build c36f68439496: Unable to find build info using the taskcluster route 'buildbot.revisions.c36f684394962d30ab721f790538805ffc9192ac.mozilla-central.win32'
2018-01-15T15:16:43: WARNING : Skipping build 427c2e135702: Unable to find build info using the taskcluster route 'buildbot.revisions.427c2e13570263ce19c37fe65057a202e47b61cb.mozilla-central.win32'
2018-01-15T15:16:43: DEBUG : using taskcluster route 'buildbot.revisions.b42fd295a283c9e6b93554035882879feb48e95b.mozilla-central.win32'
2018-01-15T15:16:43: DEBUG : using taskcluster route 'buildbot.revisions.cb321bafe1e27583c47f70fb41cf5fe0e769024a.mozilla-central.win32'
2018-01-15T15:16:43: DEBUG : using taskcluster route 'buildbot.revisions.f1b3144fed94901bc63fb7f94d87be62d9dd382b.mozilla-central.win32'
2018-01-15T15:16:57: WARNING : Skipping build b42fd295a283: Unable to find build info using the taskcluster route 'buildbot.revisions.b42fd295a283c9e6b93554035882879feb48e95b.mozilla-central.win32'
2018-01-15T15:16:57: WARNING : Skipping build f1b3144fed94: Unable to find build info using the taskcluster route 'buildbot.revisions.f1b3144fed94901bc63fb7f94d87be62d9dd382b.mozilla-central.win32'
2018-01-15T15:16:57: WARNING : Skipping build cb321bafe1e2: Unable to find build info using the taskcluster route 'buildbot.revisions.cb321bafe1e27583c47f70fb41cf5fe0e769024a.mozilla-central.win32'
2018-01-15T15:16:57: DEBUG : using taskcluster route 'buildbot.revisions.0b901209064cc5c976de5e29332ff749d5be895a.mozilla-central.win32'
2018-01-15T15:16:57: DEBUG : using taskcluster route 'buildbot.revisions.b3b6748dcf2dcf3e7d7907fc6713bd2ed17a7a75.mozilla-central.win32'
2018-01-15T15:17:11: WARNING : Skipping build b3b6748dcf2d: Unable to find build info using the taskcluster route 'buildbot.revisions.b3b6748dcf2dcf3e7d7907fc6713bd2ed17a7a75.mozilla-central.win32'
2018-01-15T15:17:11: WARNING : Skipping build 0b901209064c: Unable to find build info using the taskcluster route 'buildbot.revisions.0b901209064cc5c976de5e29332ff749d5be895a.mozilla-central.win32'
2018-01-15T15:17:11: CRITICAL : Last build c26dbd63604d is missing, but mozregression can't find a build after - so it is excluded, but it could contain the regression!
2018-01-15T15:17:11: DEBUG : using taskcluster route 'buildbot.revisions.6dcc552f8f6f5e9e149b783f72c9d82b0b1d5a60.mozilla-central.win32'
2018-01-15T15:17:11: DEBUG : using taskcluster route 'buildbot.revisions.068292b56d9c99db8b69fb46524c071d7ca4f130.mozilla-central.win32'
2018-01-15T15:17:11: DEBUG : using taskcluster route 'buildbot.revisions.312c68b16549de9cea1557f461d5d234bd5e0a7d.mozilla-central.win32'
2018-01-15T15:17:25: WARNING : Skipping build 312c68b16549: Unable to find build info using the taskcluster route 'buildbot.revisions.312c68b16549de9cea1557f461d5d234bd5e0a7d.mozilla-central.win32'
2018-01-15T15:17:26: WARNING : Skipping build 068292b56d9c: Unable to find build info using the taskcluster route 'buildbot.revisions.068292b56d9c99db8b69fb46524c071d7ca4f130.mozilla-central.win32'
2018-01-15T15:17:26: WARNING : Skipping build 6dcc552f8f6f: Unable to find build info using the taskcluster route 'buildbot.revisions.6dcc552f8f6f5e9e149b783f72c9d82b0b1d5a60.mozilla-central.win32'
2018-01-15T15:17:26: DEBUG : using taskcluster route 'buildbot.revisions.2b04d25fd77a1603946f926ff19eb29c2203ad89.mozilla-central.win32'
2018-01-15T15:17:26: DEBUG : using taskcluster route 'buildbot.revisions.69a1e4ea56cb261d013acf324c327ff9e979c165.mozilla-central.win32'
2018-01-15T15:17:26: DEBUG : using taskcluster route 'buildbot.revisions.8758612313facf5e7f76b52dbb9d1f6f4fa931a3.mozilla-central.win32'
2018-01-15T15:17:39: WARNING : Skipping build 8758612313fa: Unable to find build info using the taskcluster route 'buildbot.revisions.8758612313facf5e7f76b52dbb9d1f6f4fa931a3.mozilla-central.win32'
2018-01-15T15:17:40: WARNING : Skipping build 2b04d25fd77a: Unable to find build info using the taskcluster route 'buildbot.revisions.2b04d25fd77a1603946f926ff19eb29c2203ad89.mozilla-central.win32'
2018-01-15T15:17:41: WARNING : Skipping build 69a1e4ea56cb: Unable to find build info using the taskcluster route 'buildbot.revisions.69a1e4ea56cb261d013acf324c327ff9e979c165.mozilla-central.win32'
2018-01-15T15:17:41: DEBUG : using taskcluster route 'buildbot.revisions.e137fc38c43141899486df03f286007b0ab7bf98.mozilla-central.win32'
2018-01-15T15:17:41: DEBUG : using taskcluster route 'buildbot.revisions.3ffdf460b44a89e84406d3c199837620099f157f.mozilla-central.win32'
2018-01-15T15:17:55: WARNING : Skipping build 3ffdf460b44a: Unable to find build info using the taskcluster route 'buildbot.revisions.3ffdf460b44a89e84406d3c199837620099f157f.mozilla-central.win32'
2018-01-15T15:17:56: WARNING : Skipping build e137fc38c431: Unable to find build info using the taskcluster route 'buildbot.revisions.e137fc38c43141899486df03f286007b0ab7bf98.mozilla-central.win32'
2018-01-15T15:17:59: INFO : Stopped
Image
Post Reply