/irc-logs / mozilla / #developers / 2015-11-24 / end
Options:
Previous day, Next day
- # Session Start: Tue Nov 24 00:00:00 2015
- # Session Ident: #developers
- # [00:00] * Gijs_away is now known as Gijs
- # [00:00] * Quits: Gijs (chatzilla@moz-q1tdpu.cable.virginm.net) (Quit: sleep)
- # [00:02] <Waldo> philor: :-)
- # [00:03] * mhowell|away is now known as mhowell
- # [00:03] * Quits: Sander (chatzilla@moz-98s.ga3.81.86.IP) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [00:04] <Waldo> jduell: fwiw, I would be very leery of actually forking httpd.js -- people should be sticking to the interface it exposes, and if we need to add things to it to support more use cases, very well, but forks are just not going to remain synced
- # [00:04] <philor> Waldo: oh, heh, not because it might ship httpd.js, they just started running some trial test suites on emulator-kk, and since those barely ever ran they decided to run a whole bunch more
- # [00:05] <Waldo> philor: no fear, I assumed it was random snarkery unrelated to discussion here :-)
- # [00:05] <Waldo> philor: and even if it *had* been related, well, it's not an unwarranted fear ;-)
- # [00:05] <jduell> Waldo: well, from a security angle I was thinking that if we cut-and-paste just the bits we need from httpd.js we could have a much smaller security surface to audit…
- # [00:06] <jduell> Waldo: does that seem like a bad idea?
- # [00:06] <philor> ugh
- # [00:06] * Joins: Coldblackice (anonz@moz-0ijqp3.oc.cox.net)
- # [00:06] <@smaug> jduell: or #ifdefs in the file and preprocess once for testing and once for other use
- # [00:07] <Waldo> jduell: I would be leery of doing that; I'm also not sure there's that much surface to minimize in it, it tries pretty hard to offload special cases and other such handling to the user (because it was to serve tests that want to do a bunch of very weird things)
- # [00:07] * Joins: {Cat} (chatzilla@moz-8j8a70.dyn.plus.net)
- # [00:07] * Quits: milan (milan@moz-pbhpkh.3t38.sij7.f0c8.2607.IP) (A TLS packet with unexpected length was received.)
- # [00:07] <jduell> Waldo: and yet it’s 5K of JS, while the TV guys essentially just need send/receive of some bits
- # [00:07] * Parts: {Cat} (chatzilla@moz-8j8a70.dyn.plus.net) ("")
- # [00:08] <jduell> smaug: we support #ifdef in JS?
- # [00:08] <Waldo> jduell: and they don't care about validation or any other similar sorts of things, at all?
- # [00:08] * Joins: fracting (fracting@moz-etr.siu.9.119.IP)
- # [00:09] <@smaug> jduell: stuff like http://mxr.mozilla.org/mozilla-central/source/browser/base/content/browser.js#168
- # [00:09] <jduell> Waldo: it’s a good question. I don’t know if they’ve already locked down what is allowed to talk to the TV
- # [00:09] <fabrice> basically other browsers on the same local network
- # [00:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4d8cadcfe408 - Blake Kaplan - Bug 1196159 - Set nsGlobalWindow::mIsClosed properly after window.close(). r=billm
- # [00:09] <Waldo> "basically" could be doing a lot of work there ;-)
- # [00:10] * Joins: milan (milan@66.207.193.21)
- # [00:10] <jduell> fabrice: so there’s not just some open TCP port that any device could send data to? What’s their transport? Bluetooth?
- # [00:11] * Joins: catalinb (catalin@moz-nnh.lvl.120.86.IP)
- # [00:11] <fabrice> jduell: wifi
- # [00:12] * Joins: mkaply (mkaply@moz-2m01va.austtx.sbcglobal.net)
- # [00:13] * Quits: @smaug (chatzilla@moz-6kbmhh.rev.dnainternet.fi) (Ping timeout: 121 seconds)
- # [00:13] <mrbkap> mfinkle: ping?
- # [00:14] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [00:14] * Quits: milan (milan@66.207.193.21) (Ping timeout: 121 seconds)
- # [00:15] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [00:15] * Quits: catalinb (catalin@moz-nnh.lvl.120.86.IP) (Ping timeout: 121 seconds)
- # [00:16] <Waldo> I will say, the idea of an HTTP server running on an open port as communication medium does not exactly fill me with confidence
- # [00:16] <Waldo> but then again, it sounds like you really do want something server-y here, so maybe that's just unavoidable
- # [00:16] <jduell> Waldo: does httpd.js support AJAX-style requests (i.e. some requests just sit for a while until the server feels like replying
- # [00:16] <jduell> )?
- # [00:16] <Waldo> jduell: the default mode of operation for a handler is synchronous response
- # [00:16] <Waldo> jduell: there's an opt-in mode to handle things asynchronously
- # [00:16] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [00:16] <jduell> I’m not sure if they need that, but they might (they originally wanted to use websockets)
- # [00:16] * Quits: jdm (jdm@moz-3eu2pc.cpe.teksavvy.com) (Quit: )
- # [00:17] <Waldo> jduell: and in that case you could response.processAsync(); and then send off data at whatever intervals are desired
- # [00:17] <jduell> Waldo: OK cool—good to know
- # [00:17] * maja_zf|afk is now known as maja_zf
- # [00:18] <Waldo> jduell: on a skim now I *did* see that we have no request timeout functionality at the moment, tho, which may be an undesirable lapse (especially if sync handling is in use)
- # [00:19] <Waldo> jduell: also I'm certain we're missing the capability to make any response at all until the entirety of the request head (GET ... and all headers) has been processed, which may or may not matter to you
- # [00:20] <Waldo> jduell: the one really truly creaky part of all our HTTP testing gunk is our ssltunnel thing -- that *definitely* is in no shape to ship :-)
- # [00:20] <jduell> Waldo: is that needed to talk HTTPS to httpd.js?
- # [00:21] <Waldo> jduell: yes; httpd.js doesn't handle secure connections on its own
- # [00:21] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [00:21] * AutomatedTester is now known as AutomatedTester|AFK
- # [00:21] <jduell> right, that makes sense. Hmm.
- # [00:21] <Waldo> from the start of ssltunnel.cpp:
- # [00:21] <Waldo> WARNING: DO NOT USE THIS CODE IN PRODUCTION SYSTEMS. It is highly likely to be plagued with the usual problems endemic to C (buffer overflows and the like). We don't especially care here (but would accept patches!) because this is only intended for use in our test harnesses in controlled situations where input is guaranteed not to be malicious.
- # [00:22] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [00:22] <Waldo> ted: ^ blast from the past :-)
- # [00:22] <Waldo> before that happened I had vague ideas of implementing TLS support myself, to learn the protocol and stuff
- # [00:22] * Quits: betty (bzlandfill@moz-e06.e82.117.141.IP) (Quit: CGI:IRC (EOF))
- # [00:23] <Waldo> of course, had I done so, that would have been an even crazier thing for you to be using :-)
- # [00:23] <jduell> :)
- # [00:23] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/110de326fa1a - Xidorn Quan - Bug 1227001 part 1 - Remove SetupBreakSinksFlags from BuildTextRunsScanner. r=jfkthame
- # [00:23] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4e16f87eda89 - Xidorn Quan - Bug 1227001 part 2 - Remove no longer used mExistingTextRun from BreakSink. r=jfkthame
- # [00:23] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/536455795509 - Xidorn Quan - Bug 1227001 part 3 - Remove no longer used mChangedBreaks from BreakSink. r=jfkthame
- # [00:23] <Waldo> not sure about timing, but I think at that time httpd.js had purely sync handling, and that would have had to be fixed for TLS to be practical
- # [00:26] * Joins: elin (elin@moz-ck1dib.dynamic-ip.hinet.net)
- # [00:27] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [00:29] * yzen is now known as yzen_
- # [00:29] * Quits: Aryx (Archaeopter@moz-fcgm4a.cust.telecolumbus.net) (Quit: Goodbye)
- # [00:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f5efa2ed37ac - Jakob Olesen - Bug 1210554 - Fix unified build breakage. r=sfink
- # [00:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cbb4146343f3 - Jakob Olesen - Bug 1210554 - Add testAssemblerBuffer to jsapi-tests. r=sstangl
- # [00:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fe68d5adf1c9 - Jakob Olesen - Bug 1210554 - Implement BranchDeadlineSet. r=nbp
- # [00:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/774b04222cba - Jakob Stoklund Olesen - Bug 1210554 - Wire up branchDeadlines_ partially. No Asm callbacks yet. r=nbp
- # [00:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6a1c3892b4b5 - Jakob Olesen - Bug 1210554 - Implement constant pool test. r=nbp
- # [00:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f356bb9fac1a - Jakob Olesen - Bug 1210554 - Add PatchShortRangeBranchToVeneer(). r=nbp
- # [00:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ca19392cbc43 - Jakob Olesen - Bug 1210554 - Add enum ImmBranchRangeType. r=sstangl
- # [00:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8478e51fd7a8 - Jakob Olesen - Bug 1210554 - Change representation of unbound Label linked lists. r=sstangl
- # [00:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bf36faaf8408 - Jakob Olesen - Bug 1210554 - Dynamically track short-range branches. r=sstangl
- # [00:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/355ed0ade977 - Jakob Olesen - Bug 1210554 - Handle toggled calls in CodeFromJump(). r=sstangl
- # [00:30] * gregglind is now known as gregglind_away
- # [00:30] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Ping timeout: 121 seconds)
- # [00:32] * Quits: dragana (Instantbird@moz-a3tajl.dynamic.surfer.at) (Ping timeout: 121 seconds)
- # [00:34] * yzen_ is now known as yzen
- # [00:35] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [00:35] * yzen is now known as yzen_
- # [00:35] <jduell> mfinkle: cpearce: ping
- # [00:36] * Joins: LilyLappy (Cupcake@moz-h1eera.customer.tdc.net)
- # [00:39] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [00:39] * Quits: yzen_ (yzen@moz-rjb4dr.cable.teksavvy.com) (Ping timeout: 121 seconds)
- # [00:39] <glandium> bholley: ping
- # [00:39] <thinker> RyanVM: Except of laggy, does the patch fix the invaldation issues?
- # [00:40] <RyanVM> thinker: yes, the threejs issue is fixed
- # [00:40] <RyanVM> but oh my, the scrolling issues! :P
- # [00:40] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [00:40] <RyanVM> i had to revert my build because it was basically unusable
- # [00:42] <thinker> RyanVM: ok! Thank you!
- # [00:42] <RyanVM> thinker: getting closer! :)
- # [00:43] * khuey is now known as khuey|away
- # [00:43] * Quits: mancas (uid112837@moz-cr08jc.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [00:43] * khuey|away is now known as khuey
- # [00:43] <thinker> RyanVM: do you mean scrolling for the example case? or for all pages?
- # [00:43] <RyanVM> general pages
- # [00:46] * Quits: secretrobotron (secretrobot@moz-d1bl4m.cpe.pppoe.ca) (A TLS packet with unexpected length was received.)
- # [00:47] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [00:51] * Quits: elin (elin@moz-ck1dib.dynamic-ip.hinet.net) (Client exited)
- # [00:52] * Quits: bogdan_maris (Instantbird@moz-us8.non.122.86.IP) (Ping timeout: 121 seconds)
- # [00:54] * Quits: givanica (Thunderbird@moz-n61.k1v.26.188.IP) (Client exited)
- # [00:58] * Quits: Mnyromyr (Mnyromyr@moz-5hf4hv.gnf7.tkmq.0908.2a02.IP) (Quit: ChatZilla 0.9.92 [SeaMonkey 2.39/20151103174305])
- # [00:58] * Joins: atsai (atsai@moz-ijr8jj.HINET-IP.hinet.net)
- # [00:58] * Quits: gabor (gabor@moz-sa0jjs.dip0.t-ipconnect.de) (Quit: This computer has gone to sleep)
- # [00:59] * mcote|afk is now known as mcote
- # [01:00] * Quits: jimm (jmathies@moz-sng2os.dhcp.embarqhsd.net) (Quit: )
- # [01:02] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [01:02] * Quits: mwu_ (mwu@moz-piq.hdj.88.64.IP) (Ping timeout: 121 seconds)
- # [01:02] * Quits: mjf (anonymous@moz-r17qgu.dyn.grandenetworks.net) (Client exited)
- # [01:04] <cpearce> jduell: pong
- # [01:04] * ewong|away is now known as ewong
- # [01:05] <bholley> glandium: hi
- # [01:06] <glandium> bholley: hey, do you have cycle for a review on bug 1226119?
- # [01:06] <glandium> *cycles
- # [01:06] * Quits: dagnir (dagnir@moz-uer.jjv.122.166.IP) (Quit: Leaving)
- # [01:06] <bholley> glandium: looking
- # [01:07] * Quits: MaxIvanov (MIvanov@moz-rd7.51j.125.50.IP) (A TLS packet with unexpected length was received.)
- # [01:07] <glandium> bholley: note I don't really know what I'm doing and the patch might as well be clearing "normal" exceptions too
- # [01:08] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [01:09] <bholley> glandium: I think we should put it in WriteCachedScript
- # [01:10] <bholley> glandium: if JS_EncodeScript fails, just clear the pending exception and return NS_ERROR_FAILURE
- # [01:10] * Quits: mhowell (Matt_Howell@moz-09a.i8g.126.207.IP) (Quit: http://pidgin.renatosilva.me - Pidgin++)
- # [01:10] * Quits: BenWa (bgirard@66.207.193.21) (Client exited)
- # [01:10] <glandium> bholley: what about WriteCachedFunction?
- # [01:10] <bholley> glandium: it's stubbed out
- # [01:10] <bholley> glandium: see the impl
- # [01:10] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/8d9c87b4c312 - Wes Kocher - Bug 1221499 - Skip some failing tests on the recently enabled e10s+windows combo a=me
- # [01:10] <glandium> bholley: oh indeed
- # [01:11] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [01:11] <glandium> bholley: seems the commented impl should still get the same treatment, just in case
- # [01:11] <bholley> glandium: Ideally exceptions are handled at the boundary between bool-returning and nsresult-returning APIs
- # [01:11] <bholley> glandium: sure
- # [01:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/80234c36f1b7 - J. Ryan Stinnett - Bug 1226570 - Remove chrome://browser/skin/ from DevTools. r=bgrins
- # [01:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/10973adc0c3e - J. Ryan Stinnett - Bug 1226661 - DevTools client JSM global tweak for B2G. r=ochameau
- # [01:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/6f5cb09bd534 - J. Ryan Stinnett - Bug 1226699 - Package DevTools client in Graphene. r=fabrice
- # [01:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/06223b0f30bb - J. Ryan Stinnett - Bug 1226699 - Add per-app DevTools prefs to Graphene. r=fabrice
- # [01:12] * Quits: zer0 (zer0@moz-t1mtug.upc-f.chello.nl) (Ping timeout: 121 seconds)
- # [01:12] * Quits: VladimirBelonenko (oliverthor@moz-rd7.51j.125.50.IP) (Ping timeout: 121 seconds)
- # [01:12] * Quits: till (till@moz-gn1b3v.dyn.telefonica.de) (A TLS packet with unexpected length was received.)
- # [01:12] <glandium> bholley: does it matter that we'd be changing a NS_ERROR_OUT_OF_MEMORY to NS_ERROR_FAILURE?
- # [01:12] <bholley> glandium: I think that is preferable
- # [01:12] * Joins: catalinb (catalin@moz-nnh.lvl.120.86.IP)
- # [01:12] <bholley> glandium: the old code was assuming that it would only fail on OOM
- # [01:12] <bholley> glandium: in which there wouldn't be an exception on cx
- # [01:13] <bholley> glandium: (returning false without setting an exception is JSAPI-speak for OOM)
- # [01:13] <bholley> glandium: which is why the code doesn't try to handle pending exceptions
- # [01:13] <RyanVM> karlt: argh, mid-aired with the same bug
- # [01:13] <bholley> glandium: but with this ASMJS exception, that assumption is no longer valid
- # [01:13] <RyanVM> karlt: guess I can just drop my comment then
- # [01:13] <bholley> glandium: so we need to handle the exception, and should generalize the return code while we're at it
- # [01:13] <glandium> bholley: makes sense. thanks
- # [01:14] <bholley> glandium: np - sorry for the lag, I'm not really on top of my bugmail these days
- # [01:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/efbb3d9ac473 - Chris Pearce - Bug 1223980 - Move CopyArrayBufferViewOrArrayBufferData to EMEUtis and add GetArrayBufferViewOrArrayBufferData. r=bz
- # [01:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a64de8faad45 - Chris Pearce - Bug 1223980 - Add iterable<ArrayBuffer,MediaKeyStatus> to MediaKeyStatusMap. r=bz
- # [01:15] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [01:15] * terrence-bbiab is now known as terrence
- # [01:16] * Joins: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net)
- # [01:16] * Quits: catalinb (catalin@moz-nnh.lvl.120.86.IP) (Ping timeout: 121 seconds)
- # [01:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/11a75b65a0f5 - Chenxia Liu - Bug 1226523 - Fennec crashes after transferring bookmarks and history. r=margaret
- # [01:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/6502f752a806 - Chenxia Liu - Bug 1225092 - Improper behavior when accessing log in screen from on-boarding screen. r=ally
- # [01:17] * Joins: zer0 (zer0@moz-t1mtug.upc-f.chello.nl)
- # [01:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d7f5fc8192f5 - Michael Comella - Bug 1227322 - Remove nightly flag from homepage pref. r=margaret
- # [01:17] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [01:17] * Joins: catalinb (catalin@moz-nnh.lvl.120.86.IP)
- # [01:18] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [01:18] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [01:19] * stephend is now known as stephend|dentist
- # [01:19] * Quits: gsvelto (gsvelto@moz-3mvb2i.clienti.tiscali.it) (A TLS packet with unexpected length was received.)
- # [01:20] <glandium> bholley: what nsresult local are you refering to in your review comment?
- # [01:20] <bholley> glandium: rv
- # [01:20] <bholley> glandium: I'm just saying return NS_ERROR_FAILURE and NS_OK directly in those two places
- # [01:20] * Quits: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net) (Client exited)
- # [01:20] * Joins: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net)
- # [01:21] <glandium> bholley: will PutBuffer return something else?
- # [01:22] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [01:22] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (A TLS packet with unexpected length was received.)
- # [01:22] <glandium> mmm looks like it can
- # [01:23] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [01:23] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [01:23] <philor> bgrins: https://treeherder.mozilla.org/#/jobs?repo=try&revision=fc8a1d7327a6
- # [01:24] <philor> bgrins: well, that too to know what to expect, but https://hg.mozilla.org/try/rev/39ef350caf36 was what I actually meant for you
- # [01:24] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [01:24] <karlt> RyanVM: regression-window?
- # [01:25] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [01:26] <karlt> RyanVM: in response to "same bug" wondering which bug
- # [01:26] * Joins: ehugg (ehugg@moz-ba7.sr5.107.128.IP)
- # [01:26] <bgrins> philor: awesome, thanks!
- # [01:26] <bgrins> And also, the weird only-failing on linux debug and aurora test_jsterm_autocomplete.html issue is still there
- # [01:26] <bgrins> :(
- # [01:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/4d565d45bb09 - Michael Comella - Bug 1224214 - Remove "Set current tab" checkbox from homepage setting. r=margaret
- # [01:26] <glandium> bholley: can you check the newly attached patch is what you meant?
- # [01:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/24f341faa9f5 - B2G Bumper Bot - Bumping gaia.json for 6 gaia revision(s) a=gaia-bump
- # [01:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/0ca54166a511 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [01:27] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/f8c58b5949a9 - John Daggett - Bug 1160506 - support intra-family font fallback. r=heycam, a=ritu
- # [01:28] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (Ping timeout: 121 seconds)
- # [01:28] * Quits: saelo (saelo@moz-ju7oe2.hsi14.kabel-badenwuerttemberg.de) (Ping timeout: 121 seconds)
- # [01:28] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [01:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c90ac54a37d3 - Mark Finkle - Bug 1215012 - mdnsd - Firefox Beta Android excessive battery usage r=xeonchen
- # [01:29] * Joins: elin (elin@moz-ck1dib.dynamic-ip.hinet.net)
- # [01:29] <bholley> glandium: oh sorry
- # [01:29] <bholley> glandium: I didn't look at the PutBuffer part closely enough
- # [01:29] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=19d89caa664d - 15 changesets
- # [01:30] * Joins: saelo (saelo@moz-ju7oe2.hsi14.kabel-badenwuerttemberg.de)
- # [01:30] * Joins: betty (bzlandfill@moz-2t3.j04.117.141.IP)
- # [01:30] <bholley> glandium: I'd prefer to put data in a smart pointer, but I'd also be fine to just return rv after the js_free
- # [01:31] <bholley> glandium: but you should be able to just put the buffer in a ScopedJSFreePtr and then return PutBuffer(...)
- # [01:32] <@njn> I'm getting this when I try to use |hg bzexport| : UnicodeEncodeError: 'ascii' codec can't encode character u'\u2013' in position 149: ordinal not in range(128)
- # [01:32] <@njn> \u2013 is "en dash"
- # [01:32] <@njn> I can't see that char in the log message, or anything like that
- # [01:33] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [01:35] * Joins: lizzard (ehenry@moz-ruk7u5.ca.comcast.net)
- # [01:35] * Quits: elin (elin@moz-ck1dib.dynamic-ip.hinet.net) (Ping timeout: 121 seconds)
- # [01:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c09f387f9631 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [01:36] * Joins: yzen (yzen@moz-rjb4dr.cable.teksavvy.com)
- # [01:37] * Quits: mwobensmith (mwobensmith@moz-v8k4e3.2rkg.9kg1.0101.2620.IP) (Quit: Leaving.)
- # [01:37] * wlach is now known as wlach|afk
- # [01:37] <glandium> bholley: error: no viable conversion from 'void *' to 'js::ScopedJSFreePtr<void>' ; I'll skip that part.
- # [01:37] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [01:38] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [01:38] * Joins: smaug (chatzilla@moz-6kbmhh.rev.dnainternet.fi)
- # [01:38] * killer sets mode: +o smaug
- # [01:38] <bholley> glandium: you could do a uint8_t* probably
- # [01:38] <glandium> bholley: JS_EncodeScript returns a void*
- # [01:39] <bholley> glandium: ah
- # [01:39] <bholley> glandium: more trouble than it's worth I guess
- # [01:39] * Quits: atsai (atsai@moz-ijr8jj.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [01:39] * Joins: skeuomor1 (skeuomorf@moz-5kr.q8a.32.197.IP)
- # [01:39] * Joins: elin (elin@moz-ck1dib.dynamic-ip.hinet.net)
- # [01:39] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [01:40] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [01:40] * Quits: yzen (yzen@moz-rjb4dr.cable.teksavvy.com) (Ping timeout: 121 seconds)
- # [01:42] * Quits: skeuomorf (skeuomorf@moz-a2j.ubs.32.197.IP) (Ping timeout: 121 seconds)
- # [01:45] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [01:45] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [01:46] * Joins: BenWa (bgirard@moz-2as2d7.cable.teksavvy.com)
- # [01:46] * Joins: bbondy_ (bbondy@moz-ahsdem.home.cgocable.net)
- # [01:47] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [01:47] * Quits: AaronMT (AaronMT@moz-jm97fj.cable.rogers.com) (Quit: Textual IRC Client: www.textualapp.com)
- # [01:48] * Quits: bgrins (bgrins@moz-91f08e.ujol.1ibb.0101.2620.IP) (Quit: Leaving.)
- # [01:49] * Quits: metasansana (metasansana@moz-c02.uvq.213.190.IP) (Quit: Leaving)
- # [01:49] * Joins: smontagu (chatzilla@moz-ehfsg4.red.bezeqint.net)
- # [01:50] * Quits: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net) (Client exited)
- # [01:51] * Quits: elin (elin@moz-ck1dib.dynamic-ip.hinet.net) (Client exited)
- # [01:52] * Quits: mchang (mchang@moz-94gnti.res.rr.com) (Client exited)
- # [01:52] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [01:53] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [01:53] <RyanVM> karlt: the assertion bug
- # [01:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=3869a03c10a9 - 17 changesets
- # [01:54] <nigelb> RyanVM: I'm guessing the ones philor filed?
- # [01:54] <RyanVM> no, regressionwindow-wanted bug
- # [01:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8d9c87b4c312 - Wes Kocher - Bug 1221499 - Skip some failing tests on the recently enabled e10s+windows combo a=me
- # [01:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/19d89caa664d - Wes Kocher - Merge b2ginbound to central, a=merge
- # [01:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c9131227ffde - Wes Kocher - Merge m-c to b2ginbound, a=merge
- # [01:55] * Quits: bbondy_ (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [01:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/pushloghtml?changeset=dcae05a0b0da - 17 changesets
- # [01:56] * Joins: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net)
- # [01:57] * hwine is now known as hwine|mtg
- # [01:57] * bc|bbl is now known as bc
- # [01:58] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (A TLS packet with unexpected length was received.)
- # [01:58] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [01:58] * Quits: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com) (Quit: quit)
- # [01:58] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [01:58] * Joins: bgrins (bgrins@moz-fpsekt.5rnr.mii9.0647.2601.IP)
- # [01:59] * Joins: Enn (enn@moz-coa.u1v.233.99.IP)
- # [02:00] * Quits: jimb (user@moz-09a.i8g.126.207.IP) (Ping timeout: 121 seconds)
- # [02:01] * Quits: @smaug (chatzilla@moz-6kbmhh.rev.dnainternet.fi) (Ping timeout: 121 seconds)
- # [02:01] <@njn> huh, no problem uploading a patch to a diffrent bug
- # [02:01] <@njn> must be something weird about that bug
- # [02:02] * Quits: drno (nohlmeier@moz-cfhap5.mtv2.mozilla.com) (Client exited)
- # [02:03] <@njn> wait, it's something about having heycam as the reviewer
- # [02:04] <@njn> ah
- # [02:04] <@njn> "Cameron McCormack (:heycam) (away Nov 23 – Dec 4) <cam@mcc.id.au> is not currently accepting 'review' requests."
- # [02:04] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [02:05] * @khuey should do that
- # [02:09] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [02:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/2948ba54950b - Kris Maglione - Bug 1226423: Don't inject WebExtension APIs into documents without WebExtension principals. r=billm
- # [02:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/f127897cdf01 - Kris Maglione - Bug 1226423: [webext] Add tests for API injection into background pages. r=billm
- # [02:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/65cd2c7696e4 - Kris Maglione - Bug 1226423: [wbext] Add tests for panel popup API injection. r=billm
- # [02:10] * Quits: myk (myk@moz-a0qqto.2rkg.9kg1.0101.2620.IP) (Ping timeout: 121 seconds)
- # [02:16] * Quits: chrisccoulson (chr1s@moz-oo6mn7.uno.uk.net) (Quit: OSError: [Errno 130] Owner died)
- # [02:17] <@ted> Waldo: hah!
- # [02:17] * Quits: jsteinbrecher (jsteinbrech@moz-mcs.sr5.107.128.IP) (Client exited)
- # [02:17] * Quits: fracting (fracting@moz-etr.siu.9.119.IP) (Ping timeout: 121 seconds)
- # [02:17] <@ted> Waldo: i keep wishing i could replace ssltunnel+httpd.js with a bit of python
- # [02:17] <Waldo> ted: too bad I mentioned that httpd.js didn't handle SSL, it would have been lulz if they'd found that comment in the actual audit ;-)
- # [02:18] <@ted> haha
- # [02:19] * Quits: aleth (instantb@moz-enf.f6q.51.151.IP) (Quit: :tiuQ)
- # [02:19] * Joins: m_kato (m_kato@moz-9rv9tl.dh-connect.net)
- # [02:19] * mcote is now known as mcote|afk
- # [02:19] * Quits: catalinb (catalin@moz-nnh.lvl.120.86.IP) (Ping timeout: 121 seconds)
- # [02:19] * Quits: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net) (Client exited)
- # [02:21] * AutomatedTester|AFK is now known as AutomatedTester
- # [02:21] * Quits: RyanVM (Thunderbird@moz-gb8lmh.fios.verizon.net) (Client exited)
- # [02:22] <@njn> khuey: go on vacation for 2 weeks?
- # [02:22] * KWierso is now known as KWierso|afk
- # [02:23] * Joins: a-865 (fmcz@moz-ipbm7f.cable.mindspring.com)
- # [02:23] <Waldo> khuey has sort of a forced vacation coming up, sadly
- # [02:24] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [02:25] <@njn> I like how automatic retriggering of orange jobs gives the same shitty tests a chance to fail again
- # [02:26] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [02:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/78211ac0edc8 - Nicholas Nethercote - Bug 1187116 (part 5) - Replace nsBaseHashtable::EnumerateRead() calls in dom/indexedDB/ with iterators. r=khuey.
- # [02:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c2e0af18244f - Nicholas Nethercote - Bug 1187116 (part 6) - Replace nsBaseHashtable::EnumerateRead() calls in dom/indexedDB/ with iterators. r=khuey.
- # [02:30] * Quits: spohl1 (Adium@moz-bs1.ie6.61.108.IP) (Quit: Leaving.)
- # [02:30] * Joins: spohl (Adium@moz-bs1.ie6.61.108.IP)
- # [02:30] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (Ping timeout: 121 seconds)
- # [02:30] * Quits: WaltS48_away (Thunderbird@moz-j2oiav.east.verizon.net) (Client exited)
- # [02:30] * Joins: fracting (fracting@moz-etr.siu.9.119.IP)
- # [02:30] * AutomatedTester is now known as AutomatedTester|AFK
- # [02:30] * Quits: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net) (Quit: )
- # [02:31] <glandium> njn: iirc there are tests where we do rely on httpd.js a) being js b) having access to xpcom
- # [02:32] * Joins: elin (elin@moz-bfl22a.dynamic.hinet.net)
- # [02:32] <spohl> TheOne: thanks for following up on youtube unblocker. I sent a report directly to them, but didn't realize that we had internal resources for this too.
- # [02:32] <glandium> for simple static http content, we could use a python http server, though
- # [02:35] * Joins: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net)
- # [02:36] * Quits: azakai (alon@moz-dlrtut.ujol.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [02:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/eb7962bf88a8 - Kris Maglione - Bug 1209184: Part 1a - [webext] Make localization work in content processes. r=billm
- # [02:37] * khuey is now known as khuey|away
- # [02:38] * Joins: Shrooms (Shrooms@moz-7ursk6.ip.windstream.net)
- # [02:40] * Joins: sankha (sankha@moz-g7l.b0d.106.27.IP)
- # [02:41] * Quits: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net) (Client exited)
- # [02:41] * Joins: clokep (Instantbird@moz-r19lfq.cable.rcn.com)
- # [02:44] * Quits: sankha (sankha@moz-g7l.b0d.106.27.IP) (Ping timeout: 121 seconds)
- # [02:44] * Quits: betty (bzlandfill@moz-2t3.j04.117.141.IP) (Quit: CGI:IRC (Ping timeout))
- # [02:45] * Quits: billm (billm@moz-pc1vh7.mh2d.1ibb.0101.2620.IP) (Quit: Leaving)
- # [02:45] * Joins: jesup|mac (chatzilla@moz-l7d6u7.fios.verizon.net)
- # [02:46] * Joins: secretrobotron (secretrobot@moz-d1bl4m.cpe.pppoe.ca)
- # [02:47] * Joins: yzen (yzen@moz-rjb4dr.cable.teksavvy.com)
- # [02:51] * Quits: botond|laptop (quassel@moz-nn5elo.3t38.sij7.f0c8.2607.IP) (A TLS packet with unexpected length was received.)
- # [02:51] * Quits: secretrobotron (secretrobot@moz-d1bl4m.cpe.pppoe.ca) (Ping timeout: 121 seconds)
- # [02:51] * yzen is now known as yzen_
- # [02:52] * Quits: francois (francois@moz-cnggv3.fmarier.org) (Quit: ZNC - http://znc.in)
- # [02:53] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [02:53] * Quits: jduell (jduell@moz-rpmp7n.tukw.qwest.net) (Client exited)
- # [02:55] * Quits: bdahl (bdahl@moz-u3dg2t.sfo1.mozilla.com) (A TLS packet with unexpected length was received.)
- # [02:55] * Quits: ericjung (ericjung@moz-h2a.9hc.161.107.IP) (Ping timeout: 121 seconds)
- # [02:55] * Quits: yzen_ (yzen@moz-rjb4dr.cable.teksavvy.com) (Ping timeout: 121 seconds)
- # [02:56] * hwine|mtg is now known as hwine-ooo
- # [02:57] <edwin> seth: Both :) and :( on the gif bug
- # [02:57] <edwin> I guess that averages out to :|
- # [02:59] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (A TLS packet with unexpected length was received.)
- # [03:00] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [03:00] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (A TLS packet with unexpected length was received.)
- # [03:00] * Quits: Sxean (Sxean@moz-rd7.51j.125.50.IP) (Ping timeout: 121 seconds)
- # [03:00] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [03:01] * Quits: dmose (uid42639@moz-4sb1pp.charlton.irccloud.com) (Quit: Connection closed for inactivity)
- # [03:01] * Quits: MMurrell (MaxMurrell@moz-rd7.51j.125.50.IP) (Ping timeout: 121 seconds)
- # [03:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/a59d57130e96 - Felipe Gomes - Bug 1226487 - Allow e10s to run on Beta. r=mconley
- # [03:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/0ed0b39c3541 - Felipe Gomes - Bug 1226487 - Enable e10s checks for accessibility on Beta. r=mconley
- # [03:03] * Quits: JMercado (JaymeMercad@moz-rd7.51j.125.50.IP) (A TLS packet with unexpected length was received.)
- # [03:03] * Quits: surkov (surkov@moz-an5vm5.cable.teksavvy.com) (Client exited)
- # [03:04] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (Ping timeout: 121 seconds)
- # [03:06] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [03:07] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [03:07] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [03:08] <sicking> has anyone written a tool yet which automatically updates all uuid's of all interfaces changed in a given patch?
- # [03:08] * sicking would love such a tool
- # [03:10] * Joins: azakai|2 (alon@moz-l3ofdg.sntcca.sbcglobal.net)
- # [03:10] * Joins: tessarakt2 (jens@moz-ishkhr.dyn.telefonica.de)
- # [03:10] * Quits: hardtolearn (Thunderbird@moz-u99.t4o.140.113.IP) (Ping timeout: 121 seconds)
- # [03:11] * Quits: roguishmountain (Thunderbird@moz-ohie80.wireless.rit.edu) (Ping timeout: 121 seconds)
- # [03:11] <Waldo> edwin: it's gif, you can have both :-) and :-( alternating ;-)
- # [03:13] <seth> edwin: up late tonight? =)
- # [03:13] * Joins: roguishmountain (Thunderbird@moz-ohie80.wireless.rit.edu)
- # [03:13] <seth> edwin: i intended all those changes to be minor
- # [03:13] <seth> edwin: but yeah, i'm still working on a patch to ensure we never have these problems again
- # [03:13] <seth> it's turned into a Thing tho
- # [03:14] * Joins: hardtolearn (Thunderbird@moz-u99.t4o.140.113.IP)
- # [03:14] * Quits: tessarakt (jens@moz-u2k1uj.dyn.telefonica.de) (Ping timeout: 121 seconds)
- # [03:14] <seth> sicking: isn't that ./mach update-uuids?
- # [03:15] <sicking> ooooh!
- # [03:15] <seth> sicking: does it transitively too =)
- # [03:15] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [03:17] * Quits: Enn (enn@moz-coa.u1v.233.99.IP) (Ping timeout: 121 seconds)
- # [03:17] <edwin> seth: The London office is... quite socially active, some nights :)
- # [03:18] <seth> =)
- # [03:18] * Quits: zer0 (zer0@moz-t1mtug.upc-f.chello.nl) (Quit: This computer has gone to sleep)
- # [03:21] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [03:23] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [03:24] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [03:24] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [03:24] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [03:25] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [03:26] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [03:26] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [03:27] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [03:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f161061f73a6 - Nicholas Nethercote - Bug 1187152 (part 1) - Replace nsBaseHashtable::Enumerate() calls in modules/ with iterators. r=mwu.
- # [03:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ce754612fecf - Nicholas Nethercote - Bug 1187152 (part 2) - Replace nsBaseHashtable::Enumerate() calls in modules/ with iterators. r=froydnj.
- # [03:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0aec4fd3842f - Nicholas Nethercote - Bug 1187152 (part 3) - Replace nsBaseHashtable::Enumerate() calls in modules/ with iterators. r=froydnj.
- # [03:28] * Quits: bholley (bholley@moz-cfhap5.mtv2.mozilla.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [03:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1c0c87d8cd2b - Mike Hommey - Bug 1151124 - Add a simplified version of pymake's clinetoargv to mozbuild and use it. r=gps
- # [03:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/83a0a377faa4 - Mike Hommey - Bug 1226119 - Clear pending exception from script cache writing failure. r=bholley
- # [03:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9ef9720309ef - Mike Hommey - Bug 1224000 - Install defaults/permissions file under browser/ instead of under browser/chrome/browser. r=mshal,r=MattN
- # [03:30] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (Ping timeout: 121 seconds)
- # [03:31] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [03:31] * Joins: jimb (user@moz-6gkikn.or.comcast.net)
- # [03:32] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [03:32] * skeuomor1 is now known as skeuomorf
- # [03:32] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [03:33] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [03:34] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [03:36] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [03:36] * Joins: capella-s3 (capella-s3@moz-j12tdj.pools.spcsdns.net)
- # [03:37] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [03:38] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [03:38] * Quits: msvb-lab (mschloh@moz-ra8g7o.ggde.8eh4.0470.2001.IP) (Client exited)
- # [03:39] * chmanchester is now known as chmanchester|afk
- # [03:39] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [03:39] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [03:40] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (A TLS packet with unexpected length was received.)
- # [03:47] * Joins: secretrobotron (secretrobot@moz-d1bl4m.cpe.pppoe.ca)
- # [03:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/acad68770dba - Jonas Sicking - Bug 1217456: Add a security flag for controlling redirects. Use this flag in fetch() implementation. r=bkelly,jduell
- # [03:51] * Quits: adusca|afk (uid71833@moz-2mjhct.tooting.irccloud.com) (Quit: Connection closed for inactivity)
- # [03:51] * Quits: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [03:51] * Quits: secretrobotron (secretrobot@moz-d1bl4m.cpe.pppoe.ca) (Ping timeout: 121 seconds)
- # [03:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/befb8e2645ef - Xidorn Quan - Bug 1227129 - Apply 'will-change: transform' to fullscreen-warning when it is shown. r=roc
- # [03:54] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [03:55] * mattwoodrow is now known as mattwoodrow|away
- # [03:58] * mattwoodrow|away is now known as mattwoodrow
- # [03:59] <philor> I can't wait until we get gtests running as a separate suite
- # [03:59] <philor> so I can immediately hide it
- # [03:59] * Quits: jesup|mac (chatzilla@moz-l7d6u7.fios.verizon.net) (Ping timeout: 121 seconds)
- # [04:02] * Quits: Boriss (Boriss@moz-aq4.h2b.247.173.IP) (Client exited)
- # [04:02] * Joins: jesup|mac (chatzilla@moz-l7d6u7.fios.verizon.net)
- # [04:03] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [04:04] * Quits: capella-s3 (capella-s3@moz-j12tdj.pools.spcsdns.net) (Connection closed)
- # [04:05] * Joins: capella-s3 (capella-s3@moz-j12tdj.pools.spcsdns.net)
- # [04:07] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [04:10] <@roc> anyone around who knows about PBackground/PContent?
- # [04:10] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Ping timeout: 121 seconds)
- # [04:13] * Quits: capella-s3 (capella-s3@moz-j12tdj.pools.spcsdns.net) (Connection closed)
- # [04:13] * Quits: &dbaron (dbaron@moz-mbhc6k.2rkg.9kg1.0101.2620.IP) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [04:13] * Joins: capella-s3 (capella-s3@moz-fqk1gv.rq6o.8gsn.6000.2604.IP)
- # [04:15] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [04:18] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [04:19] * Quits: capella-s3 (capella-s3@moz-fqk1gv.rq6o.8gsn.6000.2604.IP) (Ping timeout: 121 seconds)
- # [04:25] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [04:29] * Quits: elin (elin@moz-bfl22a.dynamic.hinet.net) (Client exited)
- # [04:29] <jgilbert> any DOM peers around?
- # [04:30] <@bz_away> yes
- # [04:30] <@bz_away> (stupid ones, who admit to it)
- # [04:31] * Quits: clokep (Instantbird@moz-r19lfq.cable.rcn.com) (Ping timeout: 121 seconds)
- # [04:31] * sheppy is now known as sheppy-offline
- # [04:32] * Quits: jimb (user@moz-6gkikn.or.comcast.net) (Ping timeout: 121 seconds)
- # [04:33] <jgilbert> bz_away, so...you probably don't want to look at the patch around it, but:
- # [04:33] <jgilbert> bz_away, https://bugzilla.mozilla.org/page.cgi?id=splinter.html&bug=1221822&attachment=8683395
- # [04:33] * Joins: elin (elin@moz-bfl22a.dynamic.hinet.net)
- # [04:33] <jgilbert> bz_away, minor webidl changes for [throws] wrt Tex*Image*() in WebGL
- # [04:33] * glob|away is now known as glob
- # [04:34] <jgilbert> (and minor formatting)
- # [04:35] * Quits: Waldo (waldo@moz-e9af6p.ujol.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [04:36] * Joins: sicking (sicking@moz-6jefvm.ca.comcast.net)
- # [04:36] * maja_zf is now known as maja_zf|afk
- # [04:39] * Quits: chewey (chewey@moz-gb8kbv.dip0.t-ipconnect.de) (NickServ (RECOVER command used by chewey_))
- # [04:39] * Joins: chewey (chewey@moz-v88oat.dip0.t-ipconnect.de)
- # [04:40] * Quits: jesup|mac (chatzilla@moz-l7d6u7.fios.verizon.net) (Ping timeout: 121 seconds)
- # [04:45] * Quits: sicking (sicking@moz-6jefvm.ca.comcast.net) (Ping timeout: 121 seconds)
- # [04:46] * Quits: wcpan (quassel@moz-iot3vo.info) (Ping timeout: 121 seconds)
- # [04:46] * Joins: sicking (sicking@moz-6jefvm.ca.comcast.net)
- # [04:47] * Joins: Waldo (waldo@moz-e9af6p.ujol.1ibb.0101.2620.IP)
- # [04:47] <@bz_away> jgilbert: sorry, back. Looking
- # [04:48] <@bz_away> jgilbert: all the IDL changes are whitespace, yes?
- # [04:49] * Quits: lizzard (ehenry@moz-ruk7u5.ca.comcast.net) (Client exited)
- # [04:49] * Quits: justindarc (justindarc@moz-lev.v84.203.209.IP) (Quit: )
- # [04:50] <jgilbert> bz_away, mostly comments and formatting. I think the only change is texImage3D can't actually throw
- # [04:50] <jgilbert> well, not only can it not, but it doesn't share an overload with a func that does
- # [04:50] <jgilbert> so I removed [throws] from it
- # [04:51] <jgilbert> (WebGL2RenderingContext2.webidl)
- # [04:52] * Joins: dbaron (dbaron@moz-1ufb1d.dynamic.fusionbroadband.com)
- # [04:52] * killer sets mode: +ao dbaron dbaron
- # [04:52] <jgilbert> bz_away, it looks like the spec idl doesn't have [throws] anywhere, so this is really just a change for the bindings generation
- # [04:53] * Joins: wcpan (quassel@moz-iot3vo.info)
- # [04:53] * Quits: KaiRo_away (robert@moz-s9l04e.highway.telekom.at) (A TLS packet with unexpected length was received.)
- # [04:57] * Joins: lizzard (ehenry@moz-ruk7u5.ca.comcast.net)
- # [04:58] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [04:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/2f614bcd9405 - Jeff Gilbert - Bug 1221822 - Finish the WebGL texture refactor. r=kamidphish,mattwoodrow,bz
- # [05:02] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [05:03] * Quits: jgilbert (Jeff@moz-5avdn8.ujol.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [05:05] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [05:06] * Joins: bgrins1 (bgrins@moz-8nki2b.5rnr.mii9.0647.2601.IP)
- # [05:08] * Quits: bgrins (bgrins@moz-fpsekt.5rnr.mii9.0647.2601.IP) (Ping timeout: 121 seconds)
- # [05:09] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Ping timeout: 121 seconds)
- # [05:12] * Joins: capella-s3 (capella-s3@moz-fqk1gv.rq6o.8gsn.6000.2604.IP)
- # [05:12] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [05:12] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [05:16] * Joins: ericjung (ericjung@moz-h2a.9hc.161.107.IP)
- # [05:17] * Quits: glob (glob@moz-a0fskj.glob.com.au) (A TLS packet with unexpected length was received.)
- # [05:19] <@bz_away> jgilbert: Yep, [Throws] is an impl detail
- # [05:19] <@bz_away> jgilbert: Not a spec thing.
- # [05:24] * Quits: capella-s3 (capella-s3@moz-fqk1gv.rq6o.8gsn.6000.2604.IP) (Ping timeout: 121 seconds)
- # [05:24] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [05:25] * Joins: capella-s3 (capella-s3@moz-fqk1gv.rq6o.8gsn.6000.2604.IP)
- # [05:29] * Quits: bgrins1 (bgrins@moz-8nki2b.5rnr.mii9.0647.2601.IP) (Quit: Leaving.)
- # [05:36] * Joins: drno (nohlmeier@moz-vp31sp.ca.comcast.net)
- # [05:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/2d2ae514a8b9 - Jim Chen - Bug 1221270 - Turn GeckoService into an IntentService; r=snorp
- # [05:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/da519a37edc1 - Jim Chen - Bug 1221270 - Add GeckoService event to schedule updates via alarm manager; r=snorp
- # [05:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d19f1416a81e - Jim Chen - Bug 1221270 - Let AddonUpdateService use AddonManagerPrivate to check for updates; r=mfinkle
- # [05:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/f6cccadd2eed - Jim Chen - Bug 1221270 - Schedule and perform GMP updates in AddonUpdateService; r=snorp
- # [05:37] * Quits: capella-s3 (capella-s3@moz-fqk1gv.rq6o.8gsn.6000.2604.IP) (Ping timeout: 121 seconds)
- # [05:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5082370c9ea0 - Nicholas Nethercote - Bug 1225007 (part 1, attempt 3) - Use LayoutDevicePixel more in Cocoa widget code. r=kats.
- # [05:38] * Joins: capella-s3 (capella-s3@moz-fqk1gv.rq6o.8gsn.6000.2604.IP)
- # [05:40] * Quits: capella-s3 (capella-s3@moz-fqk1gv.rq6o.8gsn.6000.2604.IP) (Quit: Talk atcha later)
- # [05:41] * Joins: sankha (sankha@moz-g7l.b0d.106.27.IP)
- # [05:42] <@njn> roc: are there any existing bugs that convert gfxContext use to DrawTarget use?
- # [05:42] <@njn> or documentation, or something that indicates how/what is involved?
- # [05:46] * Quits: roguishmountain (Thunderbird@moz-ohie80.wireless.rit.edu) (Ping timeout: 121 seconds)
- # [05:48] <&dbaron> njn, a simple example is e2bcbb901d5e
- # [05:49] * Joins: bgrins (bgrins@moz-0bmbl2.ca.comcast.net)
- # [05:49] * Joins: jimb (user@moz-6gkikn.or.comcast.net)
- # [05:49] * Quits: bgrins (bgrins@moz-0bmbl2.ca.comcast.net) (Connection closed)
- # [05:50] * Joins: bgrins (bgrins@moz-ra2ba5.5rnr.mii9.0647.2601.IP)
- # [05:50] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [05:50] * Joins: dgmurdockiii (dgmurdockii@moz-k0424l.in.comcast.net)
- # [05:51] <@njn> dbaron: thank you
- # [05:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/70ac67b986d3 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [05:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c6893ed724af - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [05:56] * Quits: achronop (achronop@moz-tccgef.dyn.forthnet.gr) (Ping timeout: 121 seconds)
- # [06:00] * Joins: achronop (achronop@moz-d9h20r.dyn.forthnet.gr)
- # [06:02] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [06:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=227989411ad6 - 16 changesets
- # [06:06] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [06:06] * Joins: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net)
- # [06:06] * Joins: achronop_ (achronop@moz-7l37u9.dyn.forthnet.gr)
- # [06:07] * Quits: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net) (Client exited)
- # [06:08] * Quits: achronop (achronop@moz-d9h20r.dyn.forthnet.gr) (Ping timeout: 121 seconds)
- # [06:09] * Quits: jgriffin (uid51409@moz-si9qbr.highgate.irccloud.com) (Quit: Connection closed for inactivity)
- # [06:11] * Joins: achronop__ (achronop@moz-gu6fmd.dyn.forthnet.gr)
- # [06:12] * Quits: achronop_ (achronop@moz-7l37u9.dyn.forthnet.gr) (Ping timeout: 121 seconds)
- # [06:21] * Quits: sankha (sankha@moz-g7l.b0d.106.27.IP) (Connection closed)
- # [06:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/58d49370eb71 - Mark Finkle - Bug 1226292 - Add telemetry for Find in Page r=liuche
- # [06:28] * Quits: Shrooms (Shrooms@moz-7ursk6.ip.windstream.net) (Ping timeout: 121 seconds)
- # [06:31] * Joins: Shrooms (Shrooms@moz-7ursk6.ip.windstream.net)
- # [06:37] * Quits: fracting (fracting@moz-etr.siu.9.119.IP) (Ping timeout: 121 seconds)
- # [06:43] * Quits: DavidTJH (uid97756@moz-h50ota.ealing.irccloud.com) (Quit: Connection closed for inactivity)
- # [06:43] * Quits: sicking (sicking@moz-6jefvm.ca.comcast.net) (Client exited)
- # [06:45] * Joins: sicking (sicking@moz-6jefvm.ca.comcast.net)
- # [06:45] * Quits: @roc (chatzilla@moz-8b3t8p.nn3i.kiip.e780.2400.IP) (Ping timeout: 121 seconds)
- # [06:46] * Joins: janv (varga@moz-h6r21h.dynamic.orange.sk)
- # [06:50] * Quits: lizzard (ehenry@moz-ruk7u5.ca.comcast.net) (Client exited)
- # [06:51] * Quits: elin (elin@moz-bfl22a.dynamic.hinet.net) (Ping timeout: 121 seconds)
- # [06:52] * Quits: Waldo (waldo@moz-e9af6p.ujol.1ibb.0101.2620.IP) (Quit: ChatZilla 0.9.92-rdmsoft [XULRunner 35.0.1/20150122214805])
- # [06:52] * Joins: elin (elin@moz-2hf62a.HINET-IP.hinet.net)
- # [06:53] * Joins: nattokirai (nattokirai@moz-9rv9tl.dh-connect.net)
- # [06:54] * Quits: bgrins (bgrins@moz-ra2ba5.5rnr.mii9.0647.2601.IP) (Quit: Leaving.)
- # [06:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e82fd82346cb - Phil Ringnalda - Back out changeset 2f614bcd9405 (bug 1221822) for test_conformance__extensions__ext-sRGB.html and test_webgl2_alpha_luminance.html failures
- # [06:56] * Joins: fracting (fracting@moz-7a1.2kg.26.116.IP)
- # [06:58] * Joins: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net)
- # [07:01] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (A TLS packet with unexpected length was received.)
- # [07:09] * Joins: sankha (sankha@moz-cg8.2mf.119.111.IP)
- # [07:09] * Quits: nonsensickle (nonsensickl@moz-4v0.gkd.16.182.IP) (Connection closed)
- # [07:09] * Quits: smontagu (chatzilla@moz-ehfsg4.red.bezeqint.net) (Connection closed)
- # [07:09] * Joins: nonsensickle (nonsensickl@moz-4v0.gkd.16.182.IP)
- # [07:11] * Joins: smontagu (chatzilla@moz-ehfsg4.red.bezeqint.net)
- # [07:13] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [07:14] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [07:19] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (Ping timeout: 121 seconds)
- # [07:20] * Quits: capella (chatzilla@moz-62oiit.rq6o.8gsn.6000.2604.IP) (Quit: ChatZilla 0.9.92-rdmsoft [XULRunner 35.0.1/20150122214805])
- # [07:20] * Quits: janv (varga@moz-h6r21h.dynamic.orange.sk) (Connection closed)
- # [07:20] * Joins: achronop_ (achronop@moz-gbl9un.dyn.forthnet.gr)
- # [07:21] * Joins: lizzard (ehenry@moz-ruk7u5.ca.comcast.net)
- # [07:21] * Joins: capella (chatzilla@moz-pnhia5.rq6o.8gsn.6000.2604.IP)
- # [07:21] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [07:21] * mattwoodrow is now known as mattwoodrow|away
- # [07:21] * Quits: achronop__ (achronop@moz-gu6fmd.dyn.forthnet.gr) (Ping timeout: 121 seconds)
- # [07:22] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [07:23] * Joins: janv (varga@moz-h6r21h.dynamic.orange.sk)
- # [07:31] * Quits: janv (varga@moz-h6r21h.dynamic.orange.sk) (Connection closed)
- # [07:31] * Quits: Honza (chatzilla@moz-i5l.7ku.62.176.IP) (Connection closed)
- # [07:31] * Joins: janv (varga@moz-h6r21h.dynamic.orange.sk)
- # [07:31] * Joins: Honza (chatzilla@moz-i5l.7ku.62.176.IP)
- # [07:31] * Quits: elin (elin@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [07:32] * Joins: dragana (Instantbird@moz-9033s0.dynamic.surfer.at)
- # [07:32] * Quits: ketas (ketas@229-211-191-90.dyn.estpak.ee) (Connection closed)
- # [07:33] * Joins: elin (elin@moz-bfl22a.dynamic.hinet.net)
- # [07:34] * Joins: ketas (ketas@229-211-191-90.dyn.estpak.ee)
- # [07:34] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [07:34] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [07:34] * Quits: ehugg (ehugg@moz-ba7.sr5.107.128.IP) (Client exited)
- # [07:35] * Quits: lizzard (ehenry@moz-ruk7u5.ca.comcast.net) (Client exited)
- # [07:36] * Quits: dragana (Instantbird@moz-9033s0.dynamic.surfer.at) (Ping timeout: 121 seconds)
- # [07:36] * Joins: vasilica_mihasca (Thunderbird@moz-662.esi.231.62.IP)
- # [07:37] * Quits: janv (varga@moz-h6r21h.dynamic.orange.sk) (Connection closed)
- # [07:41] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [07:42] * Joins: janv (varga@moz-h6r21h.dynamic.orange.sk)
- # [07:43] * nigelb is now known as nigelb|sheriffduty
- # [07:44] * Quits: &dbaron (dbaron@moz-1ufb1d.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [07:47] * Joins: h4writer (h4writer@moz-29ljil.6k93.qujl.1812.2a02.IP)
- # [07:50] * Quits: squib (squib@moz-jei4k1.wi.charter.com) (Quit: Leaving)
- # [07:51] * Joins: kmoir-afk_ (chatzilla@moz-b1t.1qp.233.23.IP)
- # [07:52] * Quits: kmoir-afk (chatzilla@moz-b1t.1qp.233.23.IP) (Ping timeout: 121 seconds)
- # [07:52] * kmoir-afk_ is now known as kmoir-afk
- # [07:54] <nigelb|sheriffduty> oh joy.
- # [07:54] <nigelb|sheriffduty> what a mess.
- # [07:55] * Tomcat|afk is now known as Tomcat
- # [07:56] * lth|away is now known as lth
- # [07:57] * Quits: drno (nohlmeier@moz-vp31sp.ca.comcast.net) (Client exited)
- # [07:58] <Tomcat> good morning nigelb|sheriffduty
- # [08:00] <nigelb|sheriffduty> Hello :)
- # [08:01] <nigelb|sheriffduty> Tomcat: We start the day with some fun.
- # [08:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/4dca10306d58 - Kris Maglione - Bug 1208761: [webext] Support l10n.getMessage in content scripts. r=billm
- # [08:01] <nigelb|sheriffduty> I'm working on filing bugs and hiding a few Gij tests
- # [08:02] <nigelb|sheriffduty> Gij now has 50 chunks
- # [08:02] <Tomcat> yeah just make sure we star all the failures, need to work on checkin-needed now, there is a hughe backlog
- # [08:02] <Tomcat> cool thanks
- # [08:02] <nigelb|sheriffduty> I'll first bring down all trees to manageable levels
- # [08:02] <nigelb|sheriffduty> and then start filing new ones.
- # [08:02] <nigelb|sheriffduty> This is going to be a fun day :)
- # [08:03] * Quits: ericjung (ericjung@moz-h2a.9hc.161.107.IP) (Ping timeout: 121 seconds)
- # [08:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3d0bf42bd24a - Hannes Verschore - Bug 1224883: Only lazy linking from jit code expects to have valid jit code afterwards, r=jandem
- # [08:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0c1255dcd00e - Hannes Verschore - Bug 1226445: SharedStubs - Keep track of the pushed frames correctly in GetPropCallNative, r=jandem
- # [08:05] * whimboo|afk is now known as whimboo
- # [08:06] * Joins: avaida (Instantbird@moz-662.esi.231.62.IP)
- # [08:07] * Quits: mastizada (Thunderbird@moz-mek.63k.2.46.IP) (Ping timeout: 121 seconds)
- # [08:08] * Joins: myk (myk@moz-pkvath.dynamic.fusionbroadband.com)
- # [08:11] * Joins: mancas (uid112837@moz-cr08jc.brockwell.irccloud.com)
- # [08:11] * Joins: florent (Thunderbird@moz-u4r6te.abo.wanadoo.fr)
- # [08:11] * Joins: mboldan (mihai.bolda@moz-662.esi.231.62.IP)
- # [08:11] * Quits: sankha (sankha@moz-cg8.2mf.119.111.IP) (Connection closed)
- # [08:12] * Joins: sankha (sankha@moz-cg8.2mf.119.111.IP)
- # [08:13] * Joins: bogdan_maris (Instantbird@moz-662.esi.231.62.IP)
- # [08:15] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [08:16] * Quits: janv (varga@moz-h6r21h.dynamic.orange.sk) (Connection closed)
- # [08:16] * Joins: dzbarsky (Adium@moz-v18mcd.ca.comcast.net)
- # [08:18] * Joins: stransky (stransky@moz-6p10j7.net.upcbroadband.cz)
- # [08:21] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (Ping timeout: 121 seconds)
- # [08:24] * Joins: janv (varga@moz-h6r21h.dynamic.orange.sk)
- # [08:30] * Quits: stransky (stransky@moz-6p10j7.net.upcbroadband.cz) (Quit: Connection reset by beer)
- # [08:31] * Joins: zer0 (zer0@moz-t1mtug.upc-f.chello.nl)
- # [08:31] * Joins: drno (nohlmeier@moz-vp31sp.ca.comcast.net)
- # [08:32] * Joins: gcp (gcp@moz-be017m.j41b.csd9.1812.2a02.IP)
- # [08:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ddfd75c78006 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [08:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/2f30b9e6c524 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [08:34] * Quits: vasilica_mihasca (Thunderbird@moz-662.esi.231.62.IP) (Client exited)
- # [08:38] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [08:38] * Quits: myk (myk@moz-pkvath.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [08:39] * mattwoodrow|away is now known as mattwoodrow
- # [08:40] * Quits: jimb (user@moz-6gkikn.or.comcast.net) (Ping timeout: 121 seconds)
- # [08:42] <Tomcat> Sylvestre: ping
- # [08:43] <Tomcat> seth: ping
- # [08:44] * Quits: fracting (fracting@moz-7a1.2kg.26.116.IP) (Ping timeout: 121 seconds)
- # [08:46] * Quits: rkent (Thunderbird@moz-a4bmrv.wa.comcast.net) (Client exited)
- # [08:46] * Quits: florent (Thunderbird@moz-u4r6te.abo.wanadoo.fr) (Client exited)
- # [08:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/421e725a39d2 - Glenn Randers-Pehrson - Bug 75077 - Interpolate interlaced PNG images instead of libpng blocky display. r=seth
- # [08:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9257f9006397 - Glenn Randers-Pehrson - Bug 1224244 - Update in-tree libpng to version 1.6.19. r=seth
- # [08:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/861a0c06290d - Henrik Skupin - Bug 1227079 - Call to ProcessHandler also has to use shell argument. r=jlund
- # [08:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4f095301e416 - Andrew McCreight - Bug 1226709 - Enable two mochitests that seem to work with e10s. r=bz
- # [08:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/347bf2a3d48d - Gerald Squelart - Bug 1227052 - Use delete[] for sinf->IPMPData. r=jya
- # [08:49] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [08:49] * Quits: tessarakt2 (jens@moz-ishkhr.dyn.telefonica.de) (Quit: Client exiting)
- # [08:56] * Joins: rego (rego@moz-j9c.pu4.27.77.IP)
- # [08:56] * Joins: nattokirai_ (nattokirai@moz-9rv9tl.dh-connect.net)
- # [08:56] * Quits: nattokirai_ (nattokirai@moz-9rv9tl.dh-connect.net) (Client exited)
- # [08:56] * Quits: dzbarsky (Adium@moz-v18mcd.ca.comcast.net) (Quit: Leaving.)
- # [08:57] * Joins: fracting (fracting@moz-etr.siu.9.119.IP)
- # [08:57] * Joins: dzbarsky (Adium@moz-v18mcd.ca.comcast.net)
- # [08:57] * achronop_ is now known as achronop
- # [08:57] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [08:57] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [08:57] * Quits: nattokirai (nattokirai@moz-9rv9tl.dh-connect.net) (Ping timeout: 121 seconds)
- # [08:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c6d9dafc91a1 - Tom Tromey - Bug 1084430 - fix styling of <return> and <exception> in variable view; r=vporof
- # [08:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/e8da96844aed - Varun Joshi - Bug 1203345 - Add shadow to tab previews in tabs tray. r=sebastian
- # [09:00] <nigelb|sheriffduty> Tomcat: did you retry the Gij(24) on b-i?
- # [09:00] * Quits: sewardj (sewardj@moz-k2tg06.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
- # [09:00] * nigelb|sheriffduty is thinkng of hiding that chunk.
- # [09:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/0c0eb158331e - Mike Taylor - Bug 1217055 - Remove UA override for Youtube. r=margaret
- # [09:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/517cb8556db3 - Shih-Chiang Chien - Bug 1222907 - report media status to MediaCastingBar. r=mfinkle.
- # [09:01] <Tomcat> nigelb|sheriffduty: no, did c-n's
- # [09:01] <nigelb|sheriffduty> must be philor or KWierso|afk then.
- # [09:01] * Joins: dzbarsky1 (Adium@moz-v18mcd.ca.comcast.net)
- # [09:01] <Tomcat> yep
- # [09:01] * Quits: dzbarsky (Adium@moz-v18mcd.ca.comcast.net) (Connection closed)
- # [09:02] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [09:02] * Quits: janv (varga@moz-h6r21h.dynamic.orange.sk) (Connection closed)
- # [09:04] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [09:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/6a3a062f53cb - Varun Joshi - Bug 1224010 - Add UI Telemetry for setting a homepage. r=mfinkle
- # [09:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/01d196350d24 - Robert Helmer - Bug 1209341 - allow loading unsigned restartless add-ons at runtime. r=mossop
- # [09:05] <nigelb|sheriffduty> Tomcat: what's the best course of action here? File a bug, NI people, and then hide the test?
- # [09:05] <nigelb|sheriffduty> Or disable the test.
- # [09:06] <Tomcat> yeah
- # [09:06] <Tomcat> the first way
- # [09:06] <nigelb|sheriffduty> okay, on it.
- # [09:06] <Tomcat> file a unhide bug and n-i the people
- # [09:06] <nigelb|sheriffduty> Bug filed. Now to figure out whom to NI :)
- # [09:06] <Tomcat> :)
- # [09:06] <Tomcat> nigelb|sheriffduty: for the gij stuff maybe #fxos can help
- # [09:06] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/ec5135f71a22 - jignesh - Bug 1216704 - [webext] Fix incorrect parameter to getManifest in content scripts and test for the same. r=billm
- # [09:06] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/b9a99168d92d - Manuel Casas Barrado - Bug 1216791 - Change the tooltip of the Hello icon in the toolbar. r=mikedeboer
- # [09:07] <nigelb|sheriffduty> Tomcat: I'm asking around there in paralell
- # [09:07] <nigelb|sheriffduty> I figured we can hide and then immediately get someone to fix.
- # [09:07] * Joins: janv (varga@moz-h6r21h.dynamic.orange.sk)
- # [09:13] * Quits: fracting (fracting@moz-etr.siu.9.119.IP) (Ping timeout: 121 seconds)
- # [09:17] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [09:18] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [09:19] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [09:20] * Quits: dzbarsky1 (Adium@moz-v18mcd.ca.comcast.net) (Quit: Leaving.)
- # [09:20] * aselagea|afk is now known as aselagea|buildduty
- # [09:20] * Joins: dragana (Instantbird@moz-mddkaj.static.inode.at)
- # [09:21] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (Ping timeout: 121 seconds)
- # [09:23] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [09:23] * Quits: drno (nohlmeier@moz-vp31sp.ca.comcast.net) (Client exited)
- # [09:23] * Quits: Shrooms (Shrooms@moz-7ursk6.ip.windstream.net) (Ping timeout: 121 seconds)
- # [09:23] * Joins: Gijs (chatzilla@moz-q1tdpu.cable.virginm.net)
- # [09:24] * Quits: sankha (sankha@moz-cg8.2mf.119.111.IP) (Connection closed)
- # [09:25] * Joins: branor (Thunderbird@moz-tv8.87l.28.195.IP)
- # [09:25] * Joins: sankha (sankha@moz-p75.u3k.143.114.IP)
- # [09:26] * Joins: roxlu (roxlu@moz-dqem8f.dynamic.ziggo.nl)
- # [09:26] <nigelb|sheriffduty> Tomcat: You may need an OS X clobber.
- # [09:26] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [09:27] <nigelb|sheriffduty> If you're pushing another c-n onto m-i, can you clobber?
- # [09:27] * Quits: h4writer (h4writer@moz-29ljil.6k93.qujl.1812.2a02.IP) (Ping timeout: 121 seconds)
- # [09:27] <nigelb|sheriffduty> alternatively, I can clobber OS X
- # [09:28] * Joins: tzimmermann (tzimmermann@moz-ahrbap.pools.vodafone-ip.de)
- # [09:28] <Tomcat> nigelb|sheriffduty: can you clobber OSX
- # [09:29] <nigelb|sheriffduty> will do.
- # [09:29] <Tomcat> i guess we try to avoid touching the clobber file
- # [09:29] <nigelb|sheriffduty> I've only clobbered OS X 10.7
- # [09:29] <nigelb|sheriffduty> the one that's been failing.
- # [09:30] * Joins: gabor (gabor@moz-997qrp.dip0.t-ipconnect.de)
- # [09:30] * Quits: @njn (chatzilla@moz-j5l8nb.iinet.net.au) (Quit: ChatZilla 0.9.92 [Firefox 45.0a1/20151122135825])
- # [09:31] * ewong is now known as ewong|away
- # [09:32] <nigelb|sheriffduty> Tomcat: Just the issue with not touching CLOBBER file is you need to remember to clobber when you merge around :)
- # [09:32] * Quits: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net) (Client exited)
- # [09:34] * Joins: Ms2ger (Ms2ger@moz-s0uu8s.access.telenet.be)
- # [09:35] * Quits: sankha (sankha@moz-p75.u3k.143.114.IP) (Connection closed)
- # [09:35] <Tomcat> nigelb|sheriffduty: :)
- # [09:36] * Quits: BenWa (bgirard@moz-2as2d7.cable.teksavvy.com) (Client exited)
- # [09:40] * Joins: kdudka (kdudka@moz-1e6hri.broadband18.iol.cz)
- # [09:44] * ryanc is now known as ryanc_pto
- # [09:50] * Quits: capella (chatzilla@moz-pnhia5.rq6o.8gsn.6000.2604.IP) (Ping timeout: 121 seconds)
- # [09:50] * Joins: capella (chatzilla@moz-pnhia5.rq6o.8gsn.6000.2604.IP)
- # [09:51] * stephend|dentist is now known as stephend|offline
- # [09:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c9cfbe159b26 - Mantaroh Yoshinaga - Bug 1200133 - Change mochitest using TV Simulator Service. r=seanlin
- # [09:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7ceb9e1bed7c - Naoki Hirata - Bug 1221537 - Provide a flash.bat script for Windows to device image builds (especially aries). r=fabrice
- # [09:52] * Joins: mastizada (Thunderbird@moz-loe.96a.9.161.IP)
- # [09:55] * Quits: karlt (karl@moz-44uer0.xtra.co.nz) (Ping timeout: 121 seconds)
- # [09:55] * Joins: sankha (sankha@moz-cg8.2mf.119.111.IP)
- # [09:56] * Joins: roc (chatzilla@moz-fqb.ngs.98.121.IP)
- # [09:56] * killer sets mode: +o roc
- # [09:57] * Quits: gabor (gabor@moz-997qrp.dip0.t-ipconnect.de) (Quit: This computer has gone to sleep)
- # [09:57] * Joins: fracting (fracting@moz-r2p.ff6.136.117.IP)
- # [10:00] * Joins: adalucinet (Instantbird@moz-662.esi.231.62.IP)
- # [10:01] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [10:02] * Joins: sewardj (sewardj@moz-7of4os.dip0.t-ipconnect.de)
- # [10:04] * Quits: fracting (fracting@moz-r2p.ff6.136.117.IP) (Ping timeout: 121 seconds)
- # [10:05] * Joins: h4writer (h4writer@moz-fne3tl.7nd1.m5re.1811.2a02.IP)
- # [10:07] * Joins: ferjm (textual@moz-v3p1m3.dynamicIP.rima-tde.net)
- # [10:10] * Joins: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net)
- # [10:11] * Joins: fracting (fracting@moz-r2p.ff6.136.117.IP)
- # [10:12] * Joins: Aryx (Archaeopter@moz-l7oper.cust.telecolumbus.net)
- # [10:12] * Quits: sankha (sankha@moz-cg8.2mf.119.111.IP) (Connection closed)
- # [10:12] * Joins: sankha (sankha@moz-p75.u3k.143.114.IP)
- # [10:14] * Quits: mastizada (Thunderbird@moz-loe.96a.9.161.IP) (Ping timeout: 121 seconds)
- # [10:18] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [10:19] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [10:19] * Joins: chrisccoulson (chr1s@moz-oo6mn7.uno.uk.net)
- # [10:19] * Quits: fracting (fracting@moz-r2p.ff6.136.117.IP) (Ping timeout: 121 seconds)
- # [10:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/047a847b9024 - Andreas Wagner - Bug 1195256 - preferences: Align question mark to the header of the pane, r=gijs
- # [10:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/81342196fff4 - Gijs Kruitbosch - Bug 1226110 - use 'color: inherit' for the url and search bar in devedition theme, remove non-applying findbar rule, r=dao
- # [10:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/9d1be94ff95a - Gijs Kruitbosch - Bug 1227116 - fix cmd-click on SVG links as well, r=felipe
- # [10:22] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [10:23] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (Ping timeout: 121 seconds)
- # [10:25] * Joins: catalinb (catalin@moz-nnh.lvl.120.86.IP)
- # [10:25] * Joins: janv_ (varga@moz-h6r21h.dynamic.orange.sk)
- # [10:25] * Quits: janv (varga@moz-h6r21h.dynamic.orange.sk) (Connection closed)
- # [10:25] * Joins: squeakytoy (squeakytoy@moz-i4mle1.netset.se)
- # [10:26] * Joins: mastizada (Thunderbird@moz-evu.vcn.219.176.IP)
- # [10:26] * Joins: givanica (Thunderbird@moz-n61.k1v.26.188.IP)
- # [10:28] * Joins: lizzard (ehenry@moz-ruk7u5.ca.comcast.net)
- # [10:28] * Quits: sankha (sankha@moz-p75.u3k.143.114.IP) (Connection closed)
- # [10:29] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Ping timeout: 121 seconds)
- # [10:31] <Tomcat> Yoric: hi!
- # [10:31] <Tomcat> Yoric: autolander pointed me to https://treeherder.mozilla.org/#/jobs?repo=try&revision=df1c0fb1f81a
- # [10:32] * Joins: sankha (sankha@moz-cg8.2mf.119.111.IP)
- # [10:33] <Yoric> Tomcat: Oh, that's not good.
- # [10:33] <Yoric> Mmmh...
- # [10:33] <Yoric> That does look like messages I had with an older version.
- # [10:33] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [10:33] <Tomcat> Yoric: yeah wondered if that is related to your patches (so sorry for the dealy :)
- # [10:33] * Quits: capella (chatzilla@moz-pnhia5.rq6o.8gsn.6000.2604.IP) (Ping timeout: 121 seconds)
- # [10:34] <Yoric> Tomcat: Oh, that's an old Try push.
- # [10:34] <Yoric> Tomcat: For an older version of the patch.
- # [10:34] * Joins: capella (chatzilla@moz-pnhia5.rq6o.8gsn.6000.2604.IP)
- # [10:35] <Tomcat> Yoric: ok so i can push your changes ?
- # [10:35] <Yoric> Tomcat: I think so, yes.
- # [10:35] <Tomcat> cool thanks
- # [10:35] * Yoric would cross a few fingers, but it's so cold in the office that I'm afraid I wouldn't be able to uncross them.
- # [10:35] <Yoric> Thank you.
- # [10:35] * Quits: roxlu (roxlu@moz-dqem8f.dynamic.ziggo.nl) (Connection closed)
- # [10:36] * Joins: roxlu (roxlu@moz-dqem8f.dynamic.ziggo.nl)
- # [10:36] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (A TLS packet with unexpected length was received.)
- # [10:36] * Quits: sankha (sankha@moz-cg8.2mf.119.111.IP) (Connection closed)
- # [10:36] * Joins: sankha (sankha@moz-cg8.2mf.119.111.IP)
- # [10:37] * Quits: gerv (Instantbird@moz-umedjl.cable.virginm.net) (Ping timeout: 121 seconds)
- # [10:37] * Quits: sankha (sankha@moz-cg8.2mf.119.111.IP) (Connection closed)
- # [10:39] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [10:40] * Quits: mastizada (Thunderbird@moz-evu.vcn.219.176.IP) (Ping timeout: 121 seconds)
- # [10:40] <Tomcat> heh Yoric -6 C this morning also here :)
- # [10:41] <Yoric> Nice.
- # [10:41] * Joins: fracting (fracting@moz-40p.nrj.7.183.IP)
- # [10:41] <Yoric> ttaubert: Review ping.
- # [10:42] * Quits: janv_ (varga@moz-h6r21h.dynamic.orange.sk) (Connection closed)
- # [10:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/b5dca1e99e66 - Tim Huang - Bug 1225549 - Modify the data type of mThreshold of NetworkParams to long long from long. r=ettseng
- # [10:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5106b290f12a - Gabriele Svelto - Bug 1207221 - Do not prevent the system app from vibrating when it is hidden. r=bz r=dhylands
- # [10:43] * Quits: roxlu (roxlu@moz-dqem8f.dynamic.ziggo.nl) (Connection closed)
- # [10:43] * Joins: roxlu (roxlu@moz-dqem8f.dynamic.ziggo.nl)
- # [10:46] <Ms2ger> hsivonen, yt?
- # [10:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/b58eb56c2a07 - sgiles - Bug 1224609 - Ensure the primary screen is always returned in RecvScreenForBrowser if all else fails. r=wmccloskey
- # [10:46] * Joins: janv (varga@moz-h6r21h.dynamic.orange.sk)
- # [10:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/97e94e27af52 - Julian Hector - Bug 1215303 - Part 1 - add permissive mode r=jld
- # [10:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d8b6ab130caa - Julian Hector - Bug 1215303 - Part 2 - automatically enable broker when in permissive mode r=jld
- # [10:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c23c1d8c548f - Johan Lorenzo - Bug 1226581 - Increase number of chunks for tc-Gip. r=garndt
- # [10:54] * Quits: sicking (sicking@moz-6jefvm.ca.comcast.net) (Client exited)
- # [10:55] * Quits: dragana (Instantbird@moz-mddkaj.static.inode.at) (Ping timeout: 121 seconds)
- # [10:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/4d9b6b7b8550 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [10:58] * Quits: lizzard (ehenry@moz-ruk7u5.ca.comcast.net) (Client exited)
- # [10:58] * Joins: darktrojan (geoff@moz-280j3n.ihug.co.nz)
- # [10:58] * Joins: gabor (gabor@moz-j2h.21q.19.178.IP)
- # [10:59] * Joins: dragana (Instantbird@moz-mddkaj.static.inode.at)
- # [11:00] * Joins: espadrine (tyl@moz-gpr.c1p.152.213.IP)
- # [11:00] * Quits: kdudka (kdudka@moz-1e6hri.broadband18.iol.cz) (Quit: Leaving)
- # [11:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/319fa7c3997c - Jon Coppeard - Bug 1225558 - Improve module error messages r=shu
- # [11:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/37ba7d6d75a9 - Jon Coppeard - Bug 1225561 - Don't allow a module to export non-existent local bindings r=shu
- # [11:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fcd0ab49007d - Jon Coppeard - Bug 1225565 - Fix module import cycle detection r=shu
- # [11:01] * Joins: wilsonpage (wilsonpage@moz-i6u.sut.111.217.IP)
- # [11:02] * Joins: lizzard (ehenry@moz-ruk7u5.ca.comcast.net)
- # [11:02] * bc is now known as bc|afk
- # [11:03] * Quits: gabor (gabor@moz-j2h.21q.19.178.IP) (Ping timeout: 121 seconds)
- # [11:03] * Joins: gabor (gabor@moz-u51.21q.19.178.IP)
- # [11:04] * Quits: givanica (Thunderbird@moz-n61.k1v.26.188.IP) (Connection closed)
- # [11:05] * Quits: atsai (atsai@moz-2hf62a.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [11:07] * aselagea|buildduty is now known as aselagea|afk
- # [11:08] * Joins: sankha (sankha@moz-p75.u3k.143.114.IP)
- # [11:09] * aselagea|afk is now known as aselagea|buildduty
- # [11:12] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [11:16] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [11:18] * Quits: elin (elin@moz-bfl22a.dynamic.hinet.net) (Client exited)
- # [11:20] * Joins: dannas (dannas@moz-ouae8c.dependit.net)
- # [11:21] * Joins: elin (elin@moz-bfl22a.dynamic.hinet.net)
- # [11:23] * Quits: sankha (sankha@moz-p75.u3k.143.114.IP) (Connection closed)
- # [11:23] * Joins: sankha (sankha@moz-cg8.2mf.119.111.IP)
- # [11:28] * baku|away is now known as baku
- # [11:29] * emorley|away is now known as emorley
- # [11:29] * Quits: fracting (fracting@moz-40p.nrj.7.183.IP) (Ping timeout: 121 seconds)
- # [11:34] * Quits: elin (elin@moz-bfl22a.dynamic.hinet.net) (Client exited)
- # [11:34] * julienw_afk is now known as julienw
- # [11:34] * Joins: jacek (jacek@moz-hbt3j4.psi.wroc.pl)
- # [11:35] * Quits: dragana (Instantbird@moz-mddkaj.static.inode.at) (Ping timeout: 121 seconds)
- # [11:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/9579f760df01 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
- # [11:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/1b0a57fd71a3 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [11:36] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [11:38] * AutomatedTester|AFK is now known as AutomatedTester
- # [11:38] * mattwoodrow is now known as mattwoodrow|away
- # [11:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c216ff19d690 - Nicholas Nethercote - Bug 1059014 (part 3) - Remove support for pausing and resuming painting. r=dbaron.
- # [11:40] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Client exited)
- # [11:40] * Joins: till (till@moz-o9v4ca.dyn.telefonica.de)
- # [11:40] * Quits: roxlu (roxlu@moz-dqem8f.dynamic.ziggo.nl) (Connection closed)
- # [11:41] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (Ping timeout: 121 seconds)
- # [11:41] * Joins: roxlu (roxlu@moz-dqem8f.dynamic.ziggo.nl)
- # [11:41] * Joins: dragana (Instantbird@moz-mddkaj.static.inode.at)
- # [11:42] * Quits: catalinb (catalin@moz-nnh.lvl.120.86.IP) (Ping timeout: 121 seconds)
- # [11:42] * Joins: fracting (fracting@moz-etr.siu.9.119.IP)
- # [11:43] * Joins: gsvelto (gsvelto@moz-3mvb2i.clienti.tiscali.it)
- # [11:49] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
- # [11:50] * Quits: roxlu (roxlu@moz-dqem8f.dynamic.ziggo.nl) (Connection closed)
- # [11:53] * Joins: roxlu (roxlu@moz-dqem8f.dynamic.ziggo.nl)
- # [11:57] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=c6893ed724af - 15 changesets
- # [11:59] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=45273bbed8ef - 33 changesets
- # [12:01] * benfrancis|away is now known as benfrancis
- # [12:02] * Quits: Gijs (chatzilla@moz-q1tdpu.cable.virginm.net) (Quit: off to london)
- # [12:04] * Quits: darktrojan (geoff@moz-280j3n.ihug.co.nz) (Client exited)
- # [12:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/5868072bfcb5 - Michael Ratcliffe - Bug 1222232 - Help `mach eslint` find espree and escope r=pbrosset
- # [12:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/8739d8da1b0d - Michael Ratcliffe - Bug 1217922 - eslint head.js plugin does not seem to work r=pbrosset
- # [12:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/017a371f1c85 - Michael Ratcliffe - Bug 1225289 - Create appropriate .eslintrc for eslint-plugin-mozilla folder r=pbrosset
- # [12:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/2c7500d7c6de - Michael Ratcliffe - Bug 1225289 - Make eslint plugin code conform to .eslintrc r=pbrosset
- # [12:06] * Quits: dragana (Instantbird@moz-mddkaj.static.inode.at) (Ping timeout: 121 seconds)
- # [12:06] <AutomatedTester> who knows where cssom-view bugs in firefox should go?
- # [12:06] <AutomatedTester> actually think I found it. core::DOM
- # [12:07] * Joins: mastizada (Thunderbird@moz-2cl.rlv.9.161.IP)
- # [12:07] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [12:09] * Joins: dragana (Instantbird@moz-mddkaj.static.inode.at)
- # [12:11] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [12:14] * Quits: gsvelto (gsvelto@moz-3mvb2i.clienti.tiscali.it) (Ping timeout: 121 seconds)
- # [12:14] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/6d3362deccaa - aleth - Bug 1221356 - Don't package mozharness for Thunderbird builds. r=gps, a=ritu
- # [12:14] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/a9889f824f98 - Kartikaya Gupta - Bug 1214267 - Send the side to which fixed-pos items are attached so that we can move them in the compositor more correctly when the viewport size is changing. r=mattwoodrow, a=ritu
- # [12:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/044c36c2db7f - Kartikaya Gupta - Bug 1214267 - Followup to fix missing propagation of 'fixedPositionSides' to the compositor, and add it to the layers dump. r=mattwoodrow, a=ritu
- # [12:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/ccd22a68675b - Kit Cambridge - Bug 1224738 - Fix alternate action index getter name on OS X. r=MattN, a=ritu
- # [12:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/0c2d18f223f6 - Kyle Huey - Bug 1222127 - Use the inner window to compute style. r=baku, a=ritu
- # [12:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/527f7615ef42 - Gijs Kruitbosch - Bug 1222786 - make tab groups removal warning in tab groups UI more prominent, r=jaws, a=ritu
- # [12:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/ffdc3e33fc9e - Ben Kelly - Bug 1186856 - ServiceWorker .register() should always stop current registration from uninstalling. r=jdm, a=ritu
- # [12:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/8a55efc59eae - Jean-Yves Avenard - Bug 1222866 - P1. Round second to closest microseconds. r=gerald, a=lizzard
- # [12:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/124aaf8a8940 - Jean-Yves Avenard - Bug 1222866 - P3. Fix mochitest. r=me, a=lizzard
- # [12:16] * Quits: kmoir-afk (chatzilla@moz-b1t.1qp.233.23.IP) (Ping timeout: 121 seconds)
- # [12:18] <Ms2ger> AutomatedTester, Core::DOM: CSS something or other
- # [12:18] <AutomatedTester> Ms2ger: yup, found it
- # [12:18] * Quits: h4writer (h4writer@moz-fne3tl.7nd1.m5re.1811.2a02.IP) (Ping timeout: 121 seconds)
- # [12:19] <AutomatedTester> Ms2ger: is #testing on w3c logged somewhere?
- # [12:19] <Ms2ger> http://krijnhoetmer.nl/irc-logs/testing
- # [12:20] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [12:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=cf8cf1a039dd - 12 changesets
- # [12:22] * Quits: Coldblackice (anonz@moz-0ijqp3.oc.cox.net) (Ping timeout: 121 seconds)
- # [12:23] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/4d2073dcbd5a - Jean-Yves Avenard - Bug 1222866 - P1. Round second to closest microseconds. r=gerald, a=lizzard
- # [12:23] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/044c31c25c3c - Jean-Yves Avenard - Bug 1222866 - P3. Fix mochitest. r=me, a=lizzard
- # [12:24] * dminor|afk is now known as dminor
- # [12:24] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (Ping timeout: 121 seconds)
- # [12:26] * AutomatedTester is now known as AutomatedTester|AFK
- # [12:29] <hsivonen> Ms2ger: pong
- # [12:29] * Joins: gerv (Instantbird@moz-cj4.s91.103.178.IP)
- # [12:29] * Quits: mastizada (Thunderbird@moz-2cl.rlv.9.161.IP) (Ping timeout: 121 seconds)
- # [12:29] <Ms2ger> hsivonen, was going to ask about your rust question, but it looks like huon already answered
- # [12:30] * Joins: Standard8 (Standard8@moz-1hu.vrc.166.195.IP)
- # [12:32] * Joins: h4writer (h4writer@moz-fne3tl.7nd1.m5re.1811.2a02.IP)
- # [12:33] * Quits: lizzard (ehenry@moz-ruk7u5.ca.comcast.net) (Client exited)
- # [12:37] * AutomatedTester|AFK is now known as AutomatedTester
- # [12:41] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Ping timeout: 121 seconds)
- # [12:42] * Joins: secretrobotron (secretrobot@moz-d1bl4m.cpe.pppoe.ca)
- # [12:42] * Joins: flo-retina (Instantbird@moz-8kf5fi.isp.overthebox.ovh)
- # [12:42] * Joins: elin (elin@moz-ck1dib.dynamic-ip.hinet.net)
- # [12:42] * Quits: flo-retina (Instantbird@moz-8kf5fi.isp.overthebox.ovh) (A TLS packet with unexpected length was received.)
- # [12:43] * Joins: flo-retina (Instantbird@moz-8kf5fi.isp.overthebox.ovh)
- # [12:43] * Quits: gerv (Instantbird@moz-cj4.s91.103.178.IP) (Ping timeout: 121 seconds)
- # [12:47] * AutomatedTester is now known as AutomatedTester|AFK
- # [12:50] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/af47051962f8 - Kris Maglione - Bug 1226423 - Don't inject WebExtension APIs into documents without WebExtension principals. r=billm, a=al
- # [12:50] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/08c70292a9a8 - Kris Maglione - Bug 1226423: [webext] Add tests for API injection into background pages. r=billm
- # [12:50] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/e3b938c0cde2 - Kris Maglione - Bug 1226423: [wbext] Add tests for panel popup API injection. r=billm, a=al
- # [12:51] * nigelb|sheriffduty is now known as nigelb
- # [12:52] * Tomcat is now known as Tomcat|Sheriffduty
- # [12:52] * Quits: secretrobotron (secretrobot@moz-d1bl4m.cpe.pppoe.ca) (A TLS packet with unexpected length was received.)
- # [12:54] <till> gfritzsche: ping
- # [12:54] <till> gfritzsche: hey, do you know if removing a telemetry probe needs telemetry peer review?
- # [12:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5a6b4eae6d8e - Nigel Babu - Backed out changeset c9cfbe159b26 (bug 1200133) for failing it's own tests
- # [12:56] * Tomcat|Sheriffduty is now known as Tomcat|lunch
- # [12:58] * Joins: clokep (Instantbird@moz-r19lfq.cable.rcn.com)
- # [12:59] * Joins: marco (marco@moz-66q9fa.3orf.1887.0450.2001.IP)
- # [13:02] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [13:02] * Joins: catalinb (catalin@moz-nnh.lvl.120.86.IP)
- # [13:02] * Joins: KaiRo (robert@moz-np8s8c.highway.telekom.at)
- # [13:05] * aselagea|buildduty is now known as aselagea|lunch
- # [13:05] * Quits: @roc (chatzilla@moz-fqb.ngs.98.121.IP) (A TLS packet with unexpected length was received.)
- # [13:06] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [13:06] <gfritzsche> till: removing is fine
- # [13:06] <gfritzsche> till: unless you expect some important clients to use it, then we should talk about impact
- # [13:06] <till> gfritzsche: thanks, I just came to the conclusion that it probably would be, but that a clarification on the wiki page would be useful
- # [13:07] <gfritzsche> if its pretty specific to your team then it doesnt matter really :)
- # [13:07] <gfritzsche> fair point
- # [13:07] <till> gfritzsche: nah, this probe was used to prove that fixing some non-standard behavior would be web-compatible, and it's removed in the patch that does said fixing :)
- # [13:08] * Quits: terrence (terrence@moz-4opk9i.sd.cox.net) (Connection closed)
- # [13:08] <gfritzsche> ah, sure
- # [13:09] * Joins: givanica (Thunderbird@moz-716.4cl.85.141.IP)
- # [13:10] <till> gfritzsche: I asked bsmedberg for review mostly to have a good place to ask for a change of the wiki :)
- # [13:11] * Quits: clokep (Instantbird@moz-r19lfq.cable.rcn.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [13:12] * Joins: clokep (Instantbird@moz-r19lfq.cable.rcn.com)
- # [13:14] * Quits: m_gol (m_gol@moz-6k4scn.dynamic.chello.pl) (Quit: Leaving...)
- # [13:14] * whimboo is now known as whimboo|afk
- # [13:14] * Quits: rniwa (rniwa@moz-7b5uu3.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [13:15] * Quits: givanica (Thunderbird@moz-716.4cl.85.141.IP) (Ping timeout: 121 seconds)
- # [13:18] * Joins: clokep_ (Instantbird@moz-r19lfq.cable.rcn.com)
- # [13:18] * wilsonpage is now known as wilsonpage-away
- # [13:20] * Quits: clokep (Instantbird@moz-r19lfq.cable.rcn.com) (Ping timeout: 121 seconds)
- # [13:20] * clokep_ is now known as clokep
- # [13:23] * Joins: givanica (Thunderbird@moz-716.4cl.85.141.IP)
- # [13:23] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/337f0ed43821 - Carsten "Tomcat" Book - fix bad merge a=bustage-fix
- # [13:24] * Joins: Shrooms (Shrooms@moz-7ursk6.ip.windstream.net)
- # [13:25] * Joins: terrence (terrence@moz-4opk9i.sd.cox.net)
- # [13:26] * Quits: hardtolearn (Thunderbird@moz-u99.t4o.140.113.IP) (Ping timeout: 121 seconds)
- # [13:27] <ferjm> has anyone seen this error before while trying to do an hg qref https://pastebin.mozilla.org/8852947 ?
- # [13:27] * Joins: jduell (jduell@moz-rpmp7n.tukw.qwest.net)
- # [13:27] * dminor is now known as dminor|bbiab
- # [13:29] * Quits: jduell (jduell@moz-rpmp7n.tukw.qwest.net) (Client exited)
- # [13:30] <Ms2ger> ferjm, perhaps ask gps
- # [13:32] * Quits: gabor (gabor@moz-u51.21q.19.178.IP) (Quit: This computer has gone to sleep)
- # [13:34] * Joins: gabor (gabor@moz-u51.21q.19.178.IP)
- # [13:35] * Quits: dgmurdockiii (dgmurdockii@moz-k0424l.in.comcast.net) (Connection closed)
- # [13:37] * Joins: jincreator (Thunderbird@moz-588.igi.7.59.IP)
- # [13:41] * Joins: Pike (chatzilla@moz-ae04ff.dyn.telefonica.de)
- # [13:41] * Joins: secretrobotron (secretrobot@moz-d1bl4m.cpe.pppoe.ca)
- # [13:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1e426f4d6f36 - Valentin Gosu - Bug 1222352 - Resource Timing - nextHopProtocol does not work in e10s r=nwgh
- # [13:46] * Joins: roguishmountain (Thunderbird@moz-ppt.38r.21.129.IP)
- # [13:46] * Joins: aleth (instantb@moz-4an37e.ictp.it)
- # [13:47] * Quits: m_kato (m_kato@moz-9rv9tl.dh-connect.net) (Quit: Leaving...)
- # [13:47] * Joins: Anupkumar (uid16774@moz-gsqbub.tooting.irccloud.com)
- # [13:49] * Joins: smaug (chatzilla@moz-6kbmhh.rev.dnainternet.fi)
- # [13:49] * killer sets mode: +o smaug
- # [13:49] * Quits: till (till@moz-o9v4ca.dyn.telefonica.de) (A TLS packet with unexpected length was received.)
- # [13:50] * wilsonpage-away is now known as wilsonpage
- # [13:54] * Quits: roguishmountain (Thunderbird@moz-ppt.38r.21.129.IP) (Ping timeout: 121 seconds)
- # [13:54] * Joins: gustavold (gustavold@moz-feu.6v8.255.191.IP)
- # [13:55] * mdoglio|afk is now known as mdoglio
- # [13:55] * Quits: elin (elin@moz-ck1dib.dynamic-ip.hinet.net) (Client exited)
- # [13:56] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [13:57] * whimboo|afk is now known as whimboo
- # [13:59] * Tomcat|lunch is now known as Tomcat|Sheriffduty
- # [13:59] * Joins: kershaw (kershaw@moz-sdf1ss.dynamic.hinet.net)
- # [14:00] * Joins: mastizada (Thunderbird@moz-mek.63k.2.46.IP)
- # [14:00] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [14:02] * Quits: dragana (Instantbird@moz-mddkaj.static.inode.at) (Ping timeout: 121 seconds)
- # [14:02] * Quits: kershaw (kershaw@moz-sdf1ss.dynamic.hinet.net) (Client exited)
- # [14:04] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [14:04] * Joins: dragana (Instantbird@moz-mddkaj.static.inode.at)
- # [14:07] * aselagea|lunch is now known as aselagea|buildduty
- # [14:08] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [14:09] * Joins: kershaw (kershaw@moz-sdf1ss.dynamic.hinet.net)
- # [14:09] * Quits: kershaw (kershaw@moz-sdf1ss.dynamic.hinet.net) (Client exited)
- # [14:11] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (Connection closed)
- # [14:11] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [14:14] * Quits: givanica (Thunderbird@moz-716.4cl.85.141.IP) (Client exited)
- # [14:14] * Joins: givanica (Thunderbird@moz-716.4cl.85.141.IP)
- # [14:15] * dminor|bbiab is now known as dminor
- # [14:15] * Quits: ErikRose (erikrose@moz-vemooo.res.rr.com) (A TLS packet with unexpected length was received.)
- # [14:15] * benfrancis is now known as benfrancis|away
- # [14:16] * Joins: roguishmountain (Thunderbird@moz-ohie80.wireless.rit.edu)
- # [14:16] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [14:17] * Quits: sankha (sankha@moz-cg8.2mf.119.111.IP) (Connection closed)
- # [14:18] * Quits: givanica (Thunderbird@moz-716.4cl.85.141.IP) (Ping timeout: 121 seconds)
- # [14:21] * Joins: m_gol (m_gol@moz-6k4scn.dynamic.chello.pl)
- # [14:21] * Quits: aleth (instantb@moz-4an37e.ictp.it) (Quit: :tiuQ)
- # [14:21] * Joins: aleth (instantb@moz-4an37e.ictp.it)
- # [14:23] * Joins: gerv (Instantbird@moz-umedjl.cable.virginm.net)
- # [14:24] * Quits: clokep (Instantbird@moz-r19lfq.cable.rcn.com) (Ping timeout: 121 seconds)
- # [14:25] * Joins: astley (astley@moz-smn5cq.dynamic.kbtelecom.net)
- # [14:25] * sheppy-offline is now known as sheppy
- # [14:25] * Quits: m_gol (m_gol@moz-6k4scn.dynamic.chello.pl) (Ping timeout: 121 seconds)
- # [14:26] * Joins: sankha (sankha@moz-p75.u3k.143.114.IP)
- # [14:28] * Joins: glob (glob@moz-a0fskj.glob.com.au)
- # [14:37] * Quits: secretrobotron (secretrobot@moz-d1bl4m.cpe.pppoe.ca) (A TLS packet with unexpected length was received.)
- # [14:38] * Quits: adalucinet (Instantbird@moz-662.esi.231.62.IP) (Quit: buh bye!)
- # [14:40] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [14:44] * Joins: adalucinet (Mibbit@moz-662.esi.231.62.IP)
- # [14:44] * Quits: nonsensickle (nonsensickl@moz-4v0.gkd.16.182.IP) (Ping timeout: 121 seconds)
- # [14:45] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (Ping timeout: 121 seconds)
- # [14:46] * Joins: gsvelto (gsvelto@moz-3mvb2i.clienti.tiscali.it)
- # [14:49] * Joins: givanica (Thunderbird@moz-40e.4cl.85.141.IP)
- # [14:49] * Quits: shine (uid50849@moz-5q9ti4.highgate.irccloud.com) (Quit: Connection closed for inactivity)
- # [14:50] * Joins: nonsensickle (nonsensickl@moz-4v0.gkd.16.182.IP)
- # [14:50] * Quits: gsvelto (gsvelto@moz-3mvb2i.clienti.tiscali.it) (A TLS packet with unexpected length was received.)
- # [14:50] * Joins: till (till@moz-o9v4ca.dyn.telefonica.de)
- # [14:50] * Joins: Enn (enn@moz-7133vd.3t38.sij7.f0c8.2607.IP)
- # [14:52] <nigelb> Anyone else have firefox hanging with select boxes?
- # [14:52] <nigelb> Or am I a special snowflake?
- # [14:52] * Quits: flo-retina (Instantbird@moz-8kf5fi.isp.overthebox.ovh) (A TLS packet with unexpected length was received.)
- # [14:52] * benfrancis|away is now known as benfrancis
- # [14:53] <nigelb> I've had to kill aurora and nightly a few times this week thanks to this.
- # [14:53] * dminor is now known as dminor|bbiab
- # [14:54] * Joins: yzen (yzen@moz-rjb4dr.cable.teksavvy.com)
- # [14:54] * Joins: flo-retina (Instantbird@moz-8kf5fi.isp.overthebox.ovh)
- # [14:55] * Quits: till (till@moz-o9v4ca.dyn.telefonica.de) (Ping timeout: 121 seconds)
- # [14:55] * Joins: jhorak (jhorak@moz-vs8vb1.redhat.com)
- # [14:57] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [14:57] * Quits: branor (Thunderbird@moz-tv8.87l.28.195.IP) (Ping timeout: 121 seconds)
- # [14:57] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [14:57] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [14:57] * Joins: ahal (ahal@moz-b8e0a0.cpe.pppoe.ca)
- # [14:59] * Joins: Shrooms` (Shrooms@moz-j92fqa.ip.windstream.net)
- # [14:59] * Quits: Shrooms (Shrooms@moz-7ursk6.ip.windstream.net) (Ping timeout: 121 seconds)
- # [14:59] * Quits: astley (astley@moz-smn5cq.dynamic.kbtelecom.net) (Client exited)
- # [14:59] * Quits: @smaug (chatzilla@moz-6kbmhh.rev.dnainternet.fi) (Ping timeout: 121 seconds)
- # [15:00] * Joins: vingtetun_ (vnicolas@moz-81n2ta.2500.1rfi.0450.2001.IP)
- # [15:00] * Quits: Shrooms` (Shrooms@moz-j92fqa.ip.windstream.net) (Connection closed)
- # [15:00] * Joins: Shrooms (Shrooms@moz-j92fqa.ip.windstream.net)
- # [15:01] * catlee-away is now known as catlee
- # [15:01] * Joins: adusca|afk (uid71833@moz-2mjhct.tooting.irccloud.com)
- # [15:01] * adusca|afk is now known as adusca
- # [15:03] * Joins: surkov (surkov@moz-an5vm5.cable.teksavvy.com)
- # [15:03] <glob> nigelb, aurora reporting in: from here you appear to be a special snowflake
- # [15:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/e55ddcc37c63 - Gregory Arndt - Bug 1226413 - Allow task images to be built upon push r=wcosta
- # [15:03] <nigelb> glob: Seems to be a linux-specific bug (bug 1215170)
- # [15:06] * bz_away is now known as bz
- # [15:06] * Joins: tromey (tromey@moz-ukt3s3.hlrn.qwest.net)
- # [15:07] * Joins: shine (uid50849@moz-5q9ti4.highgate.irccloud.com)
- # [15:08] <glob> nigelb, perhaps that bug belongs in core :: widget:gtk ? (totally not sure, but it would be more visible than firefox :: untraiged)
- # [15:08] * Joins: bsmedberg (bsmedberg@moz-smm6jf.pa.atlanticbb.net)
- # [15:08] * killer sets mode: +o bsmedberg
- # [15:08] <nigelb> Oh good point.
- # [15:08] <@bsmedberg> rbarnes: ping if you're around
- # [15:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/487f8bd6639b - Eugen Sawin - Bug 1219178 - [1.1] Prevent ScanUntil from overshooting the target time frame. r=jya
- # [15:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1b2ec61e15cc - Eugen Sawin - Bug 1219178 - [2.1] Add frame consistency verification to reduce chance for false positive detection. r=jya
- # [15:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3c875b707350 - Eugen Sawin - Bug 1219178 - [3.1] Clamp seeking offsets to estimated frame boundaries. r=jya
- # [15:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a7416320e6ed - Eugen Sawin - Bug 1219178 - [4.1] Accept only layer III frames. r=jya
- # [15:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/af7d739c7efc - Eugen Sawin - Bug 1219178 - [5.1] Return invalid resource length when mock resource is uninitialized instead of crashing. r=jya
- # [15:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b167a7dd195e - Eugen Sawin - Bug 1219178 - [6.1] Add small test file case. r=jya
- # [15:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fa5d032e2bbe - Eugen Sawin - Bug 1219178 - [7.1] Add out-of-bounds seeking test. r=jya
- # [15:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/662635b6ed18 - Eugen Sawin - Bug 1219178 - [8.1] Constrain seek position getter to max duration. r=jya
- # [15:11] * KaiRo is now known as KaiRo_away
- # [15:11] * Joins: armenzg (armenzg@moz-jt36qr.cable.teksavvy.com)
- # [15:12] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [15:13] * Quits: NeilAway (neil@moz-ohri1d.in-addr.btopenworld.com) (Ping timeout: 121 seconds)
- # [15:13] * bc|afk is now known as bc
- # [15:14] * Joins: NeilAway (neil@moz-ohri1d.in-addr.btopenworld.com)
- # [15:14] * Joins: secretrobotron (secretrobot@66.207.193.21)
- # [15:14] * dminor|bbiab is now known as dminor
- # [15:15] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Connection closed)
- # [15:16] * Quits: jhorak (jhorak@moz-vs8vb1.redhat.com) (Quit: Leaving)
- # [15:16] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [15:16] * Joins: stransky (stransky@moz-16g.ma8.175.213.IP)
- # [15:16] * yzen is now known as yzen_
- # [15:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5178071eea2a - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [15:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/39825d62cdd8 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [15:20] * Quits: yzen_ (yzen@moz-rjb4dr.cable.teksavvy.com) (Ping timeout: 121 seconds)
- # [15:21] * julienw is now known as julienw_afk
- # [15:21] <@bsmedberg> #bmo
- # [15:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cbb7d4c40875 - Kartikaya Gupta - Bug 1226864 - Don't wait for an APZ flush on load-only or script type reftests, since they don't get snapshotted. r=dbaron
- # [15:23] * Quits: micahg (micahg@moz-sq8kti.cable.rcn.com) (Ping timeout: 121 seconds)
- # [15:23] * Joins: givanica1 (Thunderbird@moz-n61.k1v.26.188.IP)
- # [15:24] * lmandel_afk is now known as lmandel
- # [15:25] * Joins: till (till@moz-o9v4ca.dyn.telefonica.de)
- # [15:25] * julienw_afk is now known as julienw
- # [15:25] * Quits: givanica1 (Thunderbird@moz-n61.k1v.26.188.IP) (Client exited)
- # [15:26] * AutomatedTester|AFK is now known as AutomatedTester
- # [15:27] * Quits: givanica (Thunderbird@moz-40e.4cl.85.141.IP) (Client exited)
- # [15:28] * maja_zf|afk is now known as maja_zf
- # [15:30] * Joins: ehugg (ehugg@moz-bjc.sr5.107.128.IP)
- # [15:32] * Joins: jimm (jmathies@moz-sng2os.dhcp.embarqhsd.net)
- # [15:33] * Quits: roguishmountain (Thunderbird@moz-ohie80.wireless.rit.edu) (Ping timeout: 121 seconds)
- # [15:33] * Quits: flo-retina (Instantbird@moz-8kf5fi.isp.overthebox.ovh) (Ping timeout: 121 seconds)
- # [15:34] * Joins: flo-retina (Instantbird@moz-8kf5fi.isp.overthebox.ovh)
- # [15:34] * Joins: RyanVM (Thunderbird@moz-gb8lmh.fios.verizon.net)
- # [15:34] * Joins: yzen (yzen@66.207.193.21)
- # [15:34] * Joins: roguishmountain (Thunderbird@moz-ohie80.wireless.rit.edu)
- # [15:34] * Joins: garethc (Adium@moz-ohc8m1.3t38.sij7.f0c8.2607.IP)
- # [15:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ed0eee7da95b - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [15:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8881564f7266 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [15:36] * Joins: micahg (micahg@moz-sq8kti.cable.rcn.com)
- # [15:37] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [15:38] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [15:39] * Joins: ErikRose (erikrose@moz-vemooo.res.rr.com)
- # [15:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7503e23ebb92 - Ehsan Akhgari - Bug 1227148 - Add SameObject and NewObject annotations to some ServiceWorkerContainer members; r=bzbarsky
- # [15:42] * Joins: jdm (jdm@moz-3eu2pc.cpe.teksavvy.com)
- # [15:42] * Joins: lizzard (ehenry@moz-ruk7u5.ca.comcast.net)
- # [15:42] * Quits: ehugg (ehugg@moz-bjc.sr5.107.128.IP) (Client exited)
- # [15:46] * Quits: aleth (instantb@moz-4an37e.ictp.it) (Quit: :tiuQ)
- # [15:46] * Joins: aleth (instantb@moz-4an37e.ictp.it)
- # [15:47] * Joins: AaronMT (AaronMT@moz-jm97fj.cable.rogers.com)
- # [15:48] * kats|away is now known as kats
- # [15:48] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [15:49] * Joins: milan (milan@moz-crs4p2.3t38.sij7.f0c8.2607.IP)
- # [15:49] * Quits: sankha (sankha@moz-p75.u3k.143.114.IP) (Connection closed)
- # [15:49] * Joins: sankha (sankha@moz-p75.u3k.143.114.IP)
- # [15:50] * maja_zf is now known as maja_zf|brb
- # [15:51] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [15:51] * Quits: sankha (sankha@moz-p75.u3k.143.114.IP) (Connection closed)
- # [15:53] * Joins: aleth1 (instantb@moz-4an37e.ictp.it)
- # [15:54] * Joins: sankha (sankha@moz-p75.u3k.143.114.IP)
- # [15:54] * Quits: mkaply (mkaply@moz-2m01va.austtx.sbcglobal.net) (Client exited)
- # [15:56] * Quits: aleth (instantb@moz-4an37e.ictp.it) (Ping timeout: 121 seconds)
- # [15:56] * aleth1 is now known as aleth
- # [15:57] * Quits: lizzard (ehenry@moz-ruk7u5.ca.comcast.net) (Client exited)
- # [15:57] * Joins: kershaw (kershaw@moz-sdf1ss.dynamic.hinet.net)
- # [15:58] <mhoye> Anyone else getting the there.is.only.xul all over the bottom of their pages today?
- # [15:58] <mhoye> http://imgur.com/lSSMaVa
- # [15:58] * jmaher|afk is now known as jmaher|mtg
- # [15:58] <hub> mhoye: that's a broken XUL file of some sort
- # [15:58] <mhoye> Yeah, I just updated Nightly and there it was.
- # [15:59] * Quits: fracting (fracting@moz-etr.siu.9.119.IP) (Ping timeout: 121 seconds)
- # [16:01] * Joins: Gijs (gijs@moz-mb0ea5.nemh.1887.0450.2001.IP)
- # [16:04] * Quits: milan (milan@moz-crs4p2.3t38.sij7.f0c8.2607.IP) (Connection closed)
- # [16:04] * Joins: milan_ (milan@moz-nh843a.3t38.sij7.f0c8.2607.IP)
- # [16:04] * Quits: milan_ (milan@moz-nh843a.3t38.sij7.f0c8.2607.IP) (A TLS packet with unexpected length was received.)
- # [16:04] * Joins: milan (milan@moz-crs4p2.3t38.sij7.f0c8.2607.IP)
- # [16:05] * Joins: chaithanya (uid96820@moz-h9n5an.highgate.irccloud.com)
- # [16:07] <Aryx> mhoye: also shown in safe mode?
- # [16:09] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
- # [16:09] * Joins: bgrins (bgrins@moz-nrdg1r.5rnr.mii9.0647.2601.IP)
- # [16:09] * Joins: m_gol (m_gol@moz-6k4scn.dynamic.chello.pl)
- # [16:10] * Quits: Anupkumar (uid16774@moz-gsqbub.tooting.irccloud.com) (Quit: Connection closed for inactivity)
- # [16:10] * Quits: aleth (instantb@moz-4an37e.ictp.it) (Ping timeout: 121 seconds)
- # [16:11] <mhoye> Aryx: Dunno, let me see.
- # [16:11] <till> mhoye, Aryx: for me it went away when I disabled adblock plus
- # [16:11] * Joins: givanica (Thunderbird@moz-40e.4cl.85.141.IP)
- # [16:12] <Aryx> confirming, installing abp triggers this. and abp didn't get updated recently
- # [16:14] * Quits: m_gol (m_gol@moz-6k4scn.dynamic.chello.pl) (Ping timeout: 121 seconds)
- # [16:14] <Aryx> Security Error: Content at moz-nullprincipal:{b7fb9022-7766-41a9-ace1-208eea615523} may not load or link to chrome://adblockplus/locale/overlay.dtd.
- # [16:14] <Aryx> undefined entity overlay.xul:27:1
- # [16:14] <mhoye> till: I confirm that.
- # [16:14] <mhoye> Yup.
- # [16:16] <mhoye> Aryx: ABP says last updated today, on amo.
- # [16:16] * Quits: jincreator (Thunderbird@moz-588.igi.7.59.IP) (Ping timeout: 121 seconds)
- # [16:16] * Quits: roguishmountain (Thunderbird@moz-ohie80.wireless.rit.edu) (Ping timeout: 121 seconds)
- # [16:16] * maja_zf|brb is now known as maja_zf
- # [16:16] * Joins: roguishmountain (Thunderbird@moz-ohie80.wireless.rit.edu)
- # [16:17] <Aryx> search still serves 2.6.11, amo has 2.6.12
- # [16:17] <Aryx> happens in both
- # [16:18] * Joins: dbaron (dbaron@moz-1ufb1d.dynamic.fusionbroadband.com)
- # [16:18] * killer sets mode: +ao dbaron dbaron
- # [16:20] <nemo> https://news.ycombinator.com/item?id=10618773 *sigh*
- # [16:20] <nemo> yes automated scanning isn't great
- # [16:20] * Quits: adalucinet (Mibbit@moz-662.esi.231.62.IP) (Quit: http://www.mibbit.com ajax IRC Client)
- # [16:20] <nemo> but at least Firefox has a review system for their app store
- # [16:20] <nemo> unlike, oh, google's
- # [16:20] * dminor is now known as dminor|bbiab
- # [16:21] <nemo> s/app store/addons/
- # [16:21] <mhoye> man why you gotta link this channel to hackernews comments
- # [16:21] <mhoye> what did we ever to to you
- # [16:21] <nemo> heh
- # [16:21] <mhoye> ever do to you, even
- # [16:21] <nemo> mhoye: it's still way ahead of /.
- # [16:22] * armenzg is now known as armenzg_brb
- # [16:22] <nemo> I gotta get tech news *somewhere*
- # [16:22] * Quits: bogdan_maris (Instantbird@moz-662.esi.231.62.IP) (Client exited)
- # [16:22] * Joins: fracting (fracting@moz-40p.nrj.7.183.IP)
- # [16:22] <Aryx> guess it's https://bugzilla.mozilla.org/show_bug.cgi?id=1182546
- # [16:23] * Quits: sankha (sankha@moz-p75.u3k.143.114.IP) (Connection closed)
- # [16:24] * Joins: aleth (instantb@moz-4an37e.ictp.it)
- # [16:24] * mhoye can't see that.
- # [16:24] <mhoye> If somebody's on it I don't need to, though.
- # [16:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fbe817b7d365 - L. David Baron - Bug 1213587 - Add foreground color to the background color for XML error pages. r=xidorn
- # [16:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7661180c26a2 - L. David Baron - Bug 1224761 - Fix forceRepeatToCoverTiles optimization to not trigger when all stops at left edge of tile. r=roc
- # [16:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d97bfd0955d1 - Daniel Holbert - Remove workaround for bug 1224761. r=dbaron
- # [16:24] * Quits: catalinb (catalin@moz-nnh.lvl.120.86.IP) (Ping timeout: 121 seconds)
- # [16:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0ac7ee2441e5 - L. David Baron - Bug 1217833 - Fix container width in exception for line frames in nsBidiPresUtils::ReorderFrames. r=jfkthame
- # [16:25] * Quits: roguishmountain (Thunderbird@moz-ohie80.wireless.rit.edu) (Ping timeout: 121 seconds)
- # [16:25] <Aryx> http://hg.mozilla.org/mozilla-central/rev/9c2bad72beab has "Test block loading DTD from random page (r=bz,gijs)"
- # [16:26] <Gijs> Aryx: pretty sure there's a bug on file about the abp breakage
- # [16:26] <Gijs> Aryx: bug 1226823
- # [16:27] <Aryx> oh, older than a day
- # [16:27] * dminor|bbiab is now known as dminor
- # [16:27] * mcote|afk is now known as mcote
- # [16:27] <mhoye> Haha. You know who's not going to gijs and bz about bug fixing?
- # [16:27] <mhoye> going to argue, rather.
- # [16:28] * mhoye gets back to things he's remotely qualified to work on.
- # [16:28] * Quits: sewardj (sewardj@moz-7of4os.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
- # [16:28] * Joins: mjf (mjf@moz-5uj.e93.56.172.IP)
- # [16:28] * Joins: catalinb (catalin@moz-nnh.lvl.120.86.IP)
- # [16:29] <mhoye> If anyone needs me I'll be hitting the shiny rock with the less shiny rock.
- # [16:29] <till> nemo: I dispute the "still way ahead of /." part, fervently. And even regardless of that, the comments for this particular entry are just inane blabber. Not the linked blog post, mind you, which I have a bone or two to pick with, but also agree with in some parts. Why not just link to that?
- # [16:29] <Gijs> I pinged wladimir on the abp bug
- # [16:32] <nemo> till: oh. I just get annoyed at the commenters and hope bz will smack them down
- # [16:32] <nemo> till: he used to
- # [16:32] * Quits: thinker (user@moz-a3mbvg.kbronet.com.tw) (Ping timeout: 121 seconds)
- # [16:32] <nemo> till: I mean, seriously, google app store is notorious for malware
- # [16:32] * Quits: catalinb (catalin@moz-nnh.lvl.120.86.IP) (Ping timeout: 121 seconds)
- # [16:32] * chutten is now known as chutten|afk
- # [16:32] <nemo> till: in part 'cause you can redeploy an app w/o any further review, so malware distributors just buy apps off existing popular addons
- # [16:32] <Ms2ger> Doesn't sound like a particularly productive thing for him to do
- # [16:33] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [16:33] <Gijs> if bz is spending his time replying to hn comments we need to fix that.
- # [16:33] <nemo> lol
- # [16:33] <till> Ms2ger++, Gijs++
- # [16:33] <nemo> Ms2ger: it's true he usually does it for more intersting HN posts, like, oh, mozilla announcements
- # [16:33] <nemo> maybe it is a stress relieving activity of his
- # [16:33] <Gijs> look, in this case, this is someone who's been posting to the addons mailing list repeatedly
- # [16:33] <till> nemo: seriously, nobody here needs to deal with these comments
- # [16:33] <Gijs> and is frustrated that we don't give him what he wants
- # [16:34] <Gijs> of course he writes an angry blogpost with gross oversimplifications
- # [16:34] <Gijs> and of course hn loves that
- # [16:34] * Joins: jib_ (jib@moz-j7m6lt.dyn.optonline.net)
- # [16:34] <Gijs> but there is very little constructive we can do about that
- # [16:34] * Gijs goes back to dealing with the similarly content-free comments on the panorama removal bug
- # [16:35] <nemo> till: aight. sorry. he used to tho. and since I still refuse to get an account it made me feel better
- # [16:35] <nemo> I'll stop if it bugs you
- # [16:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/dc1e23ea22f4 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [16:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/e3a2d4991ae3 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [16:35] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Ping timeout: 121 seconds)
- # [16:36] <till> nemo: please do :)
- # [16:36] <nemo> till: https://news.ycombinator.com/threads?id=bzbarsky fwiw ☺
- # [16:36] <nemo> evang
- # [16:37] * till thinks places like HN epitomize the worst of what the internet can do, refuses to deal with them
- # [16:37] <nemo> huh
- # [16:37] <nemo> I personally think the SNR on HN is usually pretty darn good
- # [16:38] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [16:38] <nemo> although it seems to have gotten worse over time
- # [16:38] <nemo> maybe that's result of its popularity
- # [16:38] * Joins: lizzard (ehenry@moz-ruk7u5.ca.comcast.net)
- # [16:38] <nemo> often the comments offer a lot of insight/skepticism on the article, deflating some clickbait journalism
- # [16:38] <nemo> saves on reading
- # [16:38] <nemo> maybe not this time tho
- # [16:39] <nemo> definitely better than reddit or slashdot
- # [16:39] * Joins: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net)
- # [16:39] * Joins: sankha (sankha@moz-cg8.2mf.119.111.IP)
- # [16:40] * armenzg_brb is now known as armenzg
- # [16:40] <mhoye> I had a thing I wrote on the HN front page a few weeks ago.
- # [16:41] * glob is now known as glob|away
- # [16:41] <nemo> mhoye: ah? about what?
- # [16:41] <mhoye> One of the comments, no joke, was "This is the most pretentious thing I've ever read. Can somebody explain it to me?"
- # [16:41] <nemo> O_o
- # [16:41] <nemo> yeesh
- # [16:41] * dminor is now known as dminor|bbiab
- # [16:42] <mhoye> It was like this magical perfect diamond of what HN is, compressed into a shining jewel.
- # [16:42] <till> sounds about right, yes
- # [16:42] * adusca is now known as adusca|lunch
- # [16:42] <nemo> what was the article?
- # [16:42] * Joins: branor (Thunderbird@moz-tv8.87l.28.195.IP)
- # [16:42] * nemo wants to read it now
- # [16:43] <mhoye> just msg'ed it to you
- # [16:43] <nemo> ah
- # [16:43] * Joins: ericjung (ericjung@moz-h2a.9hc.161.107.IP)
- # [16:43] * Quits: mboldan (mihai.bolda@moz-662.esi.231.62.IP) (Connection closed)
- # [16:43] <nemo> mhoye: just looked up the HN post - that comment was voted waaaay down
- # [16:43] * mhoye shrugs.
- # [16:43] <nemo> "
- # [16:43] <nemo> It's a bit self conscious, but it's good natured and sincere, certainly not pretentious."
- # [16:45] * Quits: vicamo (vicamo@moz-kevqlt.dynamic.hinet.net) (Client exited)
- # [16:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/90d962ecd677 - dimi - Bug 1217367 - Service workers update algorithm optimization. r=bkelly
- # [16:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/c10149ff9218 - dimi - Bug 1217367 - Add a wpt test that verified coalesced .update() calls resolve properly. r=bkelly a=ritu
- # [16:47] * Joins: Jerry_Mac (hshih@moz-r7vgoa.HINET-IP.hinet.net)
- # [16:47] * mhoye needs to make comments about HN comments even less than he needs to make HN comments, so.
- # [16:48] * Quits: ggp (ggp@moz-9t7.hgg.111.189.IP) (Ping timeout: 121 seconds)
- # [16:49] * glob|away is now known as glob
- # [16:50] * Quits: Jerry_Mac (hshih@moz-r7vgoa.HINET-IP.hinet.net) (Quit: Leaving)
- # [16:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d0823da696ba - Ben Kelly - Bug 1226441 - Part 1: Add wpt test verifying fetch event waits for activate to complete; r=catalinb
- # [16:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/671bc38157d2 - Ben Kelly - Bug 1226441 - Part 2: Delay functional event dispatch until service worker is activated; r=catalinb
- # [16:51] * Quits: avaida (Instantbird@moz-662.esi.231.62.IP) (Quit: Instantbird 1.5 -- http://www.instantbird.com)
- # [16:51] * Quits: flo-retina (Instantbird@moz-8kf5fi.isp.overthebox.ovh) (A TLS packet with unexpected length was received.)
- # [16:52] * Quits: fracting (fracting@moz-40p.nrj.7.183.IP) (Ping timeout: 121 seconds)
- # [16:53] * Joins: fracting (fracting@moz-40p.nrj.7.183.IP)
- # [16:54] * Joins: ggp (ggp@moz-ste.rnc.98.179.IP)
- # [16:54] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
- # [16:56] * Joins: WeirdAl (chatzilla@moz-1kjv3e.2he4.ej4r.0642.2601.IP)
- # [16:56] <WeirdAl> !seen karlt
- # [16:56] <firebot> karlt was last seen 15 hours and 31 minutes ago, saying 'RyanVM: in response to "same bug" wondering which bug' in #developers.
- # [16:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f060b308ec40 - Brad Lassey - bug 1198450 - Firefox fails to load about:home if Firefox was installed to a folder with non-Latin name r=jimm
- # [16:57] * dminor|bbiab is now known as dminor
- # [16:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/60e8107592ff - Carsten "Tomcat" Book - Backed out changeset 098f2c2291ef (bug 634063) for causing merge conflicts when merging to mozilla-central
- # [16:58] * Quits: givanica (Thunderbird@moz-40e.4cl.85.141.IP) (Ping timeout: 121 seconds)
- # [16:58] * Quits: stransky (stransky@moz-16g.ma8.175.213.IP) (Quit: Connection reset by beer)
- # [16:58] * Quits: jdm (jdm@moz-3eu2pc.cpe.teksavvy.com) (Quit: )
- # [16:59] * Joins: BenWa (bgirard@66.207.193.21)
- # [16:59] * Tomcat|Sheriffduty is now known as Tomcat|afk
- # [17:00] * Quits: milan (milan@moz-crs4p2.3t38.sij7.f0c8.2607.IP) (A TLS packet with unexpected length was received.)
- # [17:01] <Gijs> ted: is there a bug on file about local builds having crashreporters ?
- # [17:01] * Joins: milan (milan@moz-5r1iu0.3t38.sij7.f0c8.2607.IP)
- # [17:02] * Quits: dannas (dannas@moz-ouae8c.dependit.net) (Quit: leaving)
- # [17:02] <WeirdAl> hm, roc's not around either. Anyone else here familiar with printing on Linux, nsPrintSettingsGTK.cpp? We're having some trouble with silent printing, where a default printer isn't set: we get an alert saying "Some printing functionality is not currently available."
- # [17:02] * Quits: jib_ (jib@moz-j7m6lt.dyn.optonline.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [17:02] <WeirdAl> ESR38.4
- # [17:02] * Joins: catalinb (catalin@moz-716.4cl.85.141.IP)
- # [17:02] * Joins: ejpbruel (ejpbruel@moz-q4o.o51.173.193.IP)
- # [17:02] <ejpbruel> bz: ping
- # [17:03] * Quits: vingtetun_ (vnicolas@moz-81n2ta.2500.1rfi.0450.2001.IP) (Quit: Ex-Chat)
- # [17:04] * Quits: sankha (sankha@moz-cg8.2mf.119.111.IP) (Connection closed)
- # [17:04] * Quits: mjf (mjf@moz-5uj.e93.56.172.IP) (Client exited)
- # [17:05] * armenzg is now known as armenzg_blb
- # [17:05] <mhoye> WeirdAl: mconley?
- # [17:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ce1ab07ca576 - Bas Schouten - Bug 1216366: Ensure D3D11 uploads the entire surface the first time for component alpha textures. r=nical
- # [17:06] * AutomatedTester is now known as AutomatedTester|AFK
- # [17:07] * Joins: bogdan_maris (Instantbird@moz-us8.non.122.86.IP)
- # [17:09] <jimm> do we keep cvs history somewhere? looks like bonsai is dead.
- # [17:09] <Gijs> jimm: gecko-dev on github has it, I think...
- # [17:10] * Joins: mhowell (Matt_Howell@moz-09a.i8g.126.207.IP)
- # [17:11] * KaiRo_away is now known as KaiRo
- # [17:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c2c730d6bd73 - Terrence Cole - Bug 1227144 - Use Rooted instead of AutoRegExpStaticsBuffer; r=jonco
- # [17:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/548d85c0f2cb - Terrence Cole - Bug 1226888 - Remove an incorrect assertion about store buffer state; r=jandem
- # [17:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/aea0468f02c6 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [17:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8b2f8b9bbc74 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [17:14] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [17:14] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [17:14] * Joins: abwillis (abwillis@moz-glb.ujr.97.32.IP)
- # [17:14] <mconley> WeirdAl: hi
- # [17:14] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
- # [17:14] * Joins: hunboy_ (hunboy@moz-rb39nd.pool.invitel.hu)
- # [17:15] <Ms2ger> jimm, yeah, it's just git now
- # [17:15] <mconley> WeirdAl: do you have a bug on file? If so, can you needinfo me?
- # [17:15] <WeirdAl> mconley:good morning :-) As mentioned above, we're seeing a modal dialog when we're trying to print to a PDF file on a system that has no default printer. The code looks like it would fall through to select the first printer, but that doesn't happen. No bug filed yet.
- # [17:16] * Quits: hunboy (hunboy@moz-s40rro.globonet.hu) (Ping timeout: 121 seconds)
- # [17:16] * hunboy_ is now known as hunboy
- # [17:16] <jimm> Gijs, Ms2ger: thx
- # [17:16] * AutomatedTester|AFK is now known as AutomatedTester
- # [17:16] <mconley> WeirdAl: I've recently been mucking about with printing, but for e10s support - since (I assume) e10s isn't even close to being enabled on the ESR channel yet, I doubt my changes would have affected it, but it's possible
- # [17:18] <mconley> WeirdAl: in any case, probably best to get a bug on file
- # [17:18] * Quits: fracting (fracting@moz-40p.nrj.7.183.IP) (Ping timeout: 121 seconds)
- # [17:18] <WeirdAl> All right. I'll have a bug and a looooooong stack trace in about 30 minutes
- # [17:18] * Quits: catalinb (catalin@moz-716.4cl.85.141.IP) (Connection closed)
- # [17:19] * Joins: catalinb (catalin@moz-716.4cl.85.141.IP)
- # [17:19] <WeirdAl> mconley: oh, dumb question: does Mozilla rely on CUPS for printing on Linux?
- # [17:20] * wilsonpage is now known as wilsonpage-away
- # [17:20] * Joins: smaug (chatzilla@moz-6kbmhh.rev.dnainternet.fi)
- # [17:20] * killer sets mode: +o smaug
- # [17:21] * Quits: catalinb (catalin@moz-716.4cl.85.141.IP) (Connection closed)
- # [17:21] <mconley> WeirdAl: from my recollection, we just rely on the GTK printing functions for standard printing. Those printing functions can use the cups backend.
- # [17:21] <mconley> but I don't think we get to choose.
- # [17:21] <WeirdAl> thanks
- # [17:21] <mconley> So, uh, potentially? :)
- # [17:21] * Joins: catalinb (catalin@moz-716.4cl.85.141.IP)
- # [17:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/72d69c46d14c - Jared Wein - Bug 1226796 - Remove redundant preprocessor flags in nsContainerFrame.cpp. r=jfkthame
- # [17:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/0403cb97fb51 - Jared Wein - Bug 1100662 - Fix browser_notification_tab_switching.js to work in e10s mode. r=MattN
- # [17:24] * Quits: milan (milan@moz-5r1iu0.3t38.sij7.f0c8.2607.IP) (A TLS packet with unexpected length was received.)
- # [17:24] <@dolske> haha, mconley said "GTK" and "printing" in the same sentence
- # [17:24] * jmaher|mtg is now known as jmaher
- # [17:24] * mconley shudders
- # [17:24] <WeirdAl> dolske: I do not get the joke. :|
- # [17:24] * Joins: milan (milan@moz-75dsd7.3t38.sij7.f0c8.2607.IP)
- # [17:25] <mconley> WeirdAl: let's just say that our printing mechanisms need a good ol' cleanout
- # [17:25] * gregglind_away is now known as gregglind
- # [17:26] <WeirdAl> yeah, karlt mentioned that yesterday in cc'ing me on another bug. (Last year I filed for a copy constructor bug. The one he cc'd me on obsoletes it, with extreme prejudice)
- # [17:26] * AutomatedTester is now known as AutomatedTester|AFK
- # [17:26] * Quits: branor (Thunderbird@moz-tv8.87l.28.195.IP) (Client exited)
- # [17:27] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [17:27] * Joins: WaltS48 (Thunderbird@moz-c9dl6j.east.verizon.net)
- # [17:28] <bbouvier> any mfbt overlord around?
- # [17:28] <Mossop> Who is responsible for MozillaBuild these days?
- # [17:28] <mconley> Mossop: I thought RyanVM ?
- # [17:28] <padenot> RyanVM I think
- # [17:28] * RyanVM ducks
- # [17:29] <mconley> RyanVM: it's only fair. I get printing. You get mozilla-build.
- # [17:29] <RyanVM> i'll take that deal!
- # [17:29] <WeirdAl> hehehe
- # [17:29] <Mossop> RyanVM: Just a weird thing. Because VERSION doesn't end in a new line I can't actually display it in my command line console, the console prompt overwrites it immediately
- # [17:29] <RyanVM> hah, nice
- # [17:30] <RyanVM> file a bug? I'm actually about to release v2.1 today, but I'll make sure it's fixed for the next one after that
- # [17:30] * Joins: fracting (fracting@moz-etr.siu.9.119.IP)
- # [17:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d516d82f29a2 - Jared Wein - Bug 1213421 - Add a test that verifies the text of a notification is present. r=MattN
- # [17:30] <@ted> Gijs: what do you mean about local builds having crashreporters?
- # [17:31] <WeirdAl> ... I don't get to hang out here as much these days. I really miss this place.
- # [17:32] * Quits: dragana (Instantbird@moz-mddkaj.static.inode.at) (Ping timeout: 121 seconds)
- # [17:32] * wilsonpage-away is now known as wilsonpage
- # [17:33] * Joins: VladimirBelonenko (oliverthor@moz-rd7.51j.125.50.IP)
- # [17:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/63d13b6b43ee - Randell Jesup - Bug 1226347: Import cherry-pick of AEC changes from 43->48 (delay-agnostic AEC). r=pkerr
- # [17:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/da34ad5d6957 - Paul Kerr [:pkerr] - Bug 1226347 - Part 2: Allow control of AEC via prefs. r=rjesup
- # [17:34] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [17:35] <Mossop> RyanVM: You mean I have to do something rather than complain loudly? Pfft (bug 1227589)
- # [17:35] <RyanVM> thanks :)
- # [17:35] <ejpbruel> bz: ping?
- # [17:35] <ejpbruel> !seen roc
- # [17:35] <firebot> roc was last seen 13 hours and 26 minutes ago, saying 'anyone around who knows about PBackground/PContent?' in #developers.
- # [17:36] <Ms2ger> bbouvier, ?
- # [17:37] <bbouvier> Ms2ger: i've got a pretty confusing error, msvc only, can't figure out what it is
- # [17:37] <bbouvier> \js/Vector.h(62) : error C2248: 'mozilla::VectorBase<T,0,AllocPolicy,js::Vector<T,0,AllocPolicy>>::VectorBase' : cannot access private member declared in class 'mozilla::VectorBase<T,0,AllocPolicy,js::Vector<T,0,AllocPolicy>>'
- # [17:37] * Quits: catalinb (catalin@moz-716.4cl.85.141.IP) (Ping timeout: 121 seconds)
- # [17:38] * Quits: kershaw (kershaw@moz-sdf1ss.dynamic.hinet.net) (Client exited)
- # [17:38] <Ms2ger> bbouvier, okay, not it :)
- # [17:38] <bbouvier> Ms2ger: so basically I havbe a struct S which contains a Vector, and a Vector of S
- # [17:38] * Joins: ProgramFOX (ProgramFOX@moz-s49.dhi.132.109.IP)
- # [17:39] <bbouvier> and the copy ctor of S doesn't seem to want to get compiled, for some obscure reasons
- # [17:40] * Quits: gabor (gabor@moz-u51.21q.19.178.IP) (Quit: This computer has gone to sleep)
- # [17:40] * Quits: WaltS48 (Thunderbird@moz-c9dl6j.east.verizon.net) (Client exited)
- # [17:40] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [17:40] * hwine-ooo is now known as hwine
- # [17:41] * Joins: ddahl (ddahl@moz-1mu.65k.14.24.IP)
- # [17:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d4af58f0f1e0 - Nicolas B. Pierron - Bug 1226188 - Use __VA_ARGS__ to avoid warnings with empty argument list. r=h4writer
- # [17:43] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [17:44] * Quits: mastizada (Thunderbird@moz-mek.63k.2.46.IP) (Ping timeout: 121 seconds)
- # [17:45] <&dbaron> terrence, bustage
- # [17:45] * adusca|lunch is now known as adusca
- # [17:46] <&dbaron> I'm trying to close the tree but the UI has changed
- # [17:46] <&dbaron> and it doesn't work for me anymore
- # [17:46] <terrence> dbaron: uh oh!
- # [17:46] <&dbaron> oh, I guess it requires a comment but doesn't say that it requires a commment
- # [17:47] * terrence is baffled
- # [17:48] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (Ping timeout: 121 seconds)
- # [17:49] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c4d056baaafd - Terrence Cole - Backout c2c730d6bd73 (Bug 1227144) for build bustage on a CLOSED TREE.
- # [17:50] <terrence> dbaron: I'm backed out
- # [17:50] <&dbaron> terrence, thanks, reopened
- # [17:51] <terrence> dbaron: sorry about the bustage... I built that locally in two different compilers before shipping
- # [17:51] * Quits: fracting (fracting@moz-etr.siu.9.119.IP) (Ping timeout: 121 seconds)
- # [17:51] <terrence> dbaron: in fact it appears to still build fine locally...
- # [17:52] * chutten|afk is now known as chutten
- # [17:52] * terrence tries with autospider.sh
- # [17:52] <froydnj> bbouvier: I think Vector doesn't have a copy ctor, you have to do the copying explicitly?
- # [17:53] * Joins: jgriffin (uid51409@moz-si9qbr.highgate.irccloud.com)
- # [17:53] <KWierso|afk> dbaron: closures require comments
- # [17:53] * Joins: mjf (anonymous@moz-r17qgu.dyn.grandenetworks.net)
- # [17:53] * Joins: ehsan (ehsan@moz-kf68k0.3t38.sij7.f0c8.2607.IP)
- # [17:53] * killer sets mode: +o ehsan
- # [17:54] <KWierso|afk> and it does say "required to close" next to "Reason for change"
- # [17:54] <&dbaron> KWierso|afk, not for me
- # [17:54] * wlach|afk is now known as wlach
- # [17:54] <bbouvier> but but
- # [17:55] <bbouvier> froydnj: in that case, the gcc should have yelled at me too, right?
- # [17:55] <KWierso|afk> dbaron: for me it only changes to show that once you've already selected the "closed" state from the dropdown
- # [17:55] <&dbaron> KWierso|afk, ah yes
- # [17:55] * Joins: mwu_ (mwu@moz-bsfoja.tcso.qwest.net)
- # [17:55] <froydnj> bbouvier: one would have hoped so, yes
- # [17:55] * froydnj looks at Vector.h
- # [17:55] <KWierso|afk> guess it'd be worth a bug to show it always since the statement itself is always true
- # [17:56] <&dbaron> KWierso|afk, when I figured it out I used "everything red" as the comment
- # [17:56] <froydnj> bbouvier: what does it say it can't access?
- # [17:56] * Quits: mwu_ (mwu@moz-bsfoja.tcso.qwest.net) (Client exited)
- # [17:56] <KWierso|afk> dbaron: the fires... they burn
- # [17:56] * Joins: mwu_ (mwu@moz-bsfoja.tcso.qwest.net)
- # [17:56] <bbouvier> froydnj: well, that's the tricky part, it doesn't say much more than what i've pasted above
- # [17:57] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [17:57] <bbouvier> froydnj: see https://treeherder.mozilla.org/logviewer.html#?job_id=14049472&repo=try#L24907-L24919
- # [17:57] * Joins: m_gol (m_gol@moz-6k4scn.dynamic.chello.pl)
- # [17:58] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [17:58] <froydnj> bbouvier: huh, such helpful
- # [17:58] * Joins: MaxIvanov (MIvanov@moz-rd7.51j.125.50.IP)
- # [17:59] * Quits: ferjm (textual@moz-v3p1m3.dynamicIP.rima-tde.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [17:59] <froydnj> bbouvier: ok, so here's the hypothesis
- # [17:59] <froydnj> bbouvier: VectorBase's copy constructor is = delete'd and private
- # [18:00] <terrence> dbaron: looks like someone landed bustage on top of my bustage... might want to close the tree again
- # [18:00] <KWierso|afk> terrence: still busted
- # [18:00] <KWierso|afk> ooh, not terrence
- # [18:00] <froydnj> bbouvier: Vector has a move constructor etc. which I think is supposed to inhibit the generation of the copy constructor
- # [18:00] <froydnj> bbouvier: and msvc doesn't follow the spec here (helpful!)
- # [18:00] <bbouvier> wow
- # [18:00] <froydnj> maybe?
- # [18:00] * KWierso|afk warms up ye olde backer outer
- # [18:00] <froydnj> not sure
- # [18:00] * dminor is now known as dminor|bbiab
- # [18:01] <froydnj> I would have to go examine the standard
- # [18:01] * stephend|offline is now known as stephend|mtg
- # [18:01] <bbouvier> froydnj: i'm going to try to force using the move ctor
- # [18:01] * mhowell is now known as mhowell|away
- # [18:02] <poiru> RyanVM: Since you are releasing a new version of mozilla-build, you might need to request access to the new S3 {ftp,archive}.mozilla.org here: https://mana.mozilla.org/wiki/display/SVCOPS/Product+Delivery#ProductDelivery-RequestingAccess
- # [18:02] * gaye is now known as gaye|sick
- # [18:02] <&dbaron> pkerr, ^ bustage
- # [18:02] * armenzg_blb is now known as armenzg
- # [18:02] * Quits: m_gol (m_gol@moz-6k4scn.dynamic.chello.pl) (Ping timeout: 121 seconds)
- # [18:02] <pkerr> dbaron: I see it. Have a fix.
- # [18:02] <&dbaron> KWierso|afk, ^
- # [18:02] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
- # [18:03] <KWierso|afk> pkerr: too late
- # [18:03] * Joins: givanica (Thunderbird@moz-716.4cl.85.141.IP)
- # [18:03] <KWierso|afk> backout push was pushing as dbaron pinged
- # [18:03] <froydnj> this seems pretty scary if msvc just starts using the copy ctor when it's not supposed to
- # [18:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/897bd0c1180b - Wes Kocher - Backed out 2 changesets (bug 1226347) for build bustage CLOSED TREE
- # [18:04] <pkerr> KWierso|afk: ok, I will run a quick try to verify before re-push
- # [18:05] <KWierso|afk> pkerr: reopened, feel free to re-push with a fix once you've tracked it down
- # [18:05] * Joins: fracting (fracting@moz-etr.siu.9.119.IP)
- # [18:05] * Joins: Sander (chatzilla@moz-98s.ga3.81.86.IP)
- # [18:05] * Quits: h4writer (h4writer@moz-fne3tl.7nd1.m5re.1811.2a02.IP) (Ping timeout: 121 seconds)
- # [18:05] * Quits: Ms2ger (Ms2ger@moz-s0uu8s.access.telenet.be) (Quit: nn)
- # [18:06] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [18:06] * till is now known as till|meeting
- # [18:06] <RyanVM> poiru: way ahead of you ;)
- # [18:08] <@bz> The fact that with this autogenerated constructor stuff (possibly plus compiler bugs) you can't tell what your code will do is insane. :(
- # [18:08] * Joins: m_gol (m_gol@moz-6k4scn.dynamic.chello.pl)
- # [18:09] <poiru> RyanVM: Hah, good! I had trouble finding that...
- # [18:09] <ejpbruel> bz: ping
- # [18:09] <@bz> ejpbruel: fearful ack
- # [18:09] * whimboo is now known as whimboo|afk
- # [18:09] <bbouvier> froydnj: it seems natural to try to use the copy ctor when no move ctor is defined, but there is one defined
- # [18:09] <ejpbruel> bz: hi. remember that bug we talked about yesterday? ive set up a local linux environment, but so far ive been unable to reproduce it locally
- # [18:10] <bbouvier> froydnj: and i suppose this is the one that gcc is using?
- # [18:10] <ejpbruel> bz: it does not reproduce when i run the test to failure (ive ran it 90 times)
- # [18:10] <ejpbruel> bz: im currently running the entire debugger mochitest suite to see if that makes it crash
- # [18:10] <bbouvier> maybe msvc doesn't try to define a move ctor? I guess it'd have burned our hands a few times already
- # [18:10] <ejpbruel> bz: if that doesnt reproduce it, what is my best option?
- # [18:10] <WeirdAl> mconley: you've got bugmail
- # [18:11] * Joins: Mek (quassel@moz-1rsg65.com)
- # [18:11] * glob is now known as glob|away
- # [18:11] * Joins: justindarc (justindarc@moz-lev.v84.203.209.IP)
- # [18:11] <@bz> ejpbruel: This is the "I'm getting memory corruption" bug?
- # [18:11] * Quits: milan (milan@moz-75dsd7.3t38.sij7.f0c8.2607.IP) (Ping timeout: 121 seconds)
- # [18:12] * Quits: tzimmermann (tzimmermann@moz-ahrbap.pools.vodafone-ip.de) (Quit: Ex-Chat)
- # [18:12] <@bz> ejpbruel: (failing to recall the context of what the bug was about, sorry)
- # [18:12] * Joins: milan (milan@moz-a397c0.3t38.sij7.f0c8.2607.IP)
- # [18:12] <RyanVM> poiru: it's hanging off bug 1224684 - I just got my aws access today
- # [18:12] <ejpbruel> bz: thats ok. heres the try run for the patch: https://treeherder.mozilla.org/#/jobs?repo=try&revision=b611e5cfffb7&selectedJob=13930261
- # [18:12] * Joins: jimb (user@moz-09a.i8g.126.207.IP)
- # [18:12] <WeirdAl> also, can anyone advise me why call DumpJSStack isn't working on ddd: "there is no JSContext on the stack!" -- not sure how to get one...
- # [18:12] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [18:13] <WeirdAl> (ESR38)
- # [18:13] <ejpbruel> bz: a seemingly unrelated test exits with status code 11, due to an assertion failure: isEmpty(), at ../../dist/include/mozilla/LinkedList.h:328
- # [18:13] <ejpbruel> bz: which is presumably due to a heao corruption / gc issue (not my own assessment)
- # [18:13] * aselagea|buildduty is now known as aselagea|afk
- # [18:13] * @bz looks
- # [18:13] <poiru> RyanVM: Yeah.. I signed out of it when I saw that you need GPG :(
- # [18:13] <terrence> ejpbruel: not heap corruption... gc misuse
- # [18:13] <ejpbruel> terrence: hi!
- # [18:14] <terrence> ejpbruel: hiya!
- # [18:14] <@bz> LinkedList<js::UnboxedLayout>::~LinkedList
- # [18:14] * Joins: wilsonpa_ (wilsonpage@moz-i6u.sut.111.217.IP)
- # [18:14] <ejpbruel> terrence: can you explain what you think is going on to me and bz?
- # [18:14] <@bz> I've seen that a _lot_ recently locally
- # [18:14] * Joins: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net)
- # [18:14] <@bz> during shutdown.
- # [18:14] <@bz> Just fwiw
- # [18:14] <terrence> ejpbruel: I have no idea what's going on exactly, but I can at least talk about those assertions
- # [18:14] * Quits: wilsonpage (wilsonpage@moz-i6u.sut.111.217.IP) (Ping timeout: 121 seconds)
- # [18:14] <ejpbruel> bz: yeah, it looks like this is already an intermittent issue. my patch just makes it permafail
- # [18:14] <terrence> those are basically asserting that we don't destroy the compartment while there are still live gc things inside it
- # [18:15] * ahal is now known as ahal|afk
- # [18:15] * Joins: mwobensmith (mwobensmith@moz-v8k4e3.2rkg.9kg1.0101.2620.IP)
- # [18:15] <RyanVM> poiru: not crazy about having to install a separate program for it either, but oh well I guess
- # [18:15] <RyanVM> at least I can stage it myself now :)
- # [18:15] <ejpbruel> terrence: so were destroying the compartment too early?
- # [18:15] <@bz> So ok
- # [18:15] * Joins: sankha (sankha@moz-g7l.b0d.106.27.IP)
- # [18:15] <terrence> that is important, because gc things have a reference to the compartment and thus deleting it would make most code that could run unsafe
- # [18:15] * armenzg is now known as armenzg_lunch
- # [18:15] <terrence> ejpbruel: yes
- # [18:15] <@bz> Here's what I ended up doing the last time I debugged this assert failing....
- # [18:15] <@bz> 1) Reproduce under a debugger.
- # [18:16] * Quits: wilsonpa_ (wilsonpage@moz-i6u.sut.111.217.IP) (Connection closed)
- # [18:16] <@bz> If this doesn't work out for you locally under rr, you could try locally under gdb as well, and if that fails see if you can get access to a slave to reproduce there.
- # [18:16] <@bz> Or something.
- # [18:16] * Joins: myk (myk@moz-pkvath.dynamic.fusionbroadband.com)
- # [18:16] <@bz> If all _that_ fails, go to step 3.
- # [18:16] <ejpbruel> bz: so far i cannot reproduce the issue locally at all
- # [18:16] <ejpbruel> bz: panic?
- # [18:17] <terrence> ejpbruel: maybe try bisecting the patch on try?
- # [18:17] <ejpbruel> terrence: bisect how?
- # [18:17] <ejpbruel> terrence: by landing it partially?
- # [18:17] <@bz> 2) Once reproduced under a debugger, figure out _which_ list this is in JSCompartment. The simplest way to do that, probably, is to take the pointer to the list, take the pointer to the JSCompartment, compute the offset, then compare it to the offsets of the various lists in the compartment.
- # [18:17] <terrence> ejpbruel: so the thing is, a compartment will die if Compartment::maybeAlive is not set
- # [18:18] * Joins: rkent (Thunderbird@moz-a4bmrv.wa.comcast.net)
- # [18:18] <ejpbruel> bz: right
- # [18:18] <terrence> ejpbruel: maybeAlive is set when we mark any script or object
- # [18:18] <@bz> 3) If all that fails, you can probably still figure out which list by simply adding printfs in ~JSCompartment for "this" and the offsetof to the various lists in it, and adding a printf to ~LinkedList for the pointer to the list
- # [18:18] <terrence> ejpbruel: it is also set by any incoming cross-compartment wrappers
- # [18:18] <@bz> that said, you know something from that log: it's a LinkedList<UnboxedLayout>
- # [18:19] * Joins: Waldo (waldo@moz-8dc1vi.2rkg.9kg1.0101.2620.IP)
- # [18:19] * @bz looks
- # [18:19] <@bz> Which means it's this one: http://mxr.mozilla.org/mozilla-central/source/js/src/jscompartment.h#451
- # [18:19] <@bz> Which is the same exact one that I ran into issues with, fwiw
- # [18:19] <terrence> bz: didn't bhackett already submit a patch to fix that assertion?
- # [18:19] <@bz> That's what I thought
- # [18:19] <terrence> "fix"
- # [18:19] <@bz> And I thought we checked it in.
- # [18:19] <@bz> No?
- # [18:19] * baku is now known as baku|away
- # [18:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/23460fa28bec - vivek - Bug 1220720: Notify EOL on Honeycomb r=liuche
- # [18:20] <terrence> No, I hope not! it just uncovered other gc things that were still live in the compartment
- # [18:20] <@bz> Oh
- # [18:20] <@bz> then why are we wasting ejpbruel's time
- # [18:20] * Joins: bdahl (bdahl@moz-u3dg2t.sfo1.mozilla.com)
- # [18:20] <@bz> ?
- # [18:20] <@bz> one sec.
- # [18:20] <terrence> are we?
- # [18:20] <@bz> I'm not sure.
- # [18:20] <terrence> the problem here is not the assertions
- # [18:20] * mhowell|away is now known as mhowell
- # [18:20] <terrence> there's something in his JS that is causing a compartment to die before its time
- # [18:21] <@bz> Hold on.
- # [18:21] <@bz> https://bug1181908.bmoattachments.org/attachment.cgi?id=8653650
- # [18:21] <terrence> now that should not be possible from JS... except this is system JS and it's calling a bunch of random-looking C++ that I'm not familiar with
- # [18:21] <@bz> That's the patch we landed
- # [18:21] <@bz> when I last ran into this.
- # [18:22] <terrence> wait, we landed that?
- # [18:22] <ejpbruel> terrence: specifically, the crashing test deals with worker debugging
- # [18:22] <@bz> Um... yes?
- # [18:22] <@bz> It had review. I landed it.
- # [18:22] <@bz> https://hg.mozilla.org/integration/mozilla-inbound/rev/8cd6dd07c27a
- # [18:22] * Joins: givanica1 (Thunderbird@moz-716.4cl.85.141.IP)
- # [18:22] <@bz> It was blocking other things.... ;)
- # [18:22] <terrence> bz: oh... are we /not/ talking about bug 1221892
- # [18:22] <terrence> ?
- # [18:22] <@bz> I am not yet, no
- # [18:23] <@bz> I am talking about the last time I saw this unboxedlayouts list not empty. ;)
- # [18:23] <ejpbruel> terrence: that was the original bug for which i got the issue
- # [18:23] <ejpbruel> terrence: ive since tried a different route, but the same issue popped up
- # [18:23] <ejpbruel> let me grab the bug nr
- # [18:23] <terrence> bz: ah, yes, that patch makes more sense
- # [18:23] * Quits: givanica (Thunderbird@moz-716.4cl.85.141.IP) (Ping timeout: 121 seconds)
- # [18:23] <@bz> terrence: OK, good.
- # [18:23] <@bz> terrence: I agree that https://bug1221892.bmoattachments.org/attachment.cgi?id=8690452 is kinda weird.
- # [18:24] <ejpbruel> bz: terrence: the try link i posted earlier is for bug 1218817
- # [18:24] * Quits: givanica1 (Thunderbird@moz-716.4cl.85.141.IP) (Client exited)
- # [18:24] <terrence> bz: in that case it looks like we simply forgot to manually migrate some compartment structures when merging to the main thread
- # [18:24] <@bz> terrence: yes.
- # [18:24] <@bz> ook
- # [18:24] <@bz> er, ok
- # [18:24] <@bz> So looking at the comments in 1221892 now.
- # [18:24] <terrence> bz: in the patch I r-'ed, we're just violating GC constraints
- # [18:25] * Joins: drno (nohlmeier@moz-vp31sp.ca.comcast.net)
- # [18:25] <@bz> aha
- # [18:25] * Joins: wilsonpage (wilsonpage@moz-i6u.sut.111.217.IP)
- # [18:25] <@bz> https://bugzilla.mozilla.org/show_bug.cgi?id=1221892#c28
- # [18:25] <@bz> I see.
- # [18:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/37d2aa178fc8 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [18:25] <ejpbruel> bz: terrence: im having trouble following you at this point
- # [18:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/2be426cf05b6 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [18:26] <@bz> OK, so scratch everything I said above
- # [18:26] <@bz> we know which lists are nonempty, more or less
- # [18:26] <@bz> We just have no idea why
- # [18:26] <@bz> Correct?
- # [18:26] <terrence> bz: yes
- # [18:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/55b18b66242c - Olivier Yiptong - Bug 1227274 - Fix remote url resolution test breaking aurora nightlies r=mconley
- # [18:27] * @bz ponders
- # [18:27] <terrence> bz: our compartment destruction logic is separate from our marking logic
- # [18:27] <@bz> Do we have any idea which compartment is dying?
- # [18:27] * kats is now known as kats-lunch
- # [18:27] <@bz> I guess it might be hard to tell if we've already swept the global....
- # [18:28] <terrence> bz: the global is weak
- # [18:28] <terrence> bz: the global does not directly keep the compartment live
- # [18:28] <@bz> You mean the edge from compartment to global is weak?
- # [18:28] <@bz> ah, the other way around
- # [18:28] <@bz> I see
- # [18:28] <terrence> bz: marking the global would keep the compartment live, but the global is only marked via the proto chain
- # [18:28] <terrence> bz: both, actually!
- # [18:28] <@bz> ok
- # [18:28] <terrence> bz: well, kinda
- # [18:28] <@bz> So would it help at all to know which compartment this is?
- # [18:29] <terrence> bz: there is no global->compartment edge, but marking the global does mark the comparment, so that's like a strong edge
- # [18:29] * Quits: fracting (fracting@moz-etr.siu.9.119.IP) (Ping timeout: 121 seconds)
- # [18:29] <terrence> bz: right, so we keep a compartment live for 2 reasons
- # [18:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ae0f0b8d2d06 - Jon Coppeard - Bug 1226896 - Fix OOM handling related to script counts r=nbp
- # [18:29] <terrence> bz: 1) we marked a script or object in the compartment (but not a shape or objectgroup)
- # [18:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/226fe77322b7 - Jon Coppeard - Bug 1011786 - Reset GC zeal in reftest before returning to the browser r=terrence
- # [18:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/eb9e244e3834 - Jon Coppeard - Bug 1227535 - Add ZoneAllocPolicy and use it to attribute module memory usage to the zone r=terrence
- # [18:30] <terrence> bz: or 2) there is a cross-compartment edge that enters the compartment from a compartment that is not being swept in the current GC
- # [18:30] <@bz> ok
- # [18:30] <@bz> seems sensible.
- # [18:31] <@bz> So gcWeakMapList
- # [18:31] <@bz> in the Zone
- # [18:31] <@bz> these are not objects, I assume?
- # [18:31] <@bz> (in the JSObject sense)
- # [18:31] <@bz> Looks like no
- # [18:32] <@bz> So some of these are still live in the zone...
- # [18:32] <@bz> Does _that_ tell us anything?
- # [18:32] <terrence> bz: that list is only used /during/ progressive marking of the weakmaps
- # [18:32] <terrence> bz: I'm not sure if that's even between slices
- # [18:35] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [18:35] <@bz> ok
- # [18:35] <@bz> well, that list is so far our other nonempty smoking gun....
- # [18:35] * @bz is trying to figure out what the tell ejpbruel
- # [18:36] <@bz> ejpbruel: I mean, you can do things like try to reproduce under rr on a slave...
- # [18:36] * Joins: bholley (bholley@moz-mehar5.ca.comcast.net)
- # [18:36] <@bz> ejpbruel: But I'm not sure what all is involved in that
- # [18:36] <ejpbruel> bz: do you know who i should talk to about that?
- # [18:36] * Joins: Sxean (Sxean@moz-rd7.51j.125.50.IP)
- # [18:36] <bbouvier> froydnj: FYI, making an explicit move ctor did the trick, it seems
- # [18:36] * Quits: wilsonpage (wilsonpage@moz-i6u.sut.111.217.IP) (Ping timeout: 121 seconds)
- # [18:36] <@bz> ejpbruel: I know khuey has done some things like that in the past and may be able to point you in the right direction
- # [18:37] <nbp> KWierso|afk: FYI, I am investigating the Win 8 issue with bbouvier.
- # [18:37] * Joins: wilsonpage (wilsonpage@moz-i6u.sut.111.217.IP)
- # [18:37] <ejpbruel> bz: ok, ill go talk to him. anything else i can do that would help us figure out whats causing this?
- # [18:37] * Quits: wilsonpage (wilsonpage@moz-i6u.sut.111.217.IP) (Connection closed)
- # [18:37] <bbouvier> froydnj: so if the move ctor isn't explicitly defined, msvc won't try to generate it, but gcc seems like it will
- # [18:37] <ejpbruel> terrence: ^
- # [18:37] * Joins: wilsonpage (wilsonpage@moz-i6u.sut.111.217.IP)
- # [18:37] <terrence> ejpbruel: mtg, one moment
- # [18:37] * Joins: ferjm (textual@moz-v3p1m3.dynamicIP.rima-tde.net)
- # [18:38] <ejpbruel> ok
- # [18:38] <ejpbruel> in an ideal world, i'd try to figure this out myself, but unfortunately, i dont know nearly enough about how our gc works :(
- # [18:38] <@bz> ejpbruel: Try to create a minimal patch that still reproduces the problem?
- # [18:38] * jimm is now known as jimm-lunch
- # [18:38] <@bz> ejpbruel: Not sure how viable this is here
- # [18:39] * Joins: JMercado (JaymeMercad@moz-rd7.51j.125.50.IP)
- # [18:39] <ejpbruel> bz: since the failing test doesnt actually use any of the code in the patch, i could simply remove things from it until it stops failing
- # [18:39] * Joins: MMurrell (MaxMurrell@moz-rd7.51j.125.50.IP)
- # [18:39] <KWierso|afk> dbaron: any chance you can fix the reftest orange in the test you pushed?
- # [18:40] <ejpbruel> bz: but the failing test doesnt even touch the code in the patch, so isnt this likely to be a timing issue?
- # [18:40] <&dbaron> KWierso|afk, looking
- # [18:40] * Joins: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com)
- # [18:41] * Joins: jonco (Adium@moz-vv82lg.range109-150.btcentralplus.com)
- # [18:41] <ejpbruel> khuey: ping, are you around?
- # [18:42] * armenzg_lunch is now known as armenzg
- # [18:42] * Joins: fracting (fracting@moz-40p.nrj.7.183.IP)
- # [18:42] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [18:43] * KWierso|afk is now known as KWierso
- # [18:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8ea3da3e71db - Wes Kocher - Backed out changeset eb9e244e3834 (bug 1227535) for static build bustage in ModuleObject.h CLOSED TREE
- # [18:46] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [18:47] * stephend|mtg is now known as stephend
- # [18:47] <&dbaron> KWierso|afk, v
- # [18:47] <KWierso> dbaron: thanks
- # [18:47] <KWierso> er
- # [18:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e567a54aa604 - L. David Baron - Bug 1217833 followup - Mark one test as fuzzy(43,2) on a CLOSED TREE (though fuzzy amounts needed vary by platform).
- # [18:47] <KWierso> there we go
- # [18:48] * vladan is now known as vladan|afk
- # [18:48] <nbp> KWierso: I have no clue for the Win 8 issue, you can backout Bug 1226188
- # [18:48] * maja_zf is now known as maja_zf|afk
- # [18:48] <ejpbruel> !seen khuey
- # [18:48] <firebot> khuey was last seen 16 hours and 11 minutes ago, changing nick to khuey|away .
- # [18:48] <KWierso> nbp: can do
- # [18:49] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (Ping timeout: 121 seconds)
- # [18:49] * dminor|bbiab is now known as dminor
- # [18:50] <Waldo> ejpbruel: I vaguely remember hearing he was going on PTO today, but I could be mistaken
- # [18:50] <Waldo> maybe bugzilla nick?
- # [18:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/dd05d41ce5ae - Wes Kocher - Backed out changeset d4af58f0f1e0 (bug 1226188) for MacroAssembler bustage on Windows CLOSED TREE
- # [18:51] * Quits: jacek (jacek@moz-hbt3j4.psi.wroc.pl) (Quit: Konversation terminated!)
- # [18:51] <terrence> ejpbruel: concensus at the gc meeting is that you need to get this in rr to figure out why those layouts are getting marked
- # [18:51] <&dbaron> I think khuey should be around today
- # [18:52] <&dbaron> but not tomorrow
- # [18:52] * Joins: dragana (Instantbird@moz-9033s0.dynamic.surfer.at)
- # [18:52] <ejpbruel> terrence: alright
- # [18:53] * Quits: NeilAway (neil@moz-ohri1d.in-addr.btopenworld.com) (Ping timeout: 121 seconds)
- # [18:53] <gkw> RyanVM: congratulations on MozillaBuild 2.1.0!
- # [18:53] <RyanVM> w00t :)
- # [18:53] <ejpbruel> terrence: Waldo: bz: since i cant reproduce the issue locally, i will try to reproduce this on a slave. but since i dont know whats involved with that, and the people who do will likely be on pto th/fr, it might take me a while
- # [18:53] <RyanVM> gkw: thanks for the testing!
- # [18:53] <ejpbruel> ill get back to you when i learn more
- # [18:53] <gkw> RyanVM: total nit: are you missing a dash here? https://ftp.mozilla.org/pub/mozilla/libraries/win32/ in the 2.1.0 filename
- # [18:53] <ejpbruel> terrence: bz: thanks for thinking with me on this
- # [18:54] <terrence> ejpbruel: if you can't get it running locally, I guess you're going to have to get a loaner
- # [18:54] * Joins: NeilAway (neil@moz-qc1jfo.virginmediabusiness.co.uk)
- # [18:54] <RyanVM> gkw: gah!
- # [18:54] * Joins: florent (Thunderbird@moz-u4r6te.abo.wanadoo.fr)
- # [18:54] <gkw> RyanVM: I'd also presume you will update https://wiki.mozilla.org/MozillaBuild
- # [18:54] <ejpbruel> terrence: by loaner you mean a slave?
- # [18:55] <RyanVM> yep, sending the announcement now
- # [18:55] <gkw> RyanVM: ditto link in Historic Versions probably needs an extra slash at the back
- # [18:55] <terrence> ejpbruel: yes
- # [18:55] <gkw> RyanVM: but I'm just nitpicking, really grateful to your efforts
- # [18:55] <gkw> RyanVM: thanks!
- # [18:55] <Waldo> ejpbruel: good news, everyone! khuey just walked in
- # [18:55] <ejpbruel> Waldo: w00t!
- # [18:57] * Joins: c0mrad3 (uid26809@moz-29q44j.charlton.irccloud.com)
- # [18:58] <@bz> ejpbruel: Do you have a minute?
- # [18:58] <Waldo> he's still slightly in the process of sitting down, FYI
- # [18:58] <@bz> ejpbruel: I have a question about workerdebugging
- # [18:58] <ejpbruel> bz: sure
- # [18:58] <@bz> ejpbruel: So when debugging workers, if we hit http://mxr.mozilla.org/mozilla-central/source/js/src/vm/Debugger.cpp#996
- # [18:59] <@bz> ejpbruel: Which compartment are we in and which runtime?
- # [18:59] * kats-lunch is now known as kats
- # [19:00] <@bz> ejpbruel: and I guess also kinda which jscontext?
- # [19:00] <ejpbruel> bz: thats more of a debugger API question. i would say we are in the debuggee's compartment, but i'm not 100% positive
- # [19:00] <ejpbruel> bz: jim and fitzgen probably would be able to tell you for sure
- # [19:00] <@bz> we're totally in the debugger's compartment
- # [19:00] <@bz> That part I know
- # [19:01] <ejpbruel> bz: alright, so in the case of worker debugging
- # [19:01] <ejpbruel> bz: usually you have one runtime, one context, one global, etc. but if youre debugging, we create a secondary global for the debugger to run in
- # [19:01] <@bz> ok
- # [19:01] <@bz> but not a separate context, right?
- # [19:01] <ejpbruel> bz: right
- # [19:02] <ejpbruel> bz: also, the debugger can create additional globals/sandboxes
- # [19:02] <ejpbruel> which we use to load our requirejs modules with
- # [19:02] * armenzg is now known as armenzg_brb
- # [19:02] * Joins: milan_ (milan@moz-c09ak5.3t38.sij7.f0c8.2607.IP)
- # [19:02] <@bz> ok
- # [19:03] <ejpbruel> bz: why do you want to know?
- # [19:04] <@bz> Because I'm trying to figure out how debugger's error reporting interacts with onerror events
- # [19:04] * Quits: dragana (Instantbird@moz-9033s0.dynamic.surfer.at) (Ping timeout: 121 seconds)
- # [19:04] <@bz> And it looks like the answer for workers is "badly"
- # [19:04] <@bz> As in, they fire.
- # [19:05] * Quits: jimb (user@moz-09a.i8g.126.207.IP) (Ping timeout: 121 seconds)
- # [19:05] * Quits: milan (milan@moz-a397c0.3t38.sij7.f0c8.2607.IP) (Ping timeout: 121 seconds)
- # [19:05] * Joins: Oleg (chatzilla@moz-drq.l0r.195.176.IP)
- # [19:06] <Oleg> hello all
- # [19:06] <ejpbruel> bz: hmmmm
- # [19:06] <ejpbruel> bz: nsIWorkerDebugger has its own onError listener which should be called for errors triggered by the debugger
- # [19:07] * Joins: Jackneill (Jackneill@moz-j6c.85b.203.37.IP)
- # [19:07] <ejpbruel> bz: but since the whole second global thing is kind of a hack to begin with, its not unthinkable that were 'doing it wrong' (tm)
- # [19:07] <@bz> ejpbruel: what makes that happen?
- # [19:07] * armenzg_brb is now known as armenzg
- # [19:07] <ejpbruel> bz: let me see if i can find the relevant code
- # [19:07] <@bz> ejpbruel: does it override the error reporter somewhere?
- # [19:07] <@bz> ejpbruel: Thanks!
- # [19:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9783264529d3 - Wes Kocher - Backed out 12 changesets (bug 1200595) for b2g mochitest crashes in SharedBufferManagerParent CLOSED TREE
- # [19:09] <ejpbruel> bz: it does, here: https://dxr.mozilla.org/mozilla-central/source/dom/workers/WorkerPrivate.cpp#
- # [19:09] <ejpbruel> eh
- # [19:09] <ejpbruel> hold on
- # [19:09] * Quits: azakai|2 (alon@moz-l3ofdg.sntcca.sbcglobal.net) (Quit: Ex-Chat)
- # [19:09] <ejpbruel> bz: https://dxr.mozilla.org/mozilla-central/source/dom/workers/WorkerPrivate.cpp#984
- # [19:10] * @bz looks
- # [19:10] <@bz> aha
- # [19:10] <ejpbruel> bz: we get the current global, unwrap it, and if its NOT a WorkerGlobalScope, we assume its either a WorkerDebuggerGlobalScope, or a debugger sandbox
- # [19:10] <@bz> it hacks the worker error reporter codepath
- # [19:10] <@bz> I see
- # [19:10] <@bz> but...
- # [19:10] <@bz> What if aFireAtScope is false?
- # [19:10] * Quits: WeirdAl (chatzilla@moz-1kjv3e.2he4.ej4r.0642.2601.IP) (Quit: ChatZilla 0.9.92 [Firefox 42.0/20151029151421])
- # [19:10] <@bz> Won't this code get skipped?
- # [19:10] <ejpbruel> khuey: are you here yet?
- # [19:11] <ejpbruel> bz: possibly
- # [19:11] <ejpbruel> bz: well not possibly, thats what the code says ;)
- # [19:11] <ejpbruel> bz: that might be a bug
- # [19:11] <Oleg> can anybody help with the choice of java project?
- # [19:11] * khuey|away is now known as khuey
- # [19:12] <ejpbruel> bz: the value of aFireAtScope is defined here https://dxr.mozilla.org/mozilla-central/source/dom/workers/WorkerPrivate.cpp#5780
- # [19:12] <nalexander> Oleg: what do you want to know?
- # [19:13] * Quits: ggp (ggp@moz-ste.rnc.98.179.IP) (Ping timeout: 121 seconds)
- # [19:13] * Joins: dragana (Instantbird@moz-9033s0.dynamic.surfer.at)
- # [19:13] * till|meeting is now known as till
- # [19:13] <Yoric> Is Try closed?
- # [19:13] <mrgiggles> Yoric: The command I ran for that? It failed. Blame sfink. And tell him to check my logs.
- # [19:13] <@bz> ejpbruel: yes, it is.
- # [19:13] <Oleg> <nalexander> I'm looking for not android java project
- # [19:13] <ejpbruel> bz: if you open a bug i should be able to look into it
- # [19:13] <Yoric> mrgiggles: I seem to be missing some context.
- # [19:13] <Oleg> that i can be useful for
- # [19:13] <nalexander> Oleg: I don't think such a thing exists in the Mozilla org.
- # [19:14] <@bz> ejpbruel: Thanks, will do
- # [19:14] <ejpbruel> bz: as a matter of fact, i could do it tomorrow since im stuck with sw debugging until we fix that gc issue
- # [19:14] <ejpbruel> bz: is this high prio for you?
- # [19:14] <nalexander> Oleg: it's basically Firefox for Android in Java, and nothing else.
- # [19:14] * Joins: sicking (sicking@moz-b8n.tdl.56.172.IP)
- # [19:14] <@bz> ejpbruel: no, since the failure modes are all kinda theoretical so far
- # [19:14] <Oleg> its sad
- # [19:14] <@bz> ejpbruel: Just knowing that we'll handle it here is enough to design the rest of the API around this
- # [19:14] <ejpbruel> bz: ok!
- # [19:14] <ejpbruel> bz: glad i could help
- # [19:15] * jimm-lunch is now known as jimm
- # [19:15] <@bz> which component?
- # [19:15] <Oleg> so where can i find the list of all mozilla projects&
- # [19:15] * Joins: ggp (ggp@moz-dq14df.telesp.net.br)
- # [19:15] <KWierso> Yoric: looks open to me
- # [19:15] <@bz> ejpbruel: ^
- # [19:16] * Quits: mjf (anonymous@moz-r17qgu.dyn.grandenetworks.net) (Client exited)
- # [19:16] * armenzg is now known as armenzg_lunch
- # [19:16] <ejpbruel> bz: Developer tools: Debugger
- # [19:16] * Joins: mkaply (mkaply@moz-2m01va.austtx.sbcglobal.net)
- # [19:16] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [19:16] <ejpbruel> bz: the meta bug for worker debugging is 1003097
- # [19:17] <@bz> ejpbruel: thanks
- # [19:17] * Joins: gandalf (zbraniecki@moz-e3i6jd.hfc.comcastbusiness.net)
- # [19:17] * Parts: jonco (Adium@moz-vv82lg.range109-150.btcentralplus.com)
- # [19:17] <ejpbruel> bz: yw. ill let you know if i learn anything more wrt my bug :)
- # [19:18] * julienw is now known as julienw_afk
- # [19:18] * Quits: mkaply (mkaply@moz-2m01va.austtx.sbcglobal.net) (Client exited)
- # [19:19] <kats> Oleg: whatcanidoformozilla.org/ is probably a good place to start
- # [19:19] <Oleg> <kats>: thanks
- # [19:20] <KWierso> Oleg: you might also try joining #introduction if you haven't already
- # [19:22] <terrence> ejpbruel: back! sorry I can't offer more help, but there's just too much surface area that could be buggy
- # [19:23] * Joins: mjf (mjf@moz-r17qgu.dyn.grandenetworks.net)
- # [19:23] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [19:24] <ejpbruel> terrence: i totally understand. normally, i wouldnt even know where to begin analysing a bug like this
- # [19:24] <ejpbruel> terrence: but i feel its time that i learned, so im going to see how far i can get
- # [19:24] <ejpbruel> just requested a slave to see if i can reproduce it there
- # [19:24] <terrence> ejpbruel: from what I understand, even getting a debugger onto the test slaves is a total pita
- # [19:25] * Joins: bwc (Adium@moz-k7dmvg.51i5.2grm.0306.2602.IP)
- # [19:25] <terrence> ejpbruel: but just being able to repro it reliably in a shell is a big first step
- # [19:25] * Quits: JMercado (JaymeMercad@moz-rd7.51j.125.50.IP) (Quit: Leaving)
- # [19:26] * Joins: JMercado (JaymeMercad@moz-rd7.51j.125.50.IP)
- # [19:26] * ahal|afk is now known as ahal
- # [19:26] <ejpbruel> terrence: sounds like fun
- # [19:26] <ejpbruel> terrence: i dont see how we could analyse this if we cannot reproduce it
- # [19:26] <ejpbruel> best we can do is wild guesses in that case :)
- # [19:28] <terrence> ejpbruel: yeah... I guess you'd want to minimize the test case until you have a small enough bit of code running that you could call it "educated guess" and check
- # [19:28] <terrence> ejpbruel: but even then, you can't rule out "the entire interpreter" really
- # [19:32] <ejpbruel> terrence: exactly :)
- # [19:32] <ejpbruel> terrence: well, ill get back to you once/if i learn more
- # [19:32] <ejpbruel> terrence: thanks for your help/feedback so far!
- # [19:33] * chmanchester|afk is now known as chmanchester
- # [19:33] * Quits: mancas (uid112837@moz-cr08jc.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [19:33] * Quits: sicking (sicking@moz-b8n.tdl.56.172.IP) (Ping timeout: 121 seconds)
- # [19:34] * Joins: azakai (alon@moz-d25vbu.mh2d.1ibb.0101.2620.IP)
- # [19:35] * armenzg_lunch is now known as armenzg
- # [19:36] * Quits: aleth (instantb@moz-4an37e.ictp.it) (Ping timeout: 121 seconds)
- # [19:36] * bc is now known as bc|lunch
- # [19:36] * ahal is now known as ahal|afk
- # [19:36] * Joins: sicking (sicking@moz-h2h.tdl.56.172.IP)
- # [19:37] <sicking> colloquy doesn't play nice with teathering
- # [19:37] <sicking> bz: i mean, it's just a matter of serialization format, right? We can always serialize/parse the same file formats even if our in-memory data structures look different
- # [19:37] <sicking> bz: our URIs will still contain the same information, just expressed differently
- # [19:37] <sicking> bz: clearly the code might get more complex. The question is if it gets complex enough to warrant a file-format migration
- # [19:38] <sicking> (regarding IDB filenames/fileformats)
- # [19:38] <sicking> err... wrong channel
- # [19:38] * Joins: mancas (uid112837@moz-cr08jc.brockwell.irccloud.com)
- # [19:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9689a552174c - Bobby Holley - Bug 1213943 - Remove RELEASE_BUILD conditionality. r=bz
- # [19:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/94ac8462f124 - Fernando Jimenez - Bug 1225121 - [B2G] All the rest of content processes crash if user tries to run app that uses Service Workers after restart. r=baku
- # [19:39] * Joins: d1ndra (d1ndra@moz-c2d.e83.230.103.IP)
- # [19:40] * Quits: gcp (gcp@moz-be017m.j41b.csd9.1812.2a02.IP) (Quit: Leaving)
- # [19:43] * Quits: &dbaron (dbaron@moz-1ufb1d.dynamic.fusionbroadband.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [19:43] * Joins: skeuomor1 (skeuomorf@moz-cok.u9l.32.197.IP)
- # [19:43] * mwargers is now known as mwargers_afk
- # [19:45] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [19:45] * Joins: mastizada (Thunderbird@moz-mek.63k.2.46.IP)
- # [19:46] * Quits: skeuomorf (skeuomorf@moz-5kr.q8a.32.197.IP) (Ping timeout: 121 seconds)
- # [19:46] * RyanVM installs mailvelope, is soooooo much happier with secure bugmail reading
- # [19:46] * maja_zf|afk is now known as maja_zf
- # [19:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c08be2a46e18 - Mark Banner - Bug 1225652 - Loop's unit tests should check for uncaught errors as well as uncaught warnings. r=mikedeboer
- # [19:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/433f2e9c7239 - Manuel Casas - Bug 1225189 - Disable Hello for e10s windows. r=mikedeboer
- # [19:48] * till is now known as till|dinner
- # [19:48] * Joins: jimb (user@moz-09a.i8g.126.207.IP)
- # [19:49] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (Ping timeout: 121 seconds)
- # [19:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6d1c2307127f - William Lachance - Bug 1227239 - Fix generation of talos summary where # subtests > 1;r=jmaher
- # [19:52] * Quits: sicking (sicking@moz-h2h.tdl.56.172.IP) (Ping timeout: 121 seconds)
- # [19:52] * Joins: mixedpuppy (mixedpuppy@moz-67b.ehc.196.69.IP)
- # [19:53] * Quits: dragana (Instantbird@moz-9033s0.dynamic.surfer.at) (Ping timeout: 121 seconds)
- # [19:55] * Joins: squib (squib@moz-jei4k1.wi.charter.com)
- # [19:57] * Quits: espadrine (tyl@moz-gpr.c1p.152.213.IP) (Ping timeout: 121 seconds)
- # [19:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/e8e936aa4d98 - Michael Comella - Bug 1227351 - Remove unused homepage current tab string. r=margaret
- # [19:59] * skeuomor1 is now known as skeuomorf
- # [20:01] * Joins: francois (francois@moz-cnggv3.fmarier.org)
- # [20:03] * Joins: mats (chatzilla@moz-6svtv8.priv.bahnhof.se)
- # [20:04] * Joins: catalinb (catalin@moz-u9on54.eregie.pub.ro)
- # [20:04] * baku|away is now known as baku
- # [20:04] <gps> ferjm: you are running an ancient version of mercurial. please upgrade. run `mach bootstrap` or see https://mozilla-version-control-tools.readthedocs.org/en/latest/hgmozilla/installing.html
- # [20:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/012dcbfda02b - Mats Palmgren - Bug 1226278 - Make 'overflow-clip-box: content-box' work on <fieldset>. r=bz
- # [20:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/50cded09ac34 - Atte Kettunen - Bug 1163583 - Crashtest.
- # [20:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/671d6a9302f9 - Jesse Ruderman - Bug 1145768 - Crashtest.
- # [20:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d042516e3561 - Aki Helin - Bug 964078 - crashtest.
- # [20:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/eb01c6ccd716 - Jesse Schwartzentruber - Bug 938341 - Crashtest.
- # [20:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c3732cb29e13 - Jesse Ruderman - Bug 914501 - Crashtest.
- # [20:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/43a7c0e8d91f - Christoph Diehl - Bug 805760 - Crashtest.
- # [20:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e0a9decc5fb0 - Mats Palmgren - Bug 756241 - Crashtest.
- # [20:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3c37f6212c71 - Jesse Ruderman - Bug 716503 - Crashtest.
- # [20:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cf322a94b295 - Bob Clary - Bug 641724 - Crashtest.
- # [20:05] <mccr8> How do I download the apk etc. created by an Android try build?
- # [20:05] <mccr8> I see a link to the build log, but there isn't anything else on that in the directory.
- # [20:05] * Quits: ejpbruel (ejpbruel@moz-q4o.o51.173.193.IP) (Quit: leaving)
- # [20:06] * Quits: francois (francois@moz-cnggv3.fmarier.org) (Quit: ZNC - http://znc.in)
- # [20:07] * Quits: milan_ (milan@moz-c09ak5.3t38.sij7.f0c8.2607.IP) (A TLS packet with unexpected length was received.)
- # [20:07] * Joins: francois (francois@moz-cnggv3.fmarier.org)
- # [20:08] * Joins: milan (milan@66.207.193.21)
- # [20:08] * Joins: aleth (instantb@moz-enf.f6q.51.151.IP)
- # [20:08] <mccr8> hmm a newer try link has more files, so I guess the old one just was deleted. That's fine.
- # [20:11] * Joins: jdm (jdm@moz-m7evfp.3t38.sij7.f0c8.2607.IP)
- # [20:12] * armenzg is now known as armenzg_brb
- # [20:13] * Quits: chaithanya (uid96820@moz-h9n5an.highgate.irccloud.com) (Quit: Connection closed for inactivity)
- # [20:14] * Joins: Mnyromyr (Mnyromyr@moz-lgiol2.gnf7.tkmq.0908.2a02.IP)
- # [20:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/2d383dde4c3d - Randell Jesup - Bug 1226347: Import cherry-pick of AEC changes from 43->48 (delay-agnostic AEC). r=pkerr
- # [20:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e212333b735a - Paul Kerr [:pkerr] - Bug 1226347 - Part 2: Allow control of AEC via prefs. r=rjesup
- # [20:15] <KWierso> mccr8: how old?
- # [20:16] <KWierso> mccr8: bug 1217742 might also be relevant.
- # [20:16] <mccr8> KWierso : Just Friday. But the new build is okay for me, so I'm okay.
- # [20:17] <KWierso> mccr8: looks like the fix for that bug got deployed yesterday
- # [20:17] <KWierso> anything before that takes some manual tweaking to find the right directory
- # [20:17] * hwine is now known as hwine-coffee
- # [20:17] <mccr8> ah ok.
- # [20:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/385c7069dca8 - Andrea Marchesini - Bug 1211266 - tabBrowser should remove the audio icon when location changes, r=jaws, r=mak77
- # [20:21] * Quits: Gijs (gijs@moz-mb0ea5.nemh.1887.0450.2001.IP) (Quit: back to Brum)
- # [20:22] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [20:22] * armenzg_brb is now known as armenzg_blb
- # [20:24] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [20:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/85af1a62e15a - Kartikaya Gupta - Bug 1227636 - Put back missing scrollbar styles. r=mfinkle
- # [20:24] * emorley is now known as emorley|away
- # [20:25] * Joins: dbaron (dbaron@moz-mbhc6k.2rkg.9kg1.0101.2620.IP)
- # [20:25] * killer sets mode: +ao dbaron dbaron
- # [20:30] * Quits: jimb (user@moz-09a.i8g.126.207.IP) (Ping timeout: 121 seconds)
- # [20:30] * Quits: Sander (chatzilla@moz-98s.ga3.81.86.IP) (Connection closed)
- # [20:30] * ahal|afk is now known as ahal
- # [20:30] * Joins: karlt (karl@moz-1v4uco.xtra.co.nz)
- # [20:31] * Joins: brunoais (brunoais@moz-pussov.rev.vodafone.pt)
- # [20:31] <brunoais> hi
- # [20:31] <brunoais> Hi I read the limits for IndexedDB were removed (bug1123637), but I seem to be running into them in my huge DB storage (~600MB). Here's the bug I reported (bug1212985), can anyone explain it more completely than what I got there?
- # [20:31] <brunoais> Please also call my nick when answering so that I'm called to attention here
- # [20:32] * hwine-coffee is now known as hwine
- # [20:32] <Waldo> would anyone care to explain "certified" b2g apps to me? is this something where we manually vet them, have a manual listing of them, they have to be part of the OS or manually (not over-the-air) sideloaded, something else?
- # [20:33] * bc|lunch is now known as cb
- # [20:33] * cb is now known as bc
- # [20:33] <Waldo> brunoais: ...I sadly have no more-complete explanation to provide you, but ~600MB? egad :-)
- # [20:34] <brunoais> It accumulated over the years
- # [20:34] <Waldo> o_O
- # [20:34] <brunoais> It is something we got at work to circumvent a limitation we were given.
- # [20:35] <erahm> Waldo: probably a #fxos question, I get that terminology confused too
- # [20:35] <brunoais> Everyone has a copy of the data so backups are not required ^^
- # [20:35] <Waldo> erahm: I'm not quite invested enough in the question to ask the question quite so formally :-)
- # [20:36] <@bz> waldo: "certified" basically means "part of the OS install, can't be changed"
- # [20:36] <@bz> waldo: think "the things that are part of the set of functionality subject to FCCcertification"
- # [20:36] <Waldo> bz: your initial thoughts on shipping a JS extension only to certified apps (assuming arguendo this is easily practicable)?
- # [20:37] <Waldo> library extension, not syntax extension, at least
- # [20:37] <@bz> waldo: We already do that with some DOM APIs.
- # [20:37] <@bz> waldo: I don't see how a library extension is qualitatively different.
- # [20:37] <Waldo> that was kind of the direction I was leaning, I think
- # [20:38] <fabrice> Waldo: are you in the office?
- # [20:38] <Waldo> (modulo not necessarily having simultaneously pondered the existence of the DOM things)
- # [20:38] <@bz> My impression is that "certified apps" is a narrower restriction on b2g than "system code" is on desktop
- # [20:38] <Waldo> fabrice: yes, but probably not the one you're thinking of :-)
- # [20:38] * Quits: gandalf (zbraniecki@moz-e3i6jd.hfc.comcastbusiness.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [20:38] <fabrice> ha ha
- # [20:39] * Waldo idly wonders what happened to SF-looking hostmasks for people in that office
- # [20:41] * Quits: Oleg (chatzilla@moz-drq.l0r.195.176.IP) (Quit: ChatZilla 0.9.92 [Firefox 41.0.1/20150929144111])
- # [20:42] * Joins: jduell (jduell@moz-rpmp7n.tukw.qwest.net)
- # [20:42] * whimboo|afk is now known as whimboo
- # [20:42] * Quits: wilsonpage (wilsonpage@moz-i6u.sut.111.217.IP) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [20:43] * Joins: eyome_ (eyome@moz-gfketo.fbx.proxad.net)
- # [20:44] * mcote is now known as mcote|biab
- # [20:45] * Quits: mixedpuppy (mixedpuppy@moz-67b.ehc.196.69.IP) (Client exited)
- # [20:45] * Joins: mixedpuppy (mixedpuppy@moz-67b.ehc.196.69.IP)
- # [20:46] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [20:46] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [20:46] * Quits: sankha (sankha@moz-g7l.b0d.106.27.IP) (Connection closed)
- # [20:47] * Quits: Shrooms (Shrooms@moz-j92fqa.ip.windstream.net) (Quit: For bacon!)
- # [20:48] * mhowell is now known as mhowell|away
- # [20:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6e50570f0782 - Wes Kocher - Backed out changeset 385c7069dca8 (bug 1211266) for landing with the wrong bug number
- # [20:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/72cf0adcfb27 - Andrea Marchesini - Bug 1214624 - tabBrowser should remove the audio icon when location changes, r=jaws, r=mak77
- # [20:50] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [20:50] * hwine is now known as hwine-food
- # [20:50] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (Ping timeout: 121 seconds)
- # [20:51] * mattwoodrow|away is now known as mattwoodrow
- # [20:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cbc2c8a24438 - Andrea Marchesini - Bug 1211266 - Remote blobs coming from a different thread and a different manager must be kept alive until the creation of depending RemoteBlobs is not completed, r=bent, f=gerard-majax
- # [20:53] * Joins: sankha (sankha@moz-g7l.b0d.106.27.IP)
- # [20:53] * Joins: jgilbert (Jeff@moz-5avdn8.ujol.1ibb.0101.2620.IP)
- # [20:54] * terrence is now known as terrence-lunch
- # [20:54] * Quits: Enn (enn@moz-7133vd.3t38.sij7.f0c8.2607.IP) (A TLS packet with unexpected length was received.)
- # [20:54] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [20:55] <jgilbert> yay, backed out for tests that aren't run on try-all
- # [20:56] <jgilbert> guess I'll just crash land on inbound in the future? :)
- # [20:56] * Joins: rniwa (rniwa@moz-7b5uu3.ca.comcast.net)
- # [20:57] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [20:57] <@khuey> jgilbert: welcome to the club
- # [20:58] <@bz> heh
- # [20:58] * @bz just got backed out for tests not run on linux64....
- # [20:58] <@bz> So you guys have me beta
- # [20:58] <@bz> er, beat
- # [21:03] * stephend is now known as stephend|food
- # [21:05] * Joins: givanica (Thunderbird@moz-n61.k1v.26.188.IP)
- # [21:05] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/837e564f3697 - Kris Maglione - Bug 1224893: [webext] Queue unexpected messages for subsequent calls to awaitMessage a=lizzard
- # [21:05] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/7d2f0faddb3f - Kris Maglione - Bug 1224893: [webext] Queue unexpected messages for subsequent calls to awaitMessage, follow-up. r=me r=billm a=lizzard
- # [21:05] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/5c87a2e6268e - Nicolas Silva - Bug 1219529 - Don't attempt to deallocate shmems after the ipdl protocol is shut down. r=sotaro a=ritu
- # [21:05] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/1477b8cf6b93 - David Anderson - Null-check D3D10 devices in a few places. (bug 1225645, r=bas) a=lizzard
- # [21:07] * lizzard is now known as lizzard_lunch
- # [21:07] * Quits: ProgramFOX (ProgramFOX@moz-s49.dhi.132.109.IP) (Quit: ChatZilla 0.9.92-rdmsoft [XULRunner 35.0.1/20150122214805])
- # [21:08] * Joins: mkmelin (mkmelin@moz-p52c01.elisa-laajakaista.fi)
- # [21:08] * Joins: junaid (junaid@moz-6m72lp.dip0.t-ipconnect.de)
- # [21:09] * dminor is now known as dminor|bbiab
- # [21:11] * khuey is now known as khuey|away
- # [21:11] <kats> been a while since the last inbound -> m-c merge
- # [21:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/21d5fede3c77 - Kyle Machulis - Bug 1225293 - Add Microsoft Silverlight to Win64 Plugin Whitelist; r=bsmedberg
- # [21:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/874206a798d6 - Kyle Machulis - Bug 1225293 - Mochitests for Win64 Silverlight Whitelisting; r=bsmedberg
- # [21:13] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [21:14] * mhowell|away is now known as mhowell
- # [21:14] <cpeterson> qDot++
- # [21:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3ec29dee6402 - Alexander Surkov - Bug 1226000 - control may pick up its name from wrong label, r=yzen
- # [21:18] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Connection closed)
- # [21:19] * Joins: jib (jib@moz-j7m6lt.dyn.optonline.net)
- # [21:22] * benfrancis is now known as benfrancis|away
- # [21:23] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [21:24] <nthomas> where can I find the list of domains that we whitelist addon install for ?
- # [21:25] <nthomas> dxring for addons.mozilla.org doesn't find it
- # [21:25] <@bsmedberg> nthomas: http://mxr.mozilla.org/mozilla-central/source/browser/app/permissions?force=1
- # [21:25] <@bsmedberg> then DXR is broken
- # [21:25] <nthomas> I expect it was me
- # [21:25] <nthomas> indeed, thanks for the super fast response
- # [21:26] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [21:27] * dminor|bbiab is now known as dminor
- # [21:28] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/5dc47809b28c - Kris Maglione - Bug 1224893: [webext] Queue unexpected messages for subsequent calls to awaitMessage a=lizzard
- # [21:28] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/3007bf388ce3 - Kris Maglione - Bug 1224893: [webext] Queue unexpected messages for subsequent calls to awaitMessage, follow-up. r=me r=billm a=lizzard
- # [21:28] * Quits: givanica (Thunderbird@moz-n61.k1v.26.188.IP) (Client exited)
- # [21:29] * Joins: bkerensa (uid28455@moz-2asf42.highgate.irccloud.com)
- # [21:29] * eyome_ is now known as eyome
- # [21:30] * Joins: givanica (Thunderbird@moz-n61.k1v.26.188.IP)
- # [21:34] * Quits: givanica (Thunderbird@moz-n61.k1v.26.188.IP) (Client exited)
- # [21:34] * terrence-lunch is now known as terrence
- # [21:34] * hwine-food is now known as hwine
- # [21:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d2c11c5f2c00 - Brian Grinstead - Bug 1226744 - Add a command line flag to auto open devtools when the browser starts up;r=jryans
- # [21:35] * Joins: jdashg__ (Jeff@moz-mii8qm.ujol.1ibb.0101.2620.IP)
- # [21:36] <KWierso> nthomas: I see that file in a dxr search :\
- # [21:36] <nthomas> yep, PEBKAC
- # [21:36] * jlund is now known as jlund|lunch
- # [21:36] <nthomas> skimmed over it too fast
- # [21:37] * Quits: KaiRo (robert@moz-np8s8c.highway.telekom.at) (A TLS packet with unexpected length was received.)
- # [21:38] * Quits: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net) (Client exited)
- # [21:38] * Joins: KaiRo (robert@moz-np8s8c.highway.telekom.at)
- # [21:39] * Quits: jgilbert (Jeff@moz-5avdn8.ujol.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [21:39] * Joins: billm (billm@moz-ablfaj.ujol.1ibb.0101.2620.IP)
- # [21:40] * Joins: sicking (sicking@moz-cfhap5.mtv2.mozilla.com)
- # [21:40] * Joins: gabor (gabor@moz-i42njv.dip0.t-ipconnect.de)
- # [21:40] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [21:41] * jdm is now known as jdm|busy
- # [21:42] * Quits: sankha (sankha@moz-g7l.b0d.106.27.IP) (Connection closed)
- # [21:43] * Quits: mancas (uid112837@moz-cr08jc.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [21:43] * Joins: sewardj (sewardj@moz-k2tg06.dip0.t-ipconnect.de)
- # [21:43] * Quits: sewardj (sewardj@moz-k2tg06.dip0.t-ipconnect.de) (Quit: Konversation terminated!)
- # [21:44] * Joins: sewardj (sewardj@moz-k2tg06.dip0.t-ipconnect.de)
- # [21:45] * Quits: smontagu (chatzilla@moz-ehfsg4.red.bezeqint.net) (Ping timeout: 121 seconds)
- # [21:45] <efaust> is there any way to get a backtrace from a mozcrash hit on try?
- # [21:46] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [21:47] * Joins: marcosc (marcosc@moz-29a.do1.52.113.IP)
- # [21:48] * mrrrgn is now known as mrrrgn_brb
- # [21:48] <@bz> efaust: It should be giving you one, generally... at least for sane test suites
- # [21:49] <@bz> efaust: The mac thing I was trying to reproduce for you seems to be one of the not-sane ones. :(
- # [21:49] * kats is now known as kats|away
- # [21:49] * Joins: jimb (user@moz-09a.i8g.126.207.IP)
- # [21:50] <efaust> bz: right, the questions is "how is it insane" and "even if there's some good reason why we don't, can I modify something in the push to force it to anyway?"
- # [21:50] <efaust> questions are, even
- # [21:50] * Joins: roc (chatzilla@moz-fqb.ngs.98.121.IP)
- # [21:50] * killer sets mode: +o roc
- # [21:51] * Quits: marcosc (marcosc@moz-29a.do1.52.113.IP) (Ping timeout: 121 seconds)
- # [21:52] * AutomatedTester|AFK is now known as AutomatedTester
- # [21:52] * Parts: marco (marco@moz-66q9fa.3orf.1887.0450.2001.IP) ("")
- # [21:53] * Quits: Aryx (Archaeopter@moz-l7oper.cust.telecolumbus.net) (Quit: Goodbye)
- # [21:54] * Joins: dragana (Instantbird@moz-9033s0.dynamic.surfer.at)
- # [21:55] * kats|away is now known as kats
- # [21:55] * mcote|biab is now known as mcote
- # [21:57] * Quits: gustavold (gustavold@moz-feu.6v8.255.191.IP) (Quit: Leaving.)
- # [21:57] * Quits: mjf (mjf@moz-r17qgu.dyn.grandenetworks.net) (Client exited)
- # [21:57] * Joins: mjf (anonymous@moz-r17qgu.dyn.grandenetworks.net)
- # [21:58] * Joins: gustavold (gustavold@moz-feu.6v8.255.191.IP)
- # [21:58] * jlund|lunch is now known as jlund|mtg
- # [21:58] * Joins: pcwalton (pcwalton@moz-gs5.a8v.130.12.IP)
- # [21:58] * Quits: c0mrad3 (uid26809@moz-29q44j.charlton.irccloud.com) (Quit: Connection closed for inactivity)
- # [21:58] * justindarc is now known as justindarc|brb
- # [21:59] * Joins: Aryx (Archaeopter@moz-l7oper.cust.telecolumbus.net)
- # [22:00] * Quits: fracting (fracting@moz-40p.nrj.7.183.IP) (Ping timeout: 121 seconds)
- # [22:00] * stephend|food is now known as stephend|mtg
- # [22:05] * Quits: billm (billm@moz-ablfaj.ujol.1ibb.0101.2620.IP) (Quit: Leaving)
- # [22:06] * mhowell is now known as mhowell|away
- # [22:06] * Joins: p_klos (Thunderbird@moz-52h6hm.gprs.plus.pl)
- # [22:06] * dminor is now known as dminor|afk
- # [22:06] * AutomatedTester is now known as AutomatedTester|AFK
- # [22:09] * mhowell|away is now known as mhowell
- # [22:09] <chutten> Would anyone happen to know where the awesomebar source is? Specifically, the logic that determines what to show for a given input
- # [22:09] <chutten> I have a crazy idea to make keyword searches better
- # [22:10] <chutten> and I'd like to get a sense of its feasibility (and how to phrase it) before I write up the bug
- # [22:10] <KWierso> mats: are those b2g c3 crashes yours?
- # [22:11] * Joins: Coldblackice (anonz@moz-0ijqp3.oc.cox.net)
- # [22:13] * Joins: fracting (fracting@moz-etr.siu.9.119.IP)
- # [22:15] * Joins: Boriss (Boriss@moz-aq4.h2b.247.173.IP)
- # [22:15] * mrrrgn_brb is now known as mrrrgn
- # [22:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8ae13d6af33c - Wes Kocher - Backed out changeset e0a9decc5fb0 (bug 756241) for failing on b2g emulator
- # [22:17] * Joins: sankha (sankha@moz-g7l.b0d.106.27.IP)
- # [22:18] * Quits: sankha (sankha@moz-g7l.b0d.106.27.IP) (Connection closed)
- # [22:20] * chmanchester is now known as chmanchester|afk
- # [22:20] * maja_zf is now known as maja_zf|brb
- # [22:20] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [22:21] <KWierso> baku: ping
- # [22:21] * baku is now known as baku|away
- # [22:22] <mats> KWierso: sorry about that, thanks for backing out that particular test
- # [22:22] * Quits: @ehsan (ehsan@moz-kf68k0.3t38.sij7.f0c8.2607.IP) (Ping timeout: 121 seconds)
- # [22:23] <KWierso> mats: also saw crashes on android, for the record
- # [22:23] * jmaher is now known as jmaher|afk
- # [22:23] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [22:25] * armenzg_blb is now known as armenzg
- # [22:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/71ba07014e12 - Wes Kocher - Backed out changeset cbc2c8a24438 (bug 1211266) for asan failures in test_fileapi_slice.html
- # [22:26] * Joins: Jayflux (Jayflux@moz-u2kqf6.as13285.net)
- # [22:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/8a3e98127ebc - Nick Alexander - Bug 1208605 - Try MOZ_ANDROID_PACKAGE_NAME env var before static ANDROID_PACKAGE_NAME. r=snorp
- # [22:28] * jdm|busy is now known as jdm
- # [22:28] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [22:30] * Joins: DavidTJH (uid97756@moz-h50ota.ealing.irccloud.com)
- # [22:31] * Quits: jib (jib@moz-j7m6lt.dyn.optonline.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [22:34] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [22:34] * stephend|mtg is now known as stephend
- # [22:35] <mats> KWierso: I can't find the crashes on Android you we're referring to, can you point me to one?
- # [22:35] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [22:36] <KWierso> mats: https://treeherder.mozilla.org/logviewer.html#?job_id=17776098&repo=mozilla-inbound
- # [22:36] * Quits: lizzard_lunch (ehenry@moz-ruk7u5.ca.comcast.net) (Client exited)
- # [22:37] * Quits: dragana (Instantbird@moz-9033s0.dynamic.surfer.at) (Ping timeout: 121 seconds)
- # [22:38] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [22:38] * Quits: p_klos (Thunderbird@moz-52h6hm.gprs.plus.pl) (Client exited)
- # [22:39] <mats> KWierso: I think that's just a side-effect from the SIGABRT that we issued
- # [22:40] * maja_zf|brb is now known as maja_zf
- # [22:40] * Joins: dragana (Instantbird@moz-9033s0.dynamic.surfer.at)
- # [22:40] * chmanchester|afk is now known as chmanchester
- # [22:41] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [22:41] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [22:42] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [22:43] * Quits: tromey (tromey@moz-ukt3s3.hlrn.qwest.net) (Quit: ERC (IRC client for Emacs 25.1.50.1))
- # [22:43] * Quits: @roc (chatzilla@moz-fqb.ngs.98.121.IP) (Ping timeout: 121 seconds)
- # [22:44] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [22:45] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [22:45] * Joins: sankha (sankha@moz-g7l.b0d.106.27.IP)
- # [22:46] * Quits: jimb (user@moz-09a.i8g.126.207.IP) (Ping timeout: 121 seconds)
- # [22:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c27b0ab05958 - Christoph Kerschbaumer - Bug 1119386 - Part 1: Use document's principal for favicons in docshell (r=smaug)
- # [22:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b08f8fb7536e - Christoph Kerschbaumer - Bug 1119386 - Part 2: Use document's principal for favicons in dom (r=smaug)
- # [22:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/02507513d65b - Christoph Kerschbaumer - Bug 1119386 - Part 3: Use document's principal for favicons in browser (r=billm)
- # [22:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e28c4c1378ac - Christoph Kerschbaumer - Bug 1119386 - Part 4: Use document's principal for favicons in toolkit (r=gijs,mak)
- # [22:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4d8896d9b31e - Christoph Kerschbaumer - Bug 1119386 - Update favicon tests to pass a loadingPrincipal (r=mak)
- # [22:47] * Joins: ehsan (ehsan@66.207.193.22)
- # [22:47] * killer sets mode: +o ehsan
- # [22:48] * Joins: smontagu (chatzilla@moz-ehfsg4.red.bezeqint.net)
- # [22:48] * Quits: sankha (sankha@moz-g7l.b0d.106.27.IP) (Connection closed)
- # [22:49] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [22:50] * khuey|away is now known as khuey
- # [22:51] * adusca is now known as adusca|afk
- # [22:51] * justindarc|brb is now known as justindarc
- # [22:52] * Quits: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [22:55] * Joins: givanica (Thunderbird@moz-n61.k1v.26.188.IP)
- # [22:55] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=d9243e369c22 - 180 changesets
- # [22:57] * kats is now known as kats|away
- # [22:57] * Joins: Sander (chatzilla@moz-98s.ga3.81.86.IP)
- # [22:57] * Joins: njn (chatzilla@moz-j5l8nb.iinet.net.au)
- # [22:57] * killer sets mode: +o njn
- # [22:57] * AutomatedTester|AFK is now known as AutomatedTester
- # [22:57] * KWierso is now known as KWierso|lunch
- # [22:59] * Quits: mkmelin (mkmelin@moz-p52c01.elisa-laajakaista.fi) (Quit: ChatZilla 0.9.92 [Firefox 42.0/20151030083518])
- # [23:00] * Quits: dragana (Instantbird@moz-9033s0.dynamic.surfer.at) (Ping timeout: 121 seconds)
- # [23:00] * Quits: skeuomorf (skeuomorf@moz-cok.u9l.32.197.IP) (Ping timeout: 121 seconds)
- # [23:00] * Joins: gandalf (zbraniecki@moz-5v49kg.ca.comcast.net)
- # [23:00] * stephend is now known as stephend|mtg
- # [23:01] * Quits: @ehsan (ehsan@66.207.193.22) (Ping timeout: 121 seconds)
- # [23:02] * Joins: ehsan (ehsan@moz-cve4fk.5vs3.sij7.f0c8.2607.IP)
- # [23:02] * killer sets mode: +o ehsan
- # [23:03] * KaiRo is now known as KaiRo_away
- # [23:03] * Quits: rego (rego@moz-j9c.pu4.27.77.IP) (Quit: Leaving)
- # [23:03] * Quits: Dexter (Alessio@moz-n2mjoo.retail.telecomitalia.it) (Quit: Leaving)
- # [23:07] * Quits: bogdan_maris (Instantbird@moz-us8.non.122.86.IP) (Ping timeout: 121 seconds)
- # [23:08] * Quits: mwobensmith (mwobensmith@moz-v8k4e3.2rkg.9kg1.0101.2620.IP) (Quit: Leaving.)
- # [23:08] * Joins: mwobensmith (mwobensmith@moz-u3dg2t.sfo1.mozilla.com)
- # [23:10] * Quits: yzen (yzen@66.207.193.21) (Ping timeout: 121 seconds)
- # [23:10] * Quits: florent (Thunderbird@moz-u4r6te.abo.wanadoo.fr) (Client exited)
- # [23:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/6586342848ec - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [23:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/468f04418267 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [23:11] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Connection closed)
- # [23:13] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [23:15] * Quits: Pike (chatzilla@moz-ae04ff.dyn.telefonica.de) (Quit: ChatZilla 0.9.92 [Firefox 42.0/20151029151421])
- # [23:18] * Quits: Aryx (Archaeopter@moz-l7oper.cust.telecolumbus.net) (Quit: Goodbye)
- # [23:18] * Quits: bagder (Daniel@moz-jl4.op1.174.178.IP) (Connection closed)
- # [23:18] * Joins: bagder (Daniel@moz-jl4.op1.174.178.IP)
- # [23:20] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [23:20] * Joins: bbondy (bbondy@moz-ahsdem.home.cgocable.net)
- # [23:21] * Quits: achronop (achronop@moz-gbl9un.dyn.forthnet.gr) (Quit: Leaving)
- # [23:21] * Joins: Bas_ (chatzilla@moz-ubr8j5.dsl.cambrium.nl)
- # [23:21] * Quits: sicking (sicking@moz-cfhap5.mtv2.mozilla.com) (Client exited)
- # [23:22] * Quits: Bas (chatzilla@moz-ubr8j5.dsl.cambrium.nl) (Ping timeout: 121 seconds)
- # [23:23] * Bas_ is now known as Bas
- # [23:24] * Quits: Standard8 (Standard8@moz-1hu.vrc.166.195.IP) (Quit: ZNC - http://znc.in)
- # [23:25] * Joins: jimb (user@moz-09a.i8g.126.207.IP)
- # [23:25] * Quits: bbondy (bbondy@moz-ahsdem.home.cgocable.net) (Ping timeout: 121 seconds)
- # [23:25] * Quits: @ehsan (ehsan@moz-cve4fk.5vs3.sij7.f0c8.2607.IP) (Quit: vanished into thin air...)
- # [23:27] * Quits: drno (nohlmeier@moz-vp31sp.ca.comcast.net) (Client exited)
- # [23:28] * whimboo is now known as whimboo|afk
- # [23:29] * Joins: billm (billm@moz-pc1vh7.mh2d.1ibb.0101.2620.IP)
- # [23:30] * Quits: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp) (Ping timeout: 121 seconds)
- # [23:31] * ahal is now known as ahal|afk
- # [23:31] * Joins: Belxjander (Belxjander@moz-o6knnu.koalanet.ne.jp)
- # [23:31] * Quits: luke (luke@moz-fk7pee.tx.charter.com) (Ping timeout: 121 seconds)
- # [23:31] * Joins: lizzard (ehenry@moz-m8bpm8.ca.comcast.net)
- # [23:31] * armenzg is now known as armenzg_afk
- # [23:31] * Quits: armenzg_afk (armenzg@moz-jt36qr.cable.teksavvy.com) (Quit: Leaving)
- # [23:32] <kip> I am looking for some module owners familiar with IPC serialization to review the new serialized types added in Bug 1182048
- # [23:32] <kip> As per "https://developer.mozilla.org/en-US/docs/Mozilla/IPDL/Type_Serialization", “Serializers and deserializers are security-sensitive and must always receive two reviews from module owners who understand IPC serialization well.”
- # [23:32] * Joins: ehsan (ehsan@moz-b150dv.5vs3.sij7.f0c8.2607.IP)
- # [23:32] * killer sets mode: +o ehsan
- # [23:32] * @bz wonders how big that set is.
- # [23:32] * Joins: roc (chatzilla@moz-8b3t8p.nn3i.kiip.e780.2400.IP)
- # [23:32] * killer sets mode: +o roc
- # [23:32] <kip> Anyone interested in helping out getting WebVR shipped? :-)
- # [23:34] <Mossop> billm would be a good start
- # [23:34] <Mossop> Maybe smaug as a second
- # [23:35] * Joins: dragana (Instantbird@moz-9033s0.dynamic.surfer.at)
- # [23:35] * Quits: myk (myk@moz-pkvath.dynamic.fusionbroadband.com) (Connection closed)
- # [23:35] * Joins: myk (myk@moz-pkvath.dynamic.fusionbroadband.com)
- # [23:35] * Quits: sjakthol (jakthos1@moz-nd3gcv.org.aalto.fi) (Ping timeout: 121 seconds)
- # [23:35] * Joins: sjakthol (jakthos1@moz-nd3gcv.org.aalto.fi)
- # [23:36] <kip> Thanks, Mossop. I'll follow up with them
- # [23:37] * Quits: smontagu (chatzilla@moz-ehfsg4.red.bezeqint.net) (Ping timeout: 121 seconds)
- # [23:39] * Quits: bkerensa (uid28455@moz-2asf42.highgate.irccloud.com) (Quit: Connection closed for inactivity)
- # [23:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/50001043c575 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [23:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/4804de2dc6f3 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [23:41] * justindarc is now known as justindarc|brb
- # [23:43] * Quits: esawin (esawin@moz-gob.6k5.214.85.IP) (Quit: leaving)
- # [23:44] * Joins: esawin (esawin@moz-gob.6k5.214.85.IP)
- # [23:46] * Quits: erikvold (uid18003@moz-p1irvl.ealing.irccloud.com) (Quit: )
- # [23:46] * Joins: erikvold (sid18003@moz-p1irvl.ealing.irccloud.com)
- # [23:46] * Joins: luke (luke@moz-fk7pee.tx.charter.com)
- # [23:47] * wlach is now known as wlach|afk
- # [23:47] * Quits: @ehsan (ehsan@moz-b150dv.5vs3.sij7.f0c8.2607.IP) (A TLS packet with unexpected length was received.)
- # [23:47] * stephend|mtg is now known as stephend
- # [23:51] * Quits: eyome (eyome@moz-gfketo.fbx.proxad.net) (Client exited)
- # [23:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/78381aa444d4 - Matt Woodrow - Bug 1222880 - Build a tree of AnimatedGeometryRoots to speed up traversal of ancestors. r=roc,tn
- # [23:56] * Quits: milan (milan@66.207.193.21) (Quit: )
- # [23:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/efa53e2c2992 - Sebastian Hengst - Bug 1227361 - Remove checks for MOZ_SERVICES_SYNC from browser/. r=markh
- # [23:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/88d5bc46a549 - Sebastian Hengst - Bug 1227647 - Remove UI code for legacy sync migration. r=markh
- # [23:58] * stephend is now known as stephend|mtg
- # [23:58] * Quits: Sander (chatzilla@moz-98s.ga3.81.86.IP) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # Session Close: Wed Nov 25 00:00:00 2015
Previous day, Next day
Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn