/irc-logs / mozilla / #developers / 2015-01-27 / end
Options:
Previous day, Next day
- # Session Start: Tue Jan 27 00:00:00 2015
- # Session Ident: #developers
- # [00:00] <@njn> dholbert: it's really unclear to me if NS_GetContentList() is handling potential OOM in PL_DHashTableAdd() correctly
- # [00:00] * Joins: bholley (bholley@moz-jaejpj.ca.comcast.net)
- # [00:00] * geekboy is now known as geekboy|afk
- # [00:00] <dholbert> njn, yeah, I'm not commenting on this specific use-case :)
- # [00:00] <@njn> d'oh
- # [00:00] <dholbert> njn, (and I'd have to look up the hash table documentation to comment intelligently on that)
- # [00:00] * Joins: shorlander (shorlander@moz-d085kg.res.rr.com)
- # [00:01] <@njn> dholbert: I'm making PLDHashTable more sane, which is why I'm looking at this
- # [00:01] <mccr8> njn: in theory things with Get in the name are known to return null, and thus callers should handle it, but this method has an old school name so who knows.
- # [00:01] <mccr8> njn: smaug may know more
- # [00:01] <@njn> dholbert: I'm interested in what's reasonable for this function -- what should it do on OOM? is returning null and not updating the hash table ok?
- # [00:01] <dholbert> njn++ for improving sanity
- # [00:01] <@njn> dholbert: is putting null into sRecentlyUsedContentLists[] reasonable?
- # [00:01] <dholbert> (Though it may be a zero-sum game; who knows what this will do to njn's sanity)
- # [00:02] <@njn> dholbert: what doesn't kill me only makes me stronger
- # [00:02] <@njn> dholbert: except for polio
- # [00:02] <dholbert> njn, heh. :) no idea RE that array, I've literally never looked at this function before
- # [00:02] * Joins: gkw (fuzz2lin@moz-cfhap5.mtv2.mozilla.com)
- # [00:02] <dholbert> njn, I only piped up to reply to mccr8
- # [00:02] * Joins: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com)
- # [00:02] * @smaug tries to recall more about sRecentlyUsedContentLists
- # [00:02] * bdahl_ is now known as bdahl
- # [00:03] * Joins: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch)
- # [00:03] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [00:03] * kats is now known as kats|away
- # [00:04] <@smaug> well, the code totally expects that there can be null in it
- # [00:04] <dholbert> Say, anyone here know about [Constant] in WebIDL? just want a sanity-check
- # [00:04] <mccr8> dholbert: https://developer.mozilla.org/en-US/docs/Mozilla/WebIDL_bindings#Constant
- # [00:04] <dholbert> mccr8, yeah, I read up a bit on it
- # [00:05] * Joins: rbarnes (rbarnes@moz-b7tb8m.cust.bluewin.ch)
- # [00:05] * Quits: @Cwiiis (uid15019@moz-h5bcpj.highgate.irccloud.com) (Quit: Connection closed for inactivity)
- # [00:05] <mccr8> ah, well that's all I know about it. ;)
- # [00:05] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [00:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1d696936757e - Ethan Hugg - Bug 1125047 - GMP should catch decoder failures r=jesup
- # [00:05] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/94ecdce16831 - David Major - Bug 1124892 - Adjust Breakpad reservation for xul.dll inflation. r=bsmedberg, a=sledru
- # [00:05] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/127079a6ab72 - Gijs Kruitbosch - Bug 1116977 - Disallow link clicks during beforeunload. r=smaug, a=lmandel
- # [00:05] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/d2b8bc669b10 - Markus Stange - Bug 1122942 - Move -moz-window-dragging rules to places that are theme-independent. r=dao, a=lmandel
- # [00:05] <@smaug> that documentation should be very recently updated
- # [00:05] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/24376efc40fb - Markus Stange - Bug 1104036 - Make -moz-window-dragging work in rectilinear 2d transforms. r=roc, a=lmandel
- # [00:05] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [00:05] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/a8f82447f9ad - Benjamin Smedberg - Bug 1125891 - Enable the no-admin sandbox for Flash. r=bobowen, a=lmandel
- # [00:06] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/8f49a2fc3f0c - Brian Hackett - Bug 1124018 - Null the allocation site table if initialization fails. r=jonco, a=abillings
- # [00:06] * Joins: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca)
- # [00:06] <@smaug> njn: so are you worried about some case ContentList code?
- # [00:06] * @smaug is missing to see any problematic case
- # [00:06] <dholbert> smaug / mccr8, so I'm reviewing a patch that marks a bunch of SVG DOM apis as [Constant] in the WebIDL, and I'm wondering how much I need to actually dig down and ensure that we actually do always return the same function (in particular, is there any chance that adding [Constant] could trigger some sort of security issue, if the C++ code under the hood doesn't hold up its end of the bargain)
- # [00:06] <@njn> smaug: if the PL_DHashTableAdd() in NS_GetContentList() fails, it'll end up adding null to sRecentlyUsedContentLists[], and it will return null
- # [00:07] <@njn> smaug: I don't know if that's reasonable
- # [00:07] <@smaug> hmm
- # [00:07] * Quits: ehugg (ehugg@moz-lfs.96d.170.166.IP) (Client exited)
- # [00:07] <mccr8> dholbert: I think it is used to do things like hoist calls out of loops, so I can't imagine it would cause a security issue...
- # [00:07] <dholbert> smaug / mccr8: I'm of the opinion that, if all of these functions *should* be [Constant], we're fine going ahead and marking them, and any implementations that don't actually quite match that annotation are already bugs that we're exposing to web content
- # [00:07] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
- # [00:08] <@njn> smaug: sorry, that's wrong
- # [00:08] <dholbert> mccr8, cool, that's what longsonr (patch author) said, too
- # [00:08] <@smaug> njn: we put the new contentlist to the sRecentlyUsedContentLists
- # [00:08] * Quits: spohl (Adium@moz-i90.olo.156.104.IP) (Quit: Leaving.)
- # [00:08] <@njn> smaug: we'll create a new |list|, add it to sRecentlyUsedContentLists[], but not to gContentListHashTable
- # [00:08] <@smaug> and http://mxr.mozilla.org/mozilla-central/source/dom/base/nsContentList.cpp#966 clears those two hashtables separately
- # [00:09] <@njn> smaug: so the current code is ok?
- # [00:09] * Joins: jduell (jduell@moz-qtvn91.tukw.qwest.net)
- # [00:09] <@smaug> as far as I see
- # [00:10] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (A TLS packet with unexpected length was received.)
- # [00:10] <@njn> smaug: ok, great
- # [00:10] <@njn> thanks
- # [00:10] <@smaug> (silly code, but our hashtables aren't too fast)
- # [00:10] * Joins: bent (chatzilla@moz-vici2u.ca.comcast.net)
- # [00:12] <@njn> that would be a good problem to have
- # [00:13] * Joins: kapy (kapy@moz-u8r.oc0.68.182.IP)
- # [00:13] * @smaug is waiting for froydnj to write a super fast, cache-the-most-recent-results hashtable ;)
- # [00:16] * lightsofapollo|mtv is now known as lightsofapollo
- # [00:16] * Quits: shorlander (shorlander@moz-d085kg.res.rr.com) (Quit: )
- # [00:17] * Quits: milan (milan@moz-eip55e.ckpj.s0pt.0450.2001.IP) (Quit: )
- # [00:18] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Ping timeout: 121 seconds)
- # [00:19] * Parts: nical (nical@moz-sv1pmo.ek14.ff35.0e35.2a01.IP) ("")
- # [00:19] * Joins: gabor (gabor@moz-0cecvn.dip0.t-ipconnect.de)
- # [00:19] * gregglind_50_percent is now known as gregglind_away
- # [00:19] * Quits: nrc|afk (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [00:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c2fd55873192 - Wes Kocher - Backed out changeset 8ae4f78d7e25 (bug 1125559) for checktest orange
- # [00:20] * Quits: kapy (kapy@moz-u8r.oc0.68.182.IP) (Connection closed)
- # [00:20] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/31817089230d - Markus Stange - Bug 1122942 - Move -moz-window-dragging rules to places that are theme-independent. r=dao, a=lmandel
- # [00:20] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/b57b609d03a7 - Markus Stange - Bug 1104036 - Make -moz-window-dragging work in rectilinear 2d transforms. r=roc, a=lmandel
- # [00:20] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/1d3c24b896a1 - Brian Hackett - Bug 1124018 - Null the allocation site table if initialization fails. r=jonco, a=abillings
- # [00:21] * Quits: alexxdim94 (alexander@moz-sj9s1u.btc-net.bg) (Connection closed)
- # [00:22] * Joins: Ankouc (chatzilla@moz-4oc.tj5.234.104.IP)
- # [00:22] * jcj|away is now known as jcj
- # [00:22] * Quits: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch) (Quit: Leaving.)
- # [00:22] <Ankouc> any one to review my patch [ Bug 1124694 ]
- # [00:22] * Quits: tantek (tantek@moz-j5mckf.dynamic.fusionbroadband.com) (Client exited)
- # [00:22] <mrbkap> mmc: ping?
- # [00:23] * Quits: shine (uid50849@moz-5q9ti4.highgate.irccloud.com) (Quit: Connection closed for inactivity)
- # [00:26] * Quits: Archaeopteryx (Archaeopter@moz-ulbtre.cust.telecolumbus.net) (Quit: Goodbye)
- # [00:26] <botond> Ankouc: try :mconley. he should be able to either review it, or point you to someone who can
- # [00:27] * Joins: jviereck (Adium@moz-cfkrsr.dclient.hispeed.ch)
- # [00:27] <Ankouc> who is mconley
- # [00:27] * Joins: dzbarsky (Adium@moz-67pvgr.fir1.n1ms.000b.2601.IP)
- # [00:27] <botond> Ankouc: Mike Conley. if you type ":mconley" in the reviewer text box, it should offer to complete his email
- # [00:28] * Quits: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca) (Quit: Leaving.)
- # [00:29] * Parts: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se) ("")
- # [00:29] * nthomas is now known as nthomas|away
- # [00:30] * Quits: emtwo (Adium@moz-0deb2r.dsl.teksavvy.com) (Quit: Leaving.)
- # [00:30] <Ankouc> i m pretty new here. where is the reviewer text box
- # [00:31] * Quits: bajaj (bajaj_afk@moz-h3gdf0.ujol.1ibb.0101.2620.IP) (Quit: Leaving.)
- # [00:31] * Joins: bajaj (bajaj_afk@moz-h3gdf0.ujol.1ibb.0101.2620.IP)
- # [00:31] <Unfocused> yea, or Mossop, he added that code. i was just looking at that patch since I do much of the UITour stuff, but i have no idea how the new search box stuff is meant to work
- # [00:31] <Unfocused> Ankouc: click on the details link for you patch
- # [00:32] <Unfocused> from there, you can set various flags for it
- # [00:32] <Unfocused> you want to set the review flag
- # [00:32] <Ankouc> oh thanks
- # [00:33] <dholbert> Ankouc, btw: it looks like your patch makes two changes that you probably don't want to make
- # [00:33] * Quits: handyman (handyman@moz-h6pqf9.ca.comcast.net) (Connection closed)
- # [00:33] <Unfocused> you want to set the review flag to "?" to request review, then enter who you want to request review from
- # [00:33] * Joins: handyman (handyman@moz-h6pqf9.ca.comcast.net)
- # [00:33] <dholbert> Ankouc, it removes a blank line before initEvents, and it adds a space after a "}" (both of which are colored at https://bugzilla.mozilla.org/attachment.cgi?id=8554367&action=diff -- you can see the space difference if you select the text in the colored area.)
- # [00:33] <Ankouc> it s kind of space type
- # [00:33] <Ankouc> typo
- # [00:34] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/6dd8812c2b0a - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [00:34] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/a01e32d31dfe - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [00:34] <Ankouc> do i have to make that change
- # [00:34] * Joins: nattokirai (nattokirai@moz-otf.ii6.5.103.IP)
- # [00:34] <dholbert> Ankouc, yes, before the patch lands at least :)
- # [00:35] <dholbert> Ankouc, (rather, you want to *remove* that change from the patch)
- # [00:35] <Ankouc> i ve never used mercurial before
- # [00:35] <Ankouc> how can i do it
- # [00:35] * Joins: davidb (davidb@moz-ksq8n7.dsl.bell.ca)
- # [00:35] <dholbert> Ankouc, let's head over to #introduction
- # [00:36] <Ankouc> ok
- # [00:37] * Quits: handyman (handyman@moz-h6pqf9.ca.comcast.net) (Ping timeout: 121 seconds)
- # [00:38] <bholley> RyanVM: hm
- # [00:38] * Joins: edmorley (uid27002@moz-524haa.brockwell.irccloud.com)
- # [00:38] <bholley> RyanVM: looks like dumb unrelated widget stuff
- # [00:38] <bholley> RyanVM: can we just annotate it as asserting and move on?
- # [00:39] <RyanVM> bholley: yeah, sgtm
- # [00:39] * Quits: Ankouc (chatzilla@moz-4oc.tj5.234.104.IP) (Connection closed)
- # [00:39] <bholley> RyanVM: is it easy for you to do that, or would you like me to?
- # [00:39] <bholley> RyanVM: either way
- # [00:39] <RyanVM> would be better for you, I'm kind of wrapping up for the night
- # [00:39] * Joins: Ankouc (chatzilla@moz-q2d.1fc.234.104.IP)
- # [00:39] <bholley> RyanVM: ok
- # [00:40] * Joins: emtwo (Adium@moz-0deb2r.dsl.teksavvy.com)
- # [00:40] * Quits: jviereck (Adium@moz-cfkrsr.dclient.hispeed.ch) (Quit: Leaving.)
- # [00:40] * Quits: rbarnes (rbarnes@moz-b7tb8m.cust.bluewin.ch) (Connection closed)
- # [00:40] * Quits: gcp (gpascutto@moz-s79512.beqe.9i1r.1812.2a02.IP) (Quit: Make a new plan, Stan!)
- # [00:41] * Joins: rbarnes (rbarnes@moz-b7tb8m.cust.bluewin.ch)
- # [00:44] * Joins: nrc|afk (nrc@moz-qetuu1.xtra.co.nz)
- # [00:44] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b456ab25b529 - Bobby Holley - Bug 1126023 - Annotate assertion. r=me
- # [00:44] * Joins: ehsan (ehsan@moz-n3usua.cable.teksavvy.com)
- # [00:44] * killer sets mode: +o ehsan
- # [00:47] <@roc> botond: hi
- # [00:48] <botond> roc: hi! i have a question about event-regions
- # [00:48] * Quits: @ehsan (ehsan@moz-n3usua.cable.teksavvy.com) (Ping timeout: 121 seconds)
- # [00:49] <botond> roc: i notice in nsSubDocumentFrame::BuildDisplayList, we clear the mAncestorHasTouchEventHandler flag: https://dxr.mozilla.org/mozilla-central/source/layout/generic/nsSubDocumentFrame.cpp?from=nsSubDocumentFrame.cpp#487 . i'm wondering why
- # [00:49] <@roc> I'm not sure
- # [00:49] <@roc> hmm
- # [00:50] <botond> roc: should a touch listener in a parent document be able to prevent-default an event that would otherwise be targeted at a subdocument?
- # [00:50] <@roc> I think it's because if you have a touch event in a subdocument, touch event listeners in ancestor documents don't receive the event at all and can't preventDefault it
- # [00:50] <@roc> i.e., in answer to your question, "no"
- # [00:50] <botond> roc: hmm, ok, thanks
- # [00:50] <botond> eeejay: ping
- # [00:51] * Quits: emtwo (Adium@moz-0deb2r.dsl.teksavvy.com) (Quit: Leaving.)
- # [00:51] <@roc> botond: I don't know whether that's desirable or not, but given the way DOM events work, it's basically what we're stuck with
- # [00:52] * Quits: Rik (rik@moz-q02ddf.fbx.proxad.net) (Ping timeout: 121 seconds)
- # [00:52] * Quits: rbarnes (rbarnes@moz-b7tb8m.cust.bluewin.ch) (A TLS packet with unexpected length was received.)
- # [00:53] <botond> roc: the reason i ask is that in "screen reader" mode, there is a piece of code which prevent-defaults basically all touch events: https://dxr.mozilla.org/mozilla-central/source/accessible/jsat/PointerAdapter.jsm#133
- # [00:53] <botond> roc: and it's done by an event handler added to the main chrome window
- # [00:53] * Quits: davidb (davidb@moz-ksq8n7.dsl.bell.ca) (Quit: Blah blah blah)
- # [00:53] <botond> roc: and i'm wondering whether it's reasonable to it to expect to prevent-default touch events targeted at a child document
- # [00:55] * Quits: mwobensmith (mwobensmith@moz-dae54t.2rkg.9kg1.0101.2620.IP) (Quit: Leaving.)
- # [00:55] * Joins: mwobensmith (mwobensmith@moz-dae54t.2rkg.9kg1.0101.2620.IP)
- # [00:56] <@roc> so, chrome event handlers are special
- # [00:56] * BenWa is now known as BenWa|email
- # [00:56] * Joins: rbarnes (rbarnes@moz-b7tb8m.cust.bluewin.ch)
- # [00:56] <@roc> they get called in the event dispatch chain of basically all their subdocuments
- # [00:56] <@roc> so I guess there is some code we need to add to account for the presence of a chrome-event-handler for touch events
- # [00:57] <botond> roc: yeah, it looks like we need to account for that in the event-regions code
- # [00:58] * Quits: bitgeeky (bitgeeky@moz-9i1.k6o.139.14.IP) (Quit: Leaving)
- # [00:58] <@roc> off the top of my head I don't know the best way to check for that
- # [00:58] * Joins: ehugg (ehugg@moz-f04slc.cisco.com)
- # [00:58] * Matti is now known as Matti_away
- # [00:58] <@roc> maybe look at what MayHavePaintEventListener does in nsPresContext.cpp
- # [01:00] <botond> (eeejay: unping)
- # [01:00] * Quits: rbarnes (rbarnes@moz-b7tb8m.cust.bluewin.ch) (A TLS packet with unexpected length was received.)
- # [01:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/139b3e52f9fe - Bobby Holley - Bug 1124952 - Set request status to Pending in the special DecodeFirstFrame calls too. r=cpearce
- # [01:00] <@roc> in nsDisplayListBuilder::EnterPresShell, check if the new doc has a chrome event listener and set a flag in PresShellState to indicate that
- # [01:01] * Quits: catalinb2 (catalin@moz-gul.5fl.126.86.IP) (Ping timeout: 121 seconds)
- # [01:01] <@roc> then check that flag when we decide whether to add to the event region
- # [01:01] * Quits: ericjung (ericjung@moz-28oidh.7ch4.iin2.0006.2601.IP) (Quit: Leaving)
- # [01:02] * Joins: bitgeeky (bitgeeky@moz-9i1.k6o.139.14.IP)
- # [01:02] * Joins: handyman (handyman@moz-h6pqf9.ca.comcast.net)
- # [01:02] <jorendorff> $ hg pull https://hg.mozilla.org/integration/mozilla-inbound/
- # [01:02] <jorendorff> pulling from https://hg.mozilla.org/integration/mozilla-inbound/
- # [01:02] <jorendorff> abort: HTTP Error 400: Bad Request
- # [01:03] <jorendorff> Anyone else? How to fix?
- # [01:03] * Quits: mwobensmith (mwobensmith@moz-dae54t.2rkg.9kg1.0101.2620.IP) (Quit: Leaving.)
- # [01:03] * Joins: ericjung (ericjung@moz-nnr8pc.7ch4.iin2.0006.2601.IP)
- # [01:04] <KWierso> jorendorff: working for me :\
- # [01:04] <kbrosnan> i'm able to clone
- # [01:04] <kbrosnan> well start one
- # [01:04] * Quits: bitgeeky (bitgeeky@moz-9i1.k6o.139.14.IP) (Quit: Leaving)
- # [01:05] * Joins: catalinb2 (catalin@moz-gul.5fl.126.86.IP)
- # [01:06] * Quits: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net) (Client exited)
- # [01:07] * Quits: Zupoman (mistrzmag@moz-qc3.esk.224.91.IP) (Quit: Plan B failed, time for Plan 9!)
- # [01:08] * Fallen is now known as Fallen|away
- # [01:09] * Joins: timdream (timdream@moz-commod.dynamic.hinet.net)
- # [01:09] * Joins: tantek (tantek@moz-u3dg2t.sfo1.mozilla.com)
- # [01:10] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [01:10] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [01:10] * Joins: Ankouc_ (chatzilla@moz-mmu.1fc.234.104.IP)
- # [01:11] * Quits: loveless (loveless@moz-paq.mg6.56.172.IP) (A TLS packet with unexpected length was received.)
- # [01:11] * Quits: Ankouc (chatzilla@moz-q2d.1fc.234.104.IP) (Ping timeout: 121 seconds)
- # [01:12] * Ankouc_ is now known as Ankouc
- # [01:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f2bbb7a9a3e3 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [01:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8fed85cc71d5 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [01:12] <botond> roc: to check if a document has a chome event listener, is it something like presShell->GetDocument()->GetInnerWindow()->GetChromeEventHandler()->GetExistingListenerManager()->HasListenersFor(...) ?
- # [01:14] <@roc> yeah
- # [01:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7971981a6000 - Wes Kocher - Backed out changeset 67496f44f461 (bug 1125138) for checktest failures
- # [01:15] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (Ping timeout: 121 seconds)
- # [01:16] * Quits: givanica (Thunderbird@moz-98k.ff2.121.86.IP) (Client exited)
- # [01:17] * Quits: tomer (tomer@moz-to490c.012.net.il) (Ping timeout: 121 seconds)
- # [01:17] * Quits: jduell (jduell@moz-qtvn91.tukw.qwest.net) (Ping timeout: 121 seconds)
- # [01:17] * Quits: ggp (ggp@moz-114.l2u.205.191.IP) (Ping timeout: 121 seconds)
- # [01:18] * Quits: wlach (wlach@moz-qd6ql3.ckpj.s0pt.0450.2001.IP) (Quit: Ex-Chat)
- # [01:18] * BenWa|email is now known as BenWa
- # [01:20] * Quits: bz_away (bzbarsky@moz-m10oko.fios.verizon.net) (Ping timeout: 121 seconds)
- # [01:20] <@smaug> botond: what are you trying to do?
- # [01:21] * Joins: loveless (loveless@moz-paq.mg6.56.172.IP)
- # [01:21] <@smaug> (use of chromeventhandler that way explictly for any HasListenersFor looks suspicious)
- # [01:22] * Joins: ericjung___ (ericjung@moz-0523c5.7ch4.iin2.0006.2601.IP)
- # [01:22] <botond> smaug: detect whether, in the context of a subdocument, there is a chrome event handler for touch events
- # [01:23] <botond> smaug: because then that chrome event handler might prevent-default events otherwise destined toward the subdocument
- # [01:24] <@smaug> well, any ancestor of chrome event handler might have listeners for touch events
- # [01:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f9131ff0a89b - Jed Davis - Bug 1068838 - Add chrome-only method for setting an <input>'s file list. r=sicking
- # [01:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a0f9be26c71e - Jed Davis - Bug 1068838 - Fix file input element tests to open files in the parent process. r=sicking
- # [01:24] <@smaug> or the parentTarget of GetInnerWindow
- # [01:24] <botond> smaug: and to account for this, frames in the subdocument need to be added to the dispatch-to-content region of any layers for the subdocument
- # [01:24] * Quits: jimm (jmathies@moz-sj8.oa5.235.67.IP) (Quit: )
- # [01:25] * Joins: ericjung__ (ericjung@moz-0523c5.7ch4.iin2.0006.2601.IP)
- # [01:25] <botond> smaug: what is the parentTarget of GetInnerWindow?
- # [01:26] <@smaug> events go from element->parentNode{0,}->document->window->messagemanager-><xul:browser>(aka chromeEventHandler)->parentNode{0,}->document->window->WindowRoot
- # [01:26] <@smaug> where element is something in non-e10s content page
- # [01:27] * Quits: bholley (bholley@moz-jaejpj.ca.comcast.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [01:27] * Joins: jduell (jduell@moz-qtvn91.tukw.qwest.net)
- # [01:28] * sheppy is now known as sheppy-offline
- # [01:28] <@smaug> botond: it is possibly enough if you check whether messagemanager and chromeeventhandler->ownerdocument->GetInnerWindow have touch event listeners
- # [01:28] <@smaug> because of http://mxr.mozilla.org/mozilla-central/source/dom/events/EventListenerManager.cpp#332
- # [01:29] <@smaug> so if any element in xul has touch event listeners, the window object in xul has been marked to http://mxr.mozilla.org/mozilla-central/source/dom/base/nsPIDOMWindow.h#441
- # [01:30] <@smaug> (but adding event listeners to messagemanager doesn't have the same effect)
- # [01:30] <botond> smaug: won't that give me false positives, though?
- # [01:31] <@smaug> possibly yes
- # [01:31] * Joins: dmose (uid42639@moz-ififqa.brockwell.irccloud.com)
- # [01:31] <@smaug> other option is to go through the whole event target chain from messagemanager up and check all the targets there
- # [01:31] * juanb|afk is now known as juanb
- # [01:31] * @smaug doesn't know the use cae
- # [01:31] <@smaug> case
- # [01:32] * Quits: rstrong (rstrong@moz-oi0h6m.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [01:32] <@smaug> (EventListenerManager does have MayHaveTouchEventListener() for fast check)
- # [01:33] * Quits: ericjung___ (ericjung@moz-0523c5.7ch4.iin2.0006.2601.IP) (Quit: Leaving)
- # [01:33] <botond> smaug: the use case is that if the chrome window has a touch event listener, i would like to know in subdocuments (in the same process)
- # [01:33] * geekboy|afk is now known as geekboy
- # [01:33] <botond> smaug: a false negative gives incorrect behaviour. a false positive just give slow behaviour (but i'd still like to avoid that)
- # [01:34] <botond> smaug: (the reason we have slow behaviour is that we can't async-scroll the subdocument if the touch event listener might prevent-default the event)
- # [01:36] * Quits: gabor (gabor@moz-0cecvn.dip0.t-ipconnect.de) (Connection closed)
- # [01:36] * Quits: secretrobotron (secretrobot@moz-bf9eb7.ckpj.s0pt.0450.2001.IP) (A TLS packet with unexpected length was received.)
- # [01:36] <@smaug> hmm, didn't chrome change their behavior to always async scroll anyway or something
- # [01:36] <@smaug> botond: anyhow, this case happens only for certain events, right?
- # [01:37] <botond> smaug: yes, touch-start and touch-move. this is what we currently check: https://dxr.mozilla.org/mozilla-central/source/layout/generic/nsFrame.cpp#1928
- # [01:37] <botond> smaug: but that check misses the listener on the chrome window
- # [01:41] * nthomas|away is now known as nthomas
- # [01:42] * Quits: mcomella (mcomella@moz-ps8n7n.2rkg.9kg1.0101.2620.IP) (Quit: Leaving)
- # [01:42] <@smaug> botond: hmm, shouldn't we check only the first touchmove... but maybe that code is for something else
- # [01:42] * Joins: alexosaurus (Adium@moz-0fs.jtu.223.111.IP)
- # [01:43] * jlund|buildduty is now known as jlund|bbl
- # [01:43] <botond> smaug: the handler is only allowed to prevent-default the first touch-move event, yes
- # [01:43] <@smaug> botond: this is displaylist building, so super hot code
- # [01:43] <@smaug> thinking
- # [01:43] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
- # [01:44] * Joins: jdm (jdm@moz-khubok.in-addr.btopenworld.com)
- # [01:44] <botond> smaug: but there is no way to ask "do you have a listener for a touch-move event that handles the first one" :)
- # [01:44] <@smaug> true
- # [01:44] <@smaug> so we do have code to get the event target chain and store that in an array which one could then iterate
- # [01:44] * Quits: dzbarsky (Adium@moz-67pvgr.fir1.n1ms.000b.2601.IP) (Quit: Leaving.)
- # [01:45] <@smaug> basically check targetinarray->MayHaveTouchEventListener() && (targetinarray->HasListenersFor(nsGkAtoms::ontouchstart) || targetinarray->HasListenersFor(nsGkAtoms::ontouchmove))
- # [01:45] <@smaug> but that might not be fast enough
- # [01:46] <Gijs> mrbkap: are you actively working on bug 1051238 ?
- # [01:47] * Quits: timdream (timdream@moz-commod.dynamic.hinet.net) (Connection closed)
- # [01:47] * Joins: timdream (timdream@moz-commod.dynamic.hinet.net)
- # [01:47] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Client exited)
- # [01:48] <@smaug> botond: does this code run basically whenever we ...do hit testing?
- # [01:48] * Joins: luke1 (luke@moz-fk7pee.tx.charter.com)
- # [01:49] <mrbkap> Gijs: not actively, no.
- # [01:49] <@roc> smaug: no. this runs during painting, so we can tell the compositor which parts of each layer need sync vs async scrolling.
- # [01:49] * Quits: oliverthor (oliverthor@moz-5i3.51j.125.50.IP) (Quit: Leaving)
- # [01:49] <botond> smaug: well, at least whenever we paint. it affects what goes into the event-regions that are eventually stored in Layer and sent to the compositor
- # [01:49] <Gijs> mrbkap: is adding a "kill the cache for script X" method hard and/or enough to address the issue?
- # [01:50] * Joins: masayuki (Thunderbird@moz-1gqv2s.zaq.ne.jp)
- # [01:50] * Quits: luke (luke@moz-fk7pee.tx.charter.com) (Ping timeout: 121 seconds)
- # [01:52] * botond needs to go. he has recorded the discussion so far in bug 1125422
- # [01:52] * Quits: bdahl (bdahl@moz-m6dgfb.2rkg.9kg1.0101.2620.IP) (A TLS packet with unexpected length was received.)
- # [01:53] * Joins: KuoE0 (KuoE0@moz-1vs85i.HINET-IP.hinet.net)
- # [01:53] * Quits: jdm (jdm@moz-khubok.in-addr.btopenworld.com) (Connection closed)
- # [01:53] <botond> roc: smaug: thanks for your help so far! maybe comment in bug 1125422 if you have any further thoughts?
- # [01:54] <@smaug> about to do so
- # [01:54] * mcote|afk is now known as mcote
- # [01:54] * Joins: jdm (jdm@moz-khubok.in-addr.btopenworld.com)
- # [01:55] * Parts: marco (marco@moz-hbb7rt.retail.telecomitalia.it) ("")
- # [01:55] * Joins: bdahl (bdahl@moz-c27fnt.2rkg.9kg1.0101.2620.IP)
- # [01:56] <@roc> will do
- # [01:57] * terrence is now known as terrence-afk
- # [01:57] * Quits: rmcdougall (Adium@moz-f2h.mvj.38.216.IP) (Quit: Leaving.)
- # [01:57] <mrbkap> Gijs: oops, sorry.
- # [01:57] * Quits: jdm (jdm@moz-khubok.in-addr.btopenworld.com) (Connection closed)
- # [01:57] <Gijs> mrbkap: ? :)
- # [01:57] * Quits: KuoE0 (KuoE0@moz-1vs85i.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [01:58] * Joins: jdm (jdm@moz-khubok.in-addr.btopenworld.com)
- # [01:58] <mrbkap> Gijs: I didn't see that you'd responded.
- # [01:58] <mrbkap> Gijs: I don't think it'd be terribly difficult to add that.
- # [01:58] <mrbkap> Gijs: the addon author would have to make sure to undo any other side-effects from the cached script, though.
- # [01:58] * Joins: rmcdougall (Adium@moz-f2h.mvj.38.216.IP)
- # [01:59] * Joins: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net)
- # [01:59] * Joins: KuoE0 (KuoE0@moz-1vs85i.HINET-IP.hinet.net)
- # [02:00] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Client exited)
- # [02:00] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
- # [02:01] * Joins: rbarnes (rbarnes@moz-ob1t27.cust.bluewin.ch)
- # [02:01] * Joins: wesley_huang (wesley_huan@moz-4r1eq5.dynamic.hinet.net)
- # [02:02] * Quits: sawrubh (uid6719@moz-sr8l1j.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [02:03] <Kwan> Gijs: re bug 1036434, should I put the styles in in-content/common.css instead? that seems to be where the #categories list gets its padding etc.
- # [02:03] <Gijs> mrbkap: right, I don't think there's any way the frame script infra itself can help with that (e.g. if you registered an observer or event listener, you'd have to unregister it)
- # [02:04] * Joins: ehsan (ehsan@moz-n3usua.cable.teksavvy.com)
- # [02:04] * killer sets mode: +o ehsan
- # [02:04] * Quits: @ehsan (ehsan@moz-n3usua.cable.teksavvy.com) (A TLS packet with unexpected length was received.)
- # [02:05] * Quits: rbarnes (rbarnes@moz-ob1t27.cust.bluewin.ch) (Ping timeout: 121 seconds)
- # [02:05] <mrbkap> Gijs: Yeah.
- # [02:05] <Gijs> Kwan: hm. I guess so, although it puzzles me that the styles are there to begin with... the categories stuff is clearly specific to the preferences pane. :s
- # [02:05] <Gijs> jaws: ^^ do you know the answer here?
- # [02:06] <Gijs> (why are the xul|*#categories styles in the toolkit in-content "common.css" file)
- # [02:07] <Kwan> Gijs: ah, wait. about:addons
- # [02:07] <Gijs> mrbkap: so I looked at doing that earlier... but I couldn't figure out if I had to delete the holder object the way that shutdown() does... :)
- # [02:07] <Gijs> Kwan: oh, really?
- # [02:07] <Gijs> That's sadfaces
- # [02:08] <Kwan> I'll keep these fixes to pref[...].css then
- # [02:08] * AutomatedTester is now known as AutomatedTester|AFK
- # [02:08] * Quits: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com) (Quit: )
- # [02:08] <Kwan> since about:addons' categories list doesn't suffer from the same problem
- # [02:08] * Quits: jdm (jdm@moz-khubok.in-addr.btopenworld.com) (Connection closed)
- # [02:09] * Joins: jdm (jdm@moz-khubok.in-addr.btopenworld.com)
- # [02:09] <Kwan> took me a while to remember what else there was that was in-content. The addons stuff was so long ago now I'd forgotten
- # [02:10] <Gijs> Kwan: hrm, I don't see common.css loaded in about:addons on beta.
- # [02:10] * Gijs pokes his nightly
- # [02:10] <Gijs> nope, not there either
- # [02:10] <Gijs> so much for "common"
- # [02:10] <Gijs> the thing is, I'm pretty sure it gets included on error pages or somesuch
- # [02:10] <Gijs> but they don't have categories
- # [02:10] <Kwan> hmm oh, wait, you're right
- # [02:10] <Gijs> Kwan: for sanity's sake, let's just keep it in the pref[...].css file
- # [02:11] <Kwan> I saw the #catgeories with identical styling and assumed
- # [02:11] <Gijs> Kwan: we need to sort out the in-content CSS story :(
- # [02:11] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [02:11] <Kwan> heh
- # [02:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/08f5812826e7 - Jeff Gilbert - Bug 1124430 - Implement GetFragDataLocation. - r=kamidphish
- # [02:12] * Quits: KuoE0 (KuoE0@moz-1vs85i.HINET-IP.hinet.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [02:13] * Quits: handyman (handyman@moz-h6pqf9.ca.comcast.net) (Quit: )
- # [02:19] * Joins: dzbarsky (Adium@moz-eah6o9.fir1.n1ms.000b.2601.IP)
- # [02:19] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
- # [02:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/783d0fe2770b - Jeff Gilbert - Bug 1124394 - Allow Core Profile GL contexts. - r=kamidphish
- # [02:21] * Joins: ggp (ggp@moz-ud2.ieu.205.191.IP)
- # [02:22] * Quits: Waldo (waldo@moz-e9af6p.ujol.1ibb.0101.2620.IP) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 32.0/20140902134853])
- # [02:22] * geekboy is now known as geekboy|afk
- # [02:23] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [02:23] * Quits: ehugg (ehugg@moz-f04slc.cisco.com) (Client exited)
- # [02:23] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [02:25] * Quits: bwc (Adium@moz-3pa8q9.ujol.1ibb.0101.2620.IP) (Quit: Leaving.)
- # [02:27] <Kwan> aww man, you can't use calc() _or var()_ inside a media query? disappointing
- # [02:28] * Joins: brsun (chatzilla@moz-2hf62a.HINET-IP.hinet.net)
- # [02:29] * heycam is now known as heycam|away
- # [02:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a5c873e1527a - Ehsan Akhgari - Bug 1126015 - Mark some functions in FFmpegDataDecoder as override; r=cpearce
- # [02:29] * Quits: @smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
- # [02:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/17934cf98597 - Michal Novotny - Bug 1120945 - HTTP cache v2: maximum number of entries is limited to 13106 on FAT32, r=honzab
- # [02:30] * Quits: Ankouc (chatzilla@moz-mmu.1fc.234.104.IP) (Quit: ChatZilla 0.9.91.1 [Firefox 35.0/20150108202552])
- # [02:30] * Quits: kaze (kaze@moz-8ion1q.fbx.proxad.net) (Ping timeout: 121 seconds)
- # [02:30] * Quits: tedders1 (tedders1@moz-784.r0m.128.1.IP) (Ping timeout: 121 seconds)
- # [02:30] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [02:30] <Gijs> Kwan: feel free to make that a followup
- # [02:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/780d7bb5eb82 - Dan Gohman - Bug 1125185 - Define MOZ_COLD for marking "cold" functions r=waldo
- # [02:30] <Gijs> (the getting rid of the padding bits)
- # [02:31] <Kwan> oh, I've already done it if you want me to upload the updated patch
- # [02:31] <Kwan> I was just mucking around with var() and calc() to see if I could make it less magic-numbery
- # [02:31] * heycam|away is now known as heycam|away|away
- # [02:31] * Quits: jdm (jdm@moz-khubok.in-addr.btopenworld.com) (Connection closed)
- # [02:32] * Joins: shine (uid50849@moz-5q9ti4.highgate.irccloud.com)
- # [02:32] * Joins: jdm (jdm@moz-khubok.in-addr.btopenworld.com)
- # [02:32] * Joins: m_kato (m_kato@moz-86b4bs.bitcat.net)
- # [02:33] * Quits: bnicholson (bnicholson@moz-cfhap5.mtv2.mozilla.com) (Quit: Leaving)
- # [02:34] * Quits: juanb (jbecerra@moz-cfhap5.mtv2.mozilla.com) (Client exited)
- # [02:34] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
- # [02:35] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [02:35] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [02:35] * nrc|afk is now known as nrc
- # [02:37] * Quits: jdm (jdm@moz-khubok.in-addr.btopenworld.com) (Connection closed)
- # [02:37] * Joins: jdm (jdm@moz-khubok.in-addr.btopenworld.com)
- # [02:37] * Quits: rednaks (rednaks@moz-l5m.nb0.227.41.IP) (Quit: Leaving)
- # [02:39] * Quits: catalinb2 (catalin@moz-gul.5fl.126.86.IP) (Ping timeout: 121 seconds)
- # [02:39] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [02:40] * Quits: kgrandon (Adium@moz-9lgdoj.rgd2.9kg1.0101.2620.IP) (Quit: Leaving.)
- # [02:41] * Quits: jdm (jdm@moz-khubok.in-addr.btopenworld.com) (Connection closed)
- # [02:41] * Quits: wesley_huang (wesley_huan@moz-4r1eq5.dynamic.hinet.net) (Client exited)
- # [02:42] * Joins: jdm (jdm@moz-khubok.in-addr.btopenworld.com)
- # [02:44] * Joins: mconley (mconley@moz-os98q9.cable.teksavvy.com)
- # [02:44] * Joins: Morris (Morris@moz-aj9ejj.HINET-IP.hinet.net)
- # [02:45] <Kwan> Gijs: P.S. do you do reviews for the whole of prefs or just in-content?
- # [02:45] * KWierso is now known as KWierso|afk
- # [02:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ead7aa880dbe - Jason Orendorff - Bug 1125371 - Silence some GCC-only warnings about uninitialized varaibles when building with --enable-optimize. r=jandem.
- # [02:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a2f4d6a4a23b - Jason Orendorff - Bug 1122209 - Change some uses of LookupProperty to HasProperty. r=evilpie.
- # [02:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1f3af5e261d1 - Jason Orendorff - Bug 1123906 - Get rid of static create() methods on ParseNode subclasses. Use constructors instead. r=efaust.
- # [02:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4c573585e7dc - Jason Orendorff - Bug 1090096 - Fix null crash in cloneParseTree with computed property names in destructuring. r=efaust.
- # [02:47] * Joins: bnicholson (bnicholson@moz-olu.vgl.130.24.IP)
- # [02:47] <Gijs> Kwan: I can do reviews for Firefox more generally... but right now I just deferred to MattN because I'm crashing and need sleep (I'm in UTC)
- # [02:47] <Gijs> Kwan: more tomorrow if needed :)
- # [02:47] * Quits: Gijs (chatzilla@moz-8e8.cgs.80.5.IP) (Quit: sleep!)
- # [02:47] * Quits: jduell (jduell@moz-qtvn91.tukw.qwest.net) (Ping timeout: 121 seconds)
- # [02:47] * Quits: jdm (jdm@moz-khubok.in-addr.btopenworld.com) (Connection closed)
- # [02:48] <Kwan> Gijs: oh no worries, it's nothing for right now
- # [02:48] * Quits: edmorley (uid27002@moz-524haa.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [02:48] <Kwan> Gijs: more of a hypothetical future thing
- # [02:48] * Joins: jdm (jdm@moz-khubok.in-addr.btopenworld.com)
- # [02:49] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [02:51] * ewong|away is now known as ewong
- # [02:52] * Quits: benfrancis|away (uid16068@moz-v6fohe.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
- # [02:53] * Quits: fabrice (fabrice@moz-d7q5nj.mh2d.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [02:53] * Quits: mak (uid24946@moz-7ljuor.highgate.irccloud.com) (Quit: Connection closed for inactivity)
- # [02:53] * Joins: bholley (bholley@moz-jaejpj.ca.comcast.net)
- # [02:54] * BenWa is now known as BenWa|email
- # [02:55] * Quits: clokep (Instantbird@moz-ivrdpu.cable.rcn.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [02:55] * Joins: clokep (Instantbird@moz-r59.0r9.6.209.IP)
- # [02:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f5c6c57fc11a - Ehsan Akhgari - Bug 1125559 - Move TestThreadPool.cpp to gtest and enable it; r=froydnj
- # [02:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/2574b2a836f4 - Richard Newman - Bug 1126111 - Define string for reading list DB authority. r=me, DONTBUILD
- # [02:55] * Joins: tedders1 (tedders1@moz-4q6.1ip.140.1.IP)
- # [02:57] <jaws> Kwan: note https://bugzilla.mozilla.org/show_bug.cgi?id=989469
- # [02:57] <jaws> Kwan: note https://bugzilla.mozilla.org/show_bug.cgi?id=989469
- # [02:57] <jaws> Kwan: also, Gijs disconnected before your last two messages
- # [02:57] * Joins: seanlin (Thunderbird@moz-aj9ejj.HINET-IP.hinet.net)
- # [02:58] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [02:58] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
- # [02:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/05dfcf108b4f - Neil Deakin - Bug 1091140, add telemetry for sanitize, r=vdjeric
- # [02:59] * Joins: kgrandon (Adium@moz-l8e1ui.ca.comcast.net)
- # [03:00] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [03:00] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [03:00] * Quits: chmanchester (chmancheste@moz-cbt.jf0.246.96.IP) (Quit: )
- # [03:01] * Quits: dzbarsky (Adium@moz-eah6o9.fir1.n1ms.000b.2601.IP) (Quit: Leaving.)
- # [03:01] * Joins: rbarnes (rbarnes@moz-ob1t27.cust.bluewin.ch)
- # [03:02] * Quits: billm (billm@moz-qjbkeh.mtv2.mozilla.com) (Quit: Leaving)
- # [03:03] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Ping timeout: 121 seconds)
- # [03:04] * Joins: kgrandon1 (Adium@moz-l8e1ui.ca.comcast.net)
- # [03:04] * Quits: kgrandon (Adium@moz-l8e1ui.ca.comcast.net) (Connection closed)
- # [03:04] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (Ping timeout: 121 seconds)
- # [03:04] * Joins: twi (Adium@moz-q4tvni.optusnet.com.au)
- # [03:04] * Quits: jdm (jdm@moz-khubok.in-addr.btopenworld.com) (Connection closed)
- # [03:05] * Joins: jdm (jdm@moz-khubok.in-addr.btopenworld.com)
- # [03:05] * Quits: rbarnes (rbarnes@moz-ob1t27.cust.bluewin.ch) (Ping timeout: 121 seconds)
- # [03:06] * Joins: glob (glob@moz-a0fskj.glob.com.au)
- # [03:07] * Joins: ehugg (ehugg@moz-f04slc.cisco.com)
- # [03:07] * Quits: ehugg (ehugg@moz-f04slc.cisco.com) (Client exited)
- # [03:07] * Joins: jhao_ (chatzilla@moz-2hf62a.HINET-IP.hinet.net)
- # [03:08] * Joins: emtwo (Adium@moz-0deb2r.dsl.teksavvy.com)
- # [03:08] * Quits: tantek (tantek@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [03:08] * Joins: TYLin (TYLin@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:10] * heycam|away|away is now known as heycam|away
- # [03:11] * heycam|away is now known as heycam
- # [03:11] * Quits: jdm (jdm@moz-khubok.in-addr.btopenworld.com) (Quit: )
- # [03:12] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [03:12] * Quits: tedders1 (tedders1@moz-4q6.1ip.140.1.IP) (Connection closed)
- # [03:13] * Joins: tedders1 (tedders1@moz-4q6.1ip.140.1.IP)
- # [03:13] * Joins: boris (boris@moz-2hf62a.HINET-IP.hinet.net)
- # [03:13] * Quits: nattokirai (nattokirai@moz-otf.ii6.5.103.IP) (Client exited)
- # [03:13] * Quits: timdream (timdream@moz-commod.dynamic.hinet.net) (Client exited)
- # [03:13] * heycam is now known as heycam|away
- # [03:14] * Quits: surkov (surkov@moz-v8g78c.cpe.teksavvy.com) (Client exited)
- # [03:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/45921e3d9773 - Ehsan Akhgari - Bug 1117034 - Mark some overridden functions in the tree as override
- # [03:15] * Quits: bajaj (bajaj_afk@moz-h3gdf0.ujol.1ibb.0101.2620.IP) (Quit: Leaving.)
- # [03:17] * Quits: tedders1 (tedders1@moz-4q6.1ip.140.1.IP) (Ping timeout: 121 seconds)
- # [03:17] * Joins: Waldo (waldo@moz-pqc1f5.ca.comcast.net)
- # [03:18] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Quit: )
- # [03:18] * Quits: kevin (kevin@moz-2hf62a.HINET-IP.hinet.net) (Quit: 暫離)
- # [03:19] * Joins: chewey (chewey@moz-en0bdk.dip0.t-ipconnect.de)
- # [03:20] * Joins: jsx (uid48919@moz-ldeku3.uxbridge.irccloud.com)
- # [03:20] * Quits: botond_ (quassel@moz-alas68.ckpj.s0pt.0450.2001.IP) (Quit: No Ping reply in 180 seconds.)
- # [03:20] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [03:22] * Quits: chewey_ (chewey@moz-m34abk.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
- # [03:24] * Joins: botond_ (quassel@moz-i5m.05u.207.66.IP)
- # [03:25] * Quits: Mnyromyr (Mnyromyr@moz-duom9s.ejss.mv3s.0908.2a02.IP) (Quit: ChatZilla 0.9.91.1 [SeaMonkey 2.32/20150112202503])
- # [03:25] * Joins: elin (elin@moz-2hf62a.HINET-IP.hinet.net)
- # [03:25] <jesup> is anyone sheriffing tonight?
- # [03:27] * Quits: mchang (mchang@moz-4b7hgp.res.rr.com) (Client exited)
- # [03:27] * Joins: Edgar (Thunderbird@moz-2hf62a.HINET-IP.hinet.net)
- # [03:28] * Quits: emtwo (Adium@moz-0deb2r.dsl.teksavvy.com) (Quit: Leaving.)
- # [03:28] * Quits: matt-r (mattr@moz-a4f.7e4.194.74.IP) (Ping timeout: 121 seconds)
- # [03:29] <RyanVM> jesup: i was probably going to peek in later, but am not actively at the moment
- # [03:29] * Joins: StevenLee (Adium@moz-2hf62a.HINET-IP.hinet.net)
- # [03:30] * philor|away is now known as philor
- # [03:30] * Joins: Jerry_Mac (hshih@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:30] * Joins: jw_wang (jw_wang@moz-2hf62a.HINET-IP.hinet.net)
- # [03:31] * Joins: GinaYeh (uid27703@moz-0o1d12.brockwell.irccloud.com)
- # [03:31] * Joins: kapy (kapy@moz-u8r.oc0.68.182.IP)
- # [03:32] <RyanVM> jesup: dare I ask why?
- # [03:32] * Joins: yunza504 (Mibbit@moz-do0.tp8.235.190.IP)
- # [03:32] * Quits: bdahl (bdahl@moz-c27fnt.2rkg.9kg1.0101.2620.IP) (A TLS packet with unexpected length was received.)
- # [03:32] <yunza504> Hello, I'm starting to develop a firefox OS app and I have a question about offline apps
- # [03:35] * Quits: idwer (irc@moz-bp1sle.adsl.online.nl) (A TLS packet with unexpected length was received.)
- # [03:36] * Quits: rmcdougall (Adium@moz-f2h.mvj.38.216.IP) (Quit: Leaving.)
- # [03:36] * Joins: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net)
- # [03:37] * Joins: juniorhsu (uid27704@moz-9o370c.brockwell.irccloud.com)
- # [03:39] * Quits: clokep (Instantbird@moz-r59.0r9.6.209.IP) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [03:39] <philor> if "closing inbound, saying 'you know what, I'm sick of this *and* I don't have a tree' and then ignoring it counts as sheriffing, then I guess I am
- # [03:40] * Joins: rmcdougall (Adium@moz-f2h.mvj.38.216.IP)
- # [03:40] <RyanVM> philor++
- # [03:41] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [03:41] * Quits: dmose (uid42639@moz-ififqa.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [03:41] <philor> jgilbert: you're busted, down underneath ehsan's eternal build bustage
- # [03:41] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Client exited)
- # [03:42] <jgilbert> philor: yeah, retriggered to check, but looking at it now
- # [03:42] <philor> can't trust WinXP or Android to keep their grubby contexts off your screen
- # [03:44] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [03:45] * Quits: gandalf (zbraniecki@moz-u3dg2t.sfo1.mozilla.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [03:45] * Quits: kapy (kapy@moz-u8r.oc0.68.182.IP) (Connection closed)
- # [03:46] * Quits: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net) (Client exited)
- # [03:47] <Callek> yunza504: perhaps #b2g would be a more applicable channel for your inquiry
- # [03:48] <Callek> (as in more likely to get a response)
- # [03:48] <yunza504> ok ty I was looking for the right channel
- # [03:48] * Parts: yunza504 (Mibbit@moz-do0.tp8.235.190.IP)
- # [03:49] * Joins: wesley_huang (wesley_huan@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:49] * Quits: Waldo (waldo@moz-pqc1f5.ca.comcast.net) (Quit: back tomorrow, sans end-of-day grouchiness)
- # [03:50] * Joins: ehugg (ehugg@moz-63sj5i.wa.comcast.net)
- # [03:51] <jgilbert> philor: I don't know. Would you like to back it out, or for me to do it?
- # [03:52] * Quits: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [03:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3f59fc41a460 - Ehsan Akhgari - Backed out changeset 45921e3d9773 (bug 1117034) because of build bustage on a CLOSED TREE
- # [03:55] * Joins: mixedpuppy (mixedpuppy@moz-l5h.i2q.170.166.IP)
- # [03:55] * Quits: bgrins1 (bgrins@moz-c7sa5a.qnor.1u98.0009.2601.IP) (Quit: Leaving.)
- # [03:57] * Quits: bent (chatzilla@moz-vici2u.ca.comcast.net) (Quit: ChatZilla 0.9.91-rdmsoft [XULRunner 32.0.3/20140923175406])
- # [03:57] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [03:57] * nsm is now known as nsm|away
- # [03:58] * Joins: bz_away (bzbarsky@moz-m10oko.fios.verizon.net)
- # [03:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cffc8f5b7068 - Wes Kocher - Backed out changeset 783d0fe2770b (bug 1124394) for test bustage on a CLOSED TREE
- # [03:58] <KWierso|afk> jgilbert: got it ^
- # [03:59] <jgilbert> KWierso|afk: thanks
- # [03:59] * Quits: @bsmedberg (bsmedberg@moz-smm6jf.pa.atlanticbb.net) (Quit: Leaving)
- # [03:59] * heycam|away is now known as heycam
- # [04:02] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [04:03] * Quits: ashughes (uid34327@moz-idmt9q.ealing.irccloud.com) (Quit: Connection closed for inactivity)
- # [04:03] <bz_away> What's the git equivalent of hg export?
- # [04:03] * Quits: Edgar (Thunderbird@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
- # [04:03] * Joins: Edgar (Thunderbird@moz-2hf62a.HINET-IP.hinet.net)
- # [04:04] * Quits: &dbaron (dbaron@moz-l7dki0.2rkg.9kg1.0101.2620.IP) (Ping timeout: 121 seconds)
- # [04:04] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Ping timeout: 121 seconds)
- # [04:06] * Joins: Sorgrum (Sorgrum@moz-mqng7g.fl.atlanticbb.net)
- # [04:07] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [04:08] <Sorgrum> I'm trying to develop an extension, and I need it to check the status of some preferences and act accordingly so I put that part of the code into a function and I'm trying to get setInterval to call it every hour (and every 2 seconds for testing purposes) but I always seem to get an error when I run "cfx test" or "cfx run".
- # [04:09] <jhlin> bz_away: 'git log -p ...'?
- # [04:09] * Quits: ckitching (ckitching@moz-cbggqe.cable.virginm.net) (A TLS packet with unexpected length was received.)
- # [04:09] * Quits: jhao_ (chatzilla@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [04:10] <bz_away> jhlin: Ah, yeah, that works. Thanks.
- # [04:10] * Joins: catalinb2 (catalin@moz-gul.5fl.126.86.IP)
- # [04:10] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [04:13] * Quits: justindarc (justindarc@moz-lev.v84.203.209.IP) (Quit: )
- # [04:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/b2474bca8494 - Mike Habicher - Bug 1121769 - push picture size to the camera driver, even in video mode, r=aosmond
- # [04:13] * Joins: kapy (kapy@moz-u8r.oc0.68.182.IP)
- # [04:14] * Quits: espadrine (tyl@moz-l019mn.fbx.proxad.net) (Ping timeout: 121 seconds)
- # [04:14] * Quits: huseby (huseby@moz-m7l0au.d2vr.5em6.6400.2605.IP) (Ping timeout: 121 seconds)
- # [04:14] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (Ping timeout: 121 seconds)
- # [04:16] * Quits: myk (myk@moz-u3dg2t.sfo1.mozilla.com) (Ping timeout: 121 seconds)
- # [04:16] <KWierso|afk> Sorgrum: #jetpack explicitly covers SDK stuff like cfx. You might get better answers in there.
- # [04:16] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [04:17] * Quits: TYLin (TYLin@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [04:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/18f177fc40dc - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [04:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ab87add2560f - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [04:18] * Joins: tedders1 (tedders1@moz-4q6.1ip.140.1.IP)
- # [04:18] <Sorgrum> KWierso|afk: Thank. I'll try!
- # [04:18] * Joins: bwc (Adium@moz-7qa.7fp.250.162.IP)
- # [04:19] <Sorgrum> I think it may just be me, but could someone verify that there are no users in #jetpack?
- # [04:19] * Quits: loveless (loveless@moz-paq.mg6.56.172.IP) (Quit: Leaving...)
- # [04:21] * Quits: jgilbert (jgilbert@moz-oq0gik.ujol.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [04:21] * Joins: bgrins (bgrins@moz-bi032u.qnor.1u98.0009.2601.IP)
- # [04:21] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [04:21] * Quits: bgrins (bgrins@moz-bi032u.qnor.1u98.0009.2601.IP) (Quit: Leaving.)
- # [04:23] * Joins: TYLin (TYLin@moz-aj9ejj.HINET-IP.hinet.net)
- # [04:24] <KWierso|afk> Sorgrum: there are definitely people in there
- # [04:24] <KWierso|afk> /join #jetpack
- # [04:24] <aaronraimist> I see 68 people in #jetpack
- # [04:24] <Sorgrum> Ahh thanks guys. New to my IRC client. I added the channel but didn't connect
- # [04:25] * Joins: jhao_ (chatzilla@moz-2hf62a.HINET-IP.hinet.net)
- # [04:25] * Quits: kapy (kapy@moz-u8r.oc0.68.182.IP) (Connection closed)
- # [04:25] * Quits: xeonchen (xeon@moz-2hf62a.HINET-IP.hinet.net) (Quit: Leaving)
- # [04:27] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [04:28] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Client exited)
- # [04:28] * Quits: Edgar (Thunderbird@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [04:29] * Quits: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net) (Client exited)
- # [04:29] * Joins: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp)
- # [04:31] * Joins: jduell (jduell@moz-qtvn91.tukw.qwest.net)
- # [04:31] * Joins: dzbarsky (Adium@moz-mjn3o8.fir1.n1ms.000b.2601.IP)
- # [04:31] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [04:32] * Joins: xeonchen (xeon@moz-aj9ejj.HINET-IP.hinet.net)
- # [04:33] * Quits: nonsensickle (nonsensickl@moz-4v0.gkd.16.182.IP) (Quit: Leaving)
- # [04:34] * Joins: Edgar (Thunderbird@moz-aj9ejj.HINET-IP.hinet.net)
- # [04:35] * Quits: bwc (Adium@moz-7qa.7fp.250.162.IP) (Quit: Leaving.)
- # [04:35] * Quits: tedders1 (tedders1@moz-4q6.1ip.140.1.IP) (Quit: )
- # [04:35] * Quits: bholley (bholley@moz-jaejpj.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [04:35] * Joins: bholley (bholley@moz-jaejpj.ca.comcast.net)
- # [04:35] * Joins: tedders1 (tedders1@moz-4q6.1ip.140.1.IP)
- # [04:35] * Quits: bholley (bholley@moz-jaejpj.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [04:37] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [04:39] * Quits: rmcdougall (Adium@moz-f2h.mvj.38.216.IP) (Quit: Leaving.)
- # [04:39] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
- # [04:39] * killer sets mode: +ao dbaron dbaron
- # [04:39] * Quits: jet (uid49872@moz-oqb09r.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
- # [04:45] * Quits: jduell (jduell@moz-qtvn91.tukw.qwest.net) (A TLS packet with unexpected length was received.)
- # [04:47] * Joins: huseby (huseby@moz-m7l0au.d2vr.5em6.6400.2605.IP)
- # [04:50] * Quits: ehugg (ehugg@moz-63sj5i.wa.comcast.net) (Client exited)
- # [04:51] * Quits: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net) (Quit: Leaving.)
- # [04:54] * mcote is now known as mcote|afk
- # [04:54] * Joins: jgilbert (jgilbert@moz-hccdhe.rhqa.gnuk.0009.2601.IP)
- # [04:55] * Joins: surkov (surkov@moz-v8g78c.cpe.teksavvy.com)
- # [04:56] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Client exited)
- # [05:00] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Quit: )
- # [05:00] * nthomas is now known as nthomas|away
- # [05:01] * Joins: jduell (jduell@moz-qtvn91.tukw.qwest.net)
- # [05:01] * Quits: kgrandon1 (Adium@moz-l8e1ui.ca.comcast.net) (Quit: Leaving.)
- # [05:01] * Quits: jgilbert (jgilbert@moz-hccdhe.rhqa.gnuk.0009.2601.IP) (Ping timeout: 121 seconds)
- # [05:05] <philor> what do all debug tests except xpcshell and jsreftest have in common?
- # [05:05] <shu> does the win64 target in try trigger PGO builds?
- # [05:06] <philor> not unless you tell it to manually
- # [05:06] * Joins: sewardj_ (sewardj@moz-rbsppe.dip0.t-ipconnect.de)
- # [05:06] <philor> https://wiki.mozilla.org/ReleaseEngineering/TryChooser#What_if_I_want_PGO_for_my_build
- # [05:06] <shu> philor: how? by changing the config?
- # [05:06] <shu> philor: ah right, ok
- # [05:07] * Joins: ericjung___ (ericjung@moz-409r61.7ch4.iin2.0006.2601.IP)
- # [05:07] * BenWa|email is now known as BenWa
- # [05:07] <shu> philor: ty
- # [05:08] * Joins: ckitching (ckitching@moz-cbggqe.cable.virginm.net)
- # [05:09] * Joins: fabrice (fabrice@moz-3oj.il6.198.71.IP)
- # [05:09] * Quits: jhao_ (chatzilla@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [05:09] * KaiRo_away is now known as KaiRo
- # [05:10] * Quits: sewardj (sewardj@moz-db8fci.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
- # [05:12] * Joins: jet (uid49872@moz-oqb09r.uxbridge.irccloud.com)
- # [05:13] * Quits: catalinb2 (catalin@moz-gul.5fl.126.86.IP) (Ping timeout: 121 seconds)
- # [05:14] * Quits: Jerry_Mac (hshih@moz-aj9ejj.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [05:14] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [05:14] * Joins: catalinb2 (catalin@moz-gul.5fl.126.86.IP)
- # [05:15] * Quits: jrgill (jrgill@moz-ng2hkq.res.rr.com) (Connection closed)
- # [05:16] * seth wanted to push, but...
- # [05:16] <seth> such bustage
- # [05:16] * Joins: jrgill (jrgill@moz-ng2hkq.res.rr.com)
- # [05:18] * Joins: bwc (Adium@moz-7qa.7fp.250.162.IP)
- # [05:18] <edwin> ah
- # [05:18] <edwin> crap
- # [05:21] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
- # [05:22] <philor> yeah, bummer when someone breaks the tree you wanted to break, isn't it?
- # [05:22] * Joins: tonymec_KDE (tonymec@moz-80o.7f0.129.109.IP)
- # [05:22] <philor> looks like Try is open, though!
- # [05:23] <philor> seth: did you want to push something that will make me happy?
- # [05:26] * Quits: ckitching (ckitching@moz-cbggqe.cable.virginm.net) (A TLS packet with unexpected length was received.)
- # [05:27] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [05:28] * Joins: dzbarsky1 (Adium@moz-0bj88u.fir1.n1ms.000b.2601.IP)
- # [05:28] * Quits: dzbarsky (Adium@moz-mjn3o8.fir1.n1ms.000b.2601.IP) (Connection closed)
- # [05:32] * Joins: emtwo (Adium@moz-0deb2r.dsl.teksavvy.com)
- # [05:33] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [05:34] * Joins: KaIRC (robert@moz-dcvakj.highway.telekom.at)
- # [05:34] * Joins: matt-r (mattr@moz-a4f.7e4.194.74.IP)
- # [05:35] * Joins: mixedpuppy_ (mixedpuppy@moz-sfb46v.sub-70-211-79.myvzw.com)
- # [05:35] * Quits: mixedpuppy (mixedpuppy@moz-l5h.i2q.170.166.IP) (Ping timeout: 121 seconds)
- # [05:35] * mixedpuppy_ is now known as mixedpuppy
- # [05:35] * Quits: KaiRo (robert@moz-ld0dvm.highway.telekom.at) (Ping timeout: 121 seconds)
- # [05:37] * Quits: jduell (jduell@moz-qtvn91.tukw.qwest.net) (Ping timeout: 121 seconds)
- # [05:37] <philor> yeah, guess that was too much to hope for
- # [05:38] * Joins: timdream (timdream@moz-commod.dynamic.hinet.net)
- # [05:38] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [05:39] * Quits: emtwo (Adium@moz-0deb2r.dsl.teksavvy.com) (Quit: Leaving.)
- # [05:39] * Joins: kilikkuo (Mibbit@moz-2hf62a.HINET-IP.hinet.net)
- # [05:39] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [05:40] * Quits: KaIRC (robert@moz-dcvakj.highway.telekom.at) (A TLS packet with unexpected length was received.)
- # [05:43] * Joins: janv (varga@moz-iain0i.sa.cz)
- # [05:43] * Joins: Jerry_Mac (hshih@moz-aj9ejj.HINET-IP.hinet.net)
- # [05:45] * Joins: DGMurdockIII (dgmurdockii@moz-gehpof.in.comcast.net)
- # [05:45] * Quits: DGMurdockIII (dgmurdockii@moz-gehpof.in.comcast.net) (Connection closed)
- # [05:46] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [05:46] * Joins: janv_ (varga@moz-p5fa2c.as5628.telecom.sk)
- # [05:46] * Quits: mixedpuppy (mixedpuppy@moz-sfb46v.sub-70-211-79.myvzw.com) (Ping timeout: 121 seconds)
- # [05:47] * Quits: janv (varga@moz-iain0i.sa.cz) (Ping timeout: 121 seconds)
- # [05:50] * Quits: timdream (timdream@moz-commod.dynamic.hinet.net) (Client exited)
- # [05:52] * Joins: mixedpuppy (mixedpuppy@moz-l5h.i2q.170.166.IP)
- # [05:53] * Quits: wesley_huang (wesley_huan@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [05:53] <cpeterson> philor: what makes you happy?
- # [05:55] * Quits: Sorgrum (Sorgrum@moz-mqng7g.fl.atlanticbb.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [05:55] <&dbaron> seth, btw, I've been hitting that fatal assertion a few times a day
- # [05:55] <philor> cpeterson: less orange
- # [05:56] * Quits: chunmin (uid49800@moz-6iuh5d.ealing.irccloud.com) (Quit: Connection closed for inactivity)
- # [05:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/2b207b997e4c - Chris Peterson - Bug 1125592 - Fix -Wmaybe-uninitialized warning in security/manager/ssl/src/nsNSSASN1Object.cpp. r=dkeeler
- # [05:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8eec3d8ec60a - Chris Peterson - Bug 1125690 - Fix -Wtautological-compare warning in toolkit/mozapps/update/updater and mark as FAIL_ON_WARNINGS. r=rstrong
- # [05:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/23943d3f9c0e - Chris Peterson - Bug 1125693 - Fix -Wformat warning in xpcom/base/nsStackWalk.cpp and mark as FAIL_ON_WARNINGS. r=njn
- # [05:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a9edb65373b8 - Chris Peterson - Bug 1125665 - Fix -Wunused-private-field warning in PLDHashTable and mark xpcom/glue as FAIL_ON_WARNINGS. r=froydnj
- # [05:57] * darkowlzz|afk is now known as darkowlzz
- # [06:01] * Quits: KWierso|afk (chatzilla@moz-uic.d5m.180.73.IP) (Connection closed)
- # [06:02] * Joins: KWierso|afk (chatzilla@moz-uic.d5m.180.73.IP)
- # [06:03] * Quits: mconley (mconley@moz-os98q9.cable.teksavvy.com) (Connection closed)
- # [06:03] * Joins: rbarnes (rbarnes@moz-m663f4.cust.bluewin.ch)
- # [06:03] * Joins: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com)
- # [06:04] * Quits: twi (Adium@moz-q4tvni.optusnet.com.au) (Quit: Leaving.)
- # [06:04] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [06:05] <glob> anyone else having problems committing to git.mozilla.org ?
- # [06:06] * Quits: ericjung___ (ericjung@moz-409r61.7ch4.iin2.0006.2601.IP) (A TLS packet with unexpected length was received.)
- # [06:06] * Quits: garvank (Garvan@moz-p18v30.dsl.teksavvy.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [06:07] * Joins: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca)
- # [06:07] * Quits: Sushant94 (Sushant@moz-ns0.jul.202.116.IP) (Quit: Leaving)
- # [06:07] * Quits: rbarnes (rbarnes@moz-m663f4.cust.bluewin.ch) (Ping timeout: 121 seconds)
- # [06:07] * Quits: KWierso|afk (chatzilla@moz-uic.d5m.180.73.IP) (Connection closed)
- # [06:08] * Joins: KWierso|afk (chatzilla@moz-uic.d5m.180.73.IP)
- # [06:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a38c9be1a4be - Cameron McCormack - Bug 1126140 - Remove duplicated selector lists in StyleRule::List output. r=dbaron
- # [06:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/daaf6d3b3db9 - Cameron McCormack - Bug 1126145 - Include style sheet URL and line number in StyleRule::List output. r=dbaron
- # [06:10] * Quits: KWierso|afk (chatzilla@moz-uic.d5m.180.73.IP) (Connection closed)
- # [06:11] * Joins: KWierso|afk (chatzilla@moz-uic.d5m.180.73.IP)
- # [06:11] * Quits: gozala (uid5923@moz-ftm4af.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [06:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b7b87042f254 - Jean-Yves Avenard - Bug 1102642: Use ref counted compressed data within mediasource. r=mattwoodrow
- # [06:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0e9b37fd47c6 - Jean-Yves Avenard - Bug 1125581: Cache buffered TimeRanges and only recalculate as necessary. r=mattwoodrow
- # [06:14] * Quits: catalinb2 (catalin@moz-gul.5fl.126.86.IP) (Ping timeout: 121 seconds)
- # [06:15] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [06:17] * jlund|bbl is now known as jlund|afk
- # [06:17] * Joins: Sushant94 (Sushant@moz-ns0.jul.202.116.IP)
- # [06:18] * Joins: KWierso|afk_ (chatzilla@moz-uic.d5m.180.73.IP)
- # [06:19] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [06:21] * Joins: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl)
- # [06:21] * Quits: KWierso|afk (chatzilla@moz-uic.d5m.180.73.IP) (Ping timeout: 121 seconds)
- # [06:21] * KWierso|afk_ is now known as KWierso|afk
- # [06:24] * Joins: catalinb2 (catalin@moz-gul.5fl.126.86.IP)
- # [06:24] * Quits: Sushant94 (Sushant@moz-ns0.jul.202.116.IP) (Connection closed)
- # [06:24] * shorlander is now known as shorlander-away
- # [06:25] * Quits: RyanVM (Thunderbird@moz-hu3p96.fios.verizon.net) (Client exited)
- # [06:26] * Joins: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net)
- # [06:27] * Joins: bholley (bholley@moz-jaejpj.ca.comcast.net)
- # [06:28] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [06:28] * Quits: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca) (Quit: Leaving.)
- # [06:31] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
- # [06:31] * Joins: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca)
- # [06:31] * Quits: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca) (Connection closed)
- # [06:32] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [06:33] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [06:34] * Joins: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net)
- # [06:34] * Quits: dzbarsky1 (Adium@moz-0bj88u.fir1.n1ms.000b.2601.IP) (Quit: Leaving.)
- # [06:35] * Quits: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net) (Client exited)
- # [06:36] * Quits: tedders1 (tedders1@moz-4q6.1ip.140.1.IP) (Quit: )
- # [06:38] * Joins: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net)
- # [06:39] * Quits: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net) (Client exited)
- # [06:39] * Joins: tedders1 (tedders1@moz-4q6.1ip.140.1.IP)
- # [06:40] * darkowlzz is now known as darkowlzz|afk
- # [06:40] * Quits: funnel (hegel@moz-hmd.ddu.4.81.IP) (Connection closed)
- # [06:42] <edwin> jya: tsk tsk...
- # [06:42] * Quits: Mossop (dtownsend@moz-1gfh2v.fios.verizon.net) (Quit: Leaving)
- # [06:43] <jya> edwin: what have I done now?
- # [06:43] <edwin> jya: i think gcc would like a word with you and your implicit constructor...
- # [06:43] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
- # [06:43] <jya> ah shit…
- # [06:45] <jya> thanks for the heads up
- # [06:46] * Quits: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net) (Quit: Leaving.)
- # [06:47] * Joins: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net)
- # [06:48] * Joins: Sushant94 (Sushant@moz-772.i3l.202.116.IP)
- # [06:49] * mattwoodrow is now known as mattwoodrow|away
- # [06:51] * Joins: timdream (timdream@moz-2hf62a.HINET-IP.hinet.net)
- # [06:52] <jya> “But you included the magic words. Hope you had permission!” oh well… not sure if I did…
- # [06:52] * Quits: bwc (Adium@moz-7qa.7fp.250.162.IP) (Quit: Leaving.)
- # [06:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d72836297b6b - Jean-Yves Avenard - Bug 1102642: Fix constructor definition on a CLOSED TREE
- # [06:53] * Joins: wesley_huang (wesley_huan@moz-aj9ejj.HINET-IP.hinet.net)
- # [06:54] * Quits: kilikkuo (Mibbit@moz-2hf62a.HINET-IP.hinet.net) (Quit: http://www.mibbit.com ajax IRC Client)
- # [06:54] * Quits: bholley (bholley@moz-jaejpj.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [06:54] * Joins: kilikkuo (Mibbit@moz-2hf62a.HINET-IP.hinet.net)
- # [06:54] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (A TLS packet with unexpected length was received.)
- # [06:56] * Joins: ehugg (ehugg@moz-63sj5i.wa.comcast.net)
- # [06:56] * darkowlzz|afk is now known as darkowlzz
- # [06:59] * Joins: tedders1_ (tedders1@moz-soe.0ph.133.1.IP)
- # [07:01] * Quits: @roc (chatzilla@moz-ktvdnu.5h0u.b0fh.0cb0.2001.IP) (Connection closed)
- # [07:02] * Quits: tedders1 (tedders1@moz-4q6.1ip.140.1.IP) (Ping timeout: 121 seconds)
- # [07:05] * Quits: schien (anonymous@moz-2hf62a.HINET-IP.hinet.net) (Quit: sleep)
- # [07:06] * Joins: jhao_ (chatzilla@moz-aj9ejj.HINET-IP.hinet.net)
- # [07:08] * Joins: schien (anonymous@moz-2hf62a.HINET-IP.hinet.net)
- # [07:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5b3911fe7821 - Ehsan Akhgari - Bug 1125138 - Move TestTimeStamp.cpp to gtest and enable it; r=froydnj
- # [07:14] * heycam is now known as heycam|away
- # [07:15] * Joins: dveditz (dveditz@moz-u3dg2t.sfo1.mozilla.com)
- # [07:15] * killer sets mode: +o dveditz
- # [07:16] * Joins: kgrandon (Adium@moz-l8e1ui.ca.comcast.net)
- # [07:17] * Joins: bwc (Adium@moz-7qa.7fp.250.162.IP)
- # [07:17] * Quits: alexosaurus (Adium@moz-0fs.jtu.223.111.IP) (Quit: Leaving.)
- # [07:18] * Joins: bholley (bholley@moz-jaejpj.ca.comcast.net)
- # [07:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/a66d14f91780 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
- # [07:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/976e22c4bfb3 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [07:19] * Joins: rbarnes (rbarnes@moz-tpuuk7.cust.bluewin.ch)
- # [07:19] * Quits: jet (uid49872@moz-oqb09r.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
- # [07:20] * Quits: ehugg (ehugg@moz-63sj5i.wa.comcast.net) (Client exited)
- # [07:20] * Quits: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl) (Quit: This computer has gone to sleep)
- # [07:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9c28c90d3408 - Ben Turner - Bug 1126129 - Only enable SQLite tracing when the right environment variable is set, r=asuth.
- # [07:22] * Joins: DGMurdockIII (dgmurdockii@moz-gehpof.in.comcast.net)
- # [07:22] * Quits: DGMurdockIII (dgmurdockii@moz-gehpof.in.comcast.net) (Connection closed)
- # [07:23] * Quits: rbarnes (rbarnes@moz-tpuuk7.cust.bluewin.ch) (Ping timeout: 121 seconds)
- # [07:24] * flod|away is now known as flod
- # [07:26] * lth|away is now known as lth
- # [07:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4a027633ff64 - Ben Turner - Bug 1125969 - Fix reversed assertion when reading database metadata, r=janv.
- # [07:28] * Joins: flaviu (Instantbird@moz-662.esi.231.62.IP)
- # [07:30] * Quits: zerous (naveen@moz-b1e.nnf.69.77.IP) (Ping timeout: 121 seconds)
- # [07:30] * philor is now known as philor|away
- # [07:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/304e3ccaf533 - Sotaro Ikeda - Bug 1123452 - Make Mp4Reader enter dormant state when it is idle and its document is hidden. r=cpearce
- # [07:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fde8a287433b - Chris Pearce - Bug 1125472 - Don't flush decode task queue in MediaDecoderStateMachine::FlushDecoding(). r=bholley
- # [07:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b6bec74def09 - Chris Pearce - Bug 1123535 - Run MediaDecoderReader::ReleaseMediaResources on decode task queue. r=jwwang
- # [07:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cdcfd5fda7b4 - Chris Pearce - Bug 1123535 - Make MP4Reader and WMFMediaDataDecoder support going dormant. r=kentuckyfriedtakahe
- # [07:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7348cb10d7b0 - Chris Pearce - Bug 1123535 - Enable dormant heuristic for MP4Reader. r=kentuckyfriedtakahe
- # [07:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f6da914b2a93 - Chris Pearce - Bug 1123535 - Don't hold decoder monitor while calling PreReadMetadata. r=kentuckyfriedtakahe
- # [07:31] * Quits: catalinb2 (catalin@moz-gul.5fl.126.86.IP) (Quit: Leaving)
- # [07:35] * Quits: kentuckyfriedtakahe (ajones@moz-e1ihpt.5h0u.b0fh.0cb0.2001.IP) (A TLS packet with unexpected length was received.)
- # [07:35] * Joins: adalucinet (Instantbird@moz-662.esi.231.62.IP)
- # [07:37] * Joins: Alessar (Alessar@moz-mfn.qfs.104.79.IP)
- # [07:38] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [07:39] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [07:42] * Joins: seanlee (seanlee@moz-2hf62a.HINET-IP.hinet.net)
- # [07:42] * glob is now known as glob|away
- # [07:42] * Joins: tantek (tantek@moz-j5mckf.dynamic.fusionbroadband.com)
- # [07:42] <seth> dbaron: sorry you keep hitting it! i'll try to get it fixed asap
- # [07:44] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [07:44] * Joins: twi (Adium@moz-q4tvni.optusnet.com.au)
- # [07:44] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [07:44] * Quits: timdream (timdream@moz-2hf62a.HINET-IP.hinet.net) (Client exited)
- # [07:45] * Joins: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net)
- # [07:45] * Quits: bholley (bholley@moz-jaejpj.ca.comcast.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [07:47] * Quits: tantek (tantek@moz-j5mckf.dynamic.fusionbroadband.com) (Client exited)
- # [07:48] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Ping timeout: 121 seconds)
- # [07:50] * Joins: avaida (andreivaida@moz-662.esi.231.62.IP)
- # [07:50] * Joins: funnel (hegel@moz-hmd.ddu.4.81.IP)
- # [07:52] * Joins: zerous (naveen@moz-tce.k31.255.84.IP)
- # [07:53] * glob|away is now known as glob
- # [07:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/00f4c6c6f553 - Seth Fowler - Bug 1126038 - Finish decoding off-main-thread. r=tn
- # [07:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bbd77af91d82 - Seth Fowler - Bug 1125490 (Part 1) - Make sure we request discarding for images in PresShell::Destroy. r=tn
- # [07:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b44e10f83623 - Seth Fowler - Bug 1125490 (Part 2) - Use an enumeration instead of a boolean to request discarding in nsIImageLoadingContent. r=tn
- # [07:55] * Joins: CristinaM (Instantbird@moz-662.esi.231.62.IP)
- # [07:55] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [07:56] <seth> philor: bug 1126146 just might make you happy, but it's waiting on review
- # [07:56] * Quits: funnel (hegel@moz-hmd.ddu.4.81.IP) (Ping timeout: 121 seconds)
- # [07:56] <seth> philor|away: i'm hoping it will reduce image-related intermittent oranges significantly
- # [07:59] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (Ping timeout: 121 seconds)
- # [08:01] * Joins: smontagu (chatzilla@moz-ap9qjm.red.bezeqint.net)
- # [08:03] * Joins: funnel (hegel@moz-hmd.ddu.4.81.IP)
- # [08:04] * julienw_afk is now known as julienw
- # [08:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8f1b6d785322 - Lars T Hansen - Bug 1125841 - remove PerThreadData variants of activation iterator constructors. r=jandem
- # [08:04] * Quits: kgrandon (Adium@moz-l8e1ui.ca.comcast.net) (Quit: Leaving.)
- # [08:06] * Joins: karlt (karl@moz-gnsko2.telstraclear.net)
- # [08:06] * Tomcat|afk is now known as Tomcat|sheriffduty
- # [08:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/03194db8d4f5 - Brian Birtles - Bug 1115276 - Make tests that set toolbar visibility wait for any animations to finish before continuing; r=mak
- # [08:08] * Quits: bwc (Adium@moz-7qa.7fp.250.162.IP) (Quit: Leaving.)
- # [08:09] * Quits: flo-retina (Instantbird@moz-c2qce8.rev.numericable.fr) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [08:09] <Tomcat|sheriffduty> jya: ping
- # [08:10] <Tomcat|sheriffduty> jya: the web platform 4 test failures are yours right ?
- # [08:10] <shu> how long do windows PGO builds take to finish usually?
- # [08:10] <Tomcat|sheriffduty> shu: up to 4 hours
- # [08:11] <shu> Tomcat|sheriffduty: ah ha, okay. this one's been going for 3 hours so far
- # [08:11] <shu> guess i'll just check back tomorrow
- # [08:11] <Tomcat|sheriffduty> yeah pgo builds are slow...
- # [08:12] <shu> Tomcat|sheriffduty: ty for info
- # [08:12] <Tomcat|sheriffduty> np, anytime
- # [08:13] * Quits: wesley_huang (wesley_huan@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [08:14] * Joins: edenchuang (uid46829@moz-38m6rq.brockwell.irccloud.com)
- # [08:14] * Joins: alexosaurus (alex@moz-0fs.jtu.223.111.IP)
- # [08:14] * Joins: wesley_huang (wesley_huan@moz-2hf62a.HINET-IP.hinet.net)
- # [08:15] * Quits: wesley_huang (wesley_huan@moz-2hf62a.HINET-IP.hinet.net) (Client exited)
- # [08:18] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Client exited)
- # [08:19] * Joins: rbarnes (rbarnes@moz-tpuuk7.cust.bluewin.ch)
- # [08:19] * jcranmer is now known as jcranmer|away
- # [08:21] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Client exited)
- # [08:21] * Quits: rbarnes (rbarnes@moz-tpuuk7.cust.bluewin.ch) (A TLS packet with unexpected length was received.)
- # [08:21] * Joins: nrc|afk (nrc|afk@moz-qetuu1.xtra.co.nz)
- # [08:21] * Quits: mixedpuppy (mixedpuppy@moz-l5h.i2q.170.166.IP) (Client exited)
- # [08:22] * Quits: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net) (Client exited)
- # [08:22] * nrc|afk is now known as nrc
- # [08:22] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [08:23] * Joins: wolfiR (wolfiR@moz-c7avhu.open-xchange.com)
- # [08:24] * Quits: jkitch (Thunderbird@moz-2tg5jk.k4n0.vhij.44b8.2001.IP) (Client exited)
- # [08:24] * Joins: Shrooms (Shrooms@moz-7lpn9p.ip.windstream.net)
- # [08:25] * Joins: wesley_huang (wesley_huan@moz-aj9ejj.HINET-IP.hinet.net)
- # [08:26] * Joins: jkitch (Thunderbird@moz-4225kg.k4n0.vhij.44b8.2001.IP)
- # [08:26] <jya> Tomcat|sheriffduty: I have a patch to backout the W4 error
- # [08:27] <Tomcat|sheriffduty> jya: oh cool, i closed inbound for this
- # [08:27] <jya> it passes on my try tests. but I will further check. not normal that this patch changes any behaviour
- # [08:27] <jya> it only makes things faster, so it could reveal a race conditions somewhere
- # [08:27] <jya> I will go over this
- # [08:27] <jya> can I push it ?
- # [08:27] <Tomcat|sheriffduty> jya: there seems also also a different problem
- # [08:27] * Quits: Shrooms (Shrooms@moz-7lpn9p.ip.windstream.net) (Quit: Quitting for Bacon.)
- # [08:28] <Tomcat|sheriffduty> like https://treeherder.mozilla.org/logviewer.html#?job_id=5950563&repo=mozilla-inbound this is failing too
- # [08:28] <Tomcat|sheriffduty> jya: yep :)
- # [08:28] <Tomcat|sheriffduty> jya: feel free to push
- # [08:28] * Joins: Shrooms (Shrooms@moz-7lpn9p.ip.windstream.net)
- # [08:29] * Joins: anindya (Mibbit@moz-er6.5ts.248.115.IP)
- # [08:29] * Quits: nrc (nrc|afk@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [08:29] <jya> ok done
- # [08:29] <Tomcat|sheriffduty> jya: does this fix the other problem too ?
- # [08:29] <jya> I’m hoping so
- # [08:30] <jya> the other one I haven’t seen it before
- # [08:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/982c4dbb6927 - Jean-Yves Avenard - Backed out changeset 0e9b37fd47c6. Breaks w4 test on a CLOSED TREE r=me
- # [08:30] <Tomcat|sheriffduty> hm seems there is now a 3rd one
- # [08:30] <Tomcat|sheriffduty> https://treeherder.mozilla.org/logviewer.html#?job_id=5949764&repo=mozilla-inbound
- # [08:31] <Tomcat|sheriffduty> thx jya
- # [08:31] * Quits: janv_ (varga@moz-p5fa2c.as5628.telecom.sk) (Connection closed)
- # [08:31] <jya> otherwise just revert d72836297b6b and b7b87042f254
- # [08:31] <Tomcat|sheriffduty> yeah will do
- # [08:31] <jya> I’ll check when I get back in about 4 hours and can take it from there
- # [08:32] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Quit: )
- # [08:32] <jya> https://treeherder.mozilla.org/#/jobs?repo=try&revision=748c4aaa4bbd that was the try with b7b87042f254
- # [08:32] * Joins: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it)
- # [08:32] <Tomcat|sheriffduty> strange the try runs were soo green
- # [08:32] <jya> I had overloked the explicit stuff error
- # [08:32] <Tomcat|sheriffduty> jya: yeah
- # [08:32] <jya> and I’ve had about 3 of those, all green
- # [08:33] <jya> that one fix an OOM that is happening a lot , so really need to get this one landed.
- # [08:33] <jya> so hopefully, it’s all good from there
- # [08:33] <Tomcat|sheriffduty> :)
- # [08:33] <Tomcat|sheriffduty> ok m-i is reopen and will check later the m3 results then
- # [08:33] <jya> talk to you later
- # [08:34] <Tomcat|sheriffduty> good night :)
- # [08:38] * Quits: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp) (Client exited)
- # [08:41] * Quits: surkov (surkov@moz-v8g78c.cpe.teksavvy.com) (Client exited)
- # [08:43] * whimboo|afk is now known as whimboo
- # [08:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ed56982ca86d - Cykesiopka - Bug 691148 - Remove unused strings from pipnss.properties. r=keeler
- # [08:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c95152b42fde - Benjamin Chen - Bug 1120247 - 1 MediaCodecReader::ResetDecode() needs to reject(cancel) any pending promises. 2. fix regression caused by bug 1114910. r=cpearce
- # [08:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6f507c077b24 - Garvan Keeley - Bug 1121265 - Fallback to MLS Provider. r=dougt
- # [08:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cc42921d3f36 - Garvan Keeley - Bug 1121497 - Need to stop location manager before start, r=dougt
- # [08:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/32fe616d4950 - Garvan Keeley - Bug 1125411 - OSX: turn CoreLocation provider on, r=cpeterson
- # [08:46] * Joins: Shrooms` (Shrooms@moz-7lpn9p.ip.windstream.net)
- # [08:48] * Quits: Shrooms (Shrooms@moz-7lpn9p.ip.windstream.net) (Ping timeout: 121 seconds)
- # [08:48] * Joins: jhorak (jhorak@moz-6a960j.net.upcbroadband.cz)
- # [08:49] * Quits: karlt (karl@moz-gnsko2.telstraclear.net) (Ping timeout: 121 seconds)
- # [08:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9e060a6c859e - Nicholas Nethercote - Bug 1124920 - Remove PLDHashTable::Operate(). r=froydnj.
- # [08:51] * Joins: kaze (kaze@moz-8ion1q.fbx.proxad.net)
- # [08:51] * Quits: @njn (chatzilla@moz-qs2sae.iinet.net.au) (Quit: ChatZilla 0.9.91.1 [Firefox 37.0a1/20150101202038])
- # [08:52] * Quits: happy-dude_ (uid62780@moz-8as1vu.ealing.irccloud.com) (Quit: Connection closed for inactivity)
- # [08:52] * Quits: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it) (Ping timeout: 121 seconds)
- # [08:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/fcd8ddf5cd31 - Eddy Bruël - Bug 1123686 - setBreakpoint should return a promise;r=jlongster
- # [08:54] * Quits: anindya (Mibbit@moz-er6.5ts.248.115.IP) (Quit: http://www.mibbit.com ajax IRC Client)
- # [08:56] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [08:58] * Joins: Dexter (Dexter@moz-4vk3gj.retail.telecomitalia.it)
- # [08:59] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [09:00] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (Ping timeout: 121 seconds)
- # [09:01] * Joins: stormi (samuel@moz-t5b.q89.218.46.IP)
- # [09:01] * Joins: MarcoZ (marco.zehe@moz-74kv4p.dip0.t-ipconnect.de)
- # [09:03] * Joins: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp)
- # [09:03] * Joins: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net)
- # [09:07] * Callek is now known as Callek_disconnected
- # [09:07] * Quits: twi (Adium@moz-q4tvni.optusnet.com.au) (Quit: Leaving.)
- # [09:07] * Fallen|away is now known as Fallen
- # [09:09] * Joins: rbarnes (rbarnes@moz-qadjde.ethz.ch)
- # [09:09] * Joins: jgilbert (jgilbert@moz-oi65pr.ca.comcast.net)
- # [09:10] <Tomcat|sheriffduty> cpearce: ping
- # [09:10] * Joins: gcp (gcp@moz-beufoe.beqe.9i1r.1812.2a02.IP)
- # [09:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/a910bc402adc - Cykesiopka - Bug 1089588 - Fix wrong telemetry descriptions regarding SSL_KEA_ECDHE_CURVE_FULL and SSL_AUTH_ECDSA_CURVE_FULL. r=keeler
- # [09:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/25d0517185f6 - James Dearing - Bug 1124006 - Removed a couple of comments (fixes bug 1124006). r=mcomella
- # [09:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/31c45bffae2a - Jalpreet Singh Nanda - Bug 1106900 - Move mSolo and other Robocop components into BaseRobocopTest. r=mcomella
- # [09:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/750f76c08fec - Alexandre Poirot - Bug 1123784 - Fix fullscreen toolbox performances in WebIDE. r=jryans
- # [09:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/34d0394ad69d - Brian Grinstead - Bug 1122726 - Convert tabCurveWidth and tabCurveHalfWidth into CSS variables. r=MattN
- # [09:11] * bobowen|afk is now known as bobowen
- # [09:12] * Joins: ttaubert (uid2620@moz-6d2u0s.uxbridge.irccloud.com)
- # [09:13] * Quits: merike|away (merike@moz-6d1sg0.cable.starman.ee) (Ping timeout: 121 seconds)
- # [09:13] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Client exited)
- # [09:13] * Joins: Standard8 (Standard8@moz-1hu.vrc.166.195.IP)
- # [09:14] * Quits: rbarnes (rbarnes@moz-qadjde.ethz.ch) (A TLS packet with unexpected length was received.)
- # [09:14] * pbrosset|afk is now known as pbrosset
- # [09:14] * Callek_disconnected is now known as Callek
- # [09:15] * Joins: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl)
- # [09:15] * Joins: rbarnes (rbarnes@moz-qadjde.ethz.ch)
- # [09:16] * Joins: jduell (jduell@moz-qtvn91.tukw.qwest.net)
- # [09:17] * Quits: rbarnes (rbarnes@moz-qadjde.ethz.ch) (A TLS packet with unexpected length was received.)
- # [09:17] * Fallen is now known as Fallen|away
- # [09:17] * mattwoodrow|away is now known as mattwoodrow
- # [09:17] * Quits: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl) (Quit: Leaving)
- # [09:18] * Joins: rbarnes (rbarnes@moz-qadjde.ethz.ch)
- # [09:19] * Quits: rbarnes (rbarnes@moz-qadjde.ethz.ch) (Connection closed)
- # [09:20] * Joins: rbarnes (rbarnes@moz-qadjde.ethz.ch)
- # [09:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/740907c7d4ca - Carsten "Tomcat" Book - Backed out changeset 32fe616d4950 (bug 1125411)
- # [09:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/80b882dbd0cc - Carsten "Tomcat" Book - Backed out changeset cc42921d3f36 (bug 1121497)
- # [09:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e28ef6984108 - Carsten "Tomcat" Book - Backed out changeset 6f507c077b24 (bug 1121265) for OS X static analysis build Bustage on a CLOSED TREE
- # [09:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/05ce32e574cc - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
- # [09:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/4ac9399323ad - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [09:20] * Joins: twi (Adium@moz-q4tvni.optusnet.com.au)
- # [09:20] * Quits: &dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [09:21] * Quits: zerous (naveen@moz-tce.k31.255.84.IP) (Quit: Changing server)
- # [09:22] * Quits: jduell (jduell@moz-qtvn91.tukw.qwest.net) (A TLS packet with unexpected length was received.)
- # [09:26] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [09:27] * Joins: zerous (naveen@moz-tce.k31.255.84.IP)
- # [09:28] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [09:28] * Joins: h4writer (h4writer@moz-lcj9pu.access.telenet.be)
- # [09:31] * Joins: ddamjano (Instantbird@moz-l2bb60.cfl3.oeer.8388.2a02.IP)
- # [09:31] * Joins: phantom (phantom@moz-ellgc5.priv.bahnhof.se)
- # [09:32] * Quits: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net) (Client exited)
- # [09:32] * Joins: tzimmermann (tzimmermann@moz-6ojegm.pools.vodafone-ip.de)
- # [09:32] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [09:33] * Quits: phantom (phantom@moz-ellgc5.priv.bahnhof.se) (Quit: leaving)
- # [09:34] * Joins: mak (uid24946@moz-7ljuor.highgate.irccloud.com)
- # [09:34] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [09:34] * Joins: capella-s32 (capella-s3@moz-8ut.30o.87.66.IP)
- # [09:34] * Joins: capella-s33 (capella-s3@moz-a6lqme.res.rr.com)
- # [09:35] * Quits: capella-s3 (capella-s3@moz-8h9.8oe.230.72.IP) (Ping timeout: 121 seconds)
- # [09:36] * Quits: jhorak (jhorak@moz-6a960j.net.upcbroadband.cz) (Quit: Leaving)
- # [09:36] * Joins: phantom__ (phantom@moz-ellgc5.priv.bahnhof.se)
- # [09:38] * Quits: capella (chatzilla@moz-a6lqme.res.rr.com) (Ping timeout: 121 seconds)
- # [09:38] * Quits: capella-s32 (capella-s3@moz-8ut.30o.87.66.IP) (Ping timeout: 121 seconds)
- # [09:40] * Joins: Teodor_Druta (Thunderbird@moz-ohb.65e.79.82.IP)
- # [09:40] * Joins: capella (chatzilla@moz-a6lqme.res.rr.com)
- # [09:40] * Joins: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net)
- # [09:41] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [09:41] * Joins: bogdan_maris (Instantbird@moz-662.esi.231.62.IP)
- # [09:42] * Joins: jgilbert_ (jgilbert@moz-oi65pr.ca.comcast.net)
- # [09:42] * Joins: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl)
- # [09:43] * Quits: @dveditz (dveditz@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [09:44] * darkowlzz is now known as darkowlzz|afk
- # [09:44] * Joins: dveditz (dveditz@moz-fl3l48.public.wayport.net)
- # [09:44] * killer sets mode: +o dveditz
- # [09:45] * Quits: jgilbert (jgilbert@moz-oi65pr.ca.comcast.net) (Ping timeout: 121 seconds)
- # [09:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/52661fcbc1d8 - Carsten "Tomcat" Book - Backed out changeset f6da914b2a93 (bug 1123535)
- # [09:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a0494361053f - Carsten "Tomcat" Book - Backed out changeset 7348cb10d7b0 (bug 1123535)
- # [09:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b2b594928bb3 - Carsten "Tomcat" Book - Backed out changeset cdcfd5fda7b4 (bug 1123535)
- # [09:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/086edcd190df - Carsten "Tomcat" Book - Backed out changeset b6bec74def09 (bug 1123535)
- # [09:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d57de73e5581 - Carsten "Tomcat" Book - Backed out changeset fde8a287433b (bug 1125472)
- # [09:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/043a03d002f2 - Carsten "Tomcat" Book - Backed out changeset 304e3ccaf533 (bug 1123452) for windows crashtest bustage on a CLOSED TREE
- # [09:46] * Joins: dveditz_ (dveditz@moz-u3dg2t.sfo1.mozilla.com)
- # [09:46] * killer sets mode: +o dveditz_
- # [09:48] * Quits: @dveditz (dveditz@moz-fl3l48.public.wayport.net) (Ping timeout: 121 seconds)
- # [09:48] * dveditz_ is now known as dveditz
- # [09:49] * Quits: kaze (kaze@moz-8ion1q.fbx.proxad.net) (Quit: WeeChat 1.1)
- # [09:51] * Joins: mwargers (mwargers@moz-tst4f6.adsl.online.nl)
- # [09:52] * Joins: kaze (kaze@moz-8ion1q.fbx.proxad.net)
- # [09:52] * Joins: ferjm (textual@moz-6tov0c.user.ono.com)
- # [09:56] * mattwoodrow is now known as mattwoodrow|away
- # [09:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/833c0a964941 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
- # [09:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ef0d4e362196 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [09:58] * Joins: jviereck (Adium@moz-cfkrsr.dclient.hispeed.ch)
- # [09:58] * Joins: Ms2ger (Ms2ger@moz-c70.8u8.182.91.IP)
- # [09:58] * flod is now known as flod|afk
- # [09:59] * Fallen|away is now known as Fallen
- # [10:00] * Joins: jaoo (user@moz-b8lhan.user.ono.com)
- # [10:01] * Quits: schien (anonymous@moz-2hf62a.HINET-IP.hinet.net) (Quit: sleep)
- # [10:01] * Joins: merike|away (merike@moz-6d1sg0.cable.starman.ee)
- # [10:01] * merike|away is now known as merike
- # [10:01] * mattwoodrow|away is now known as mattwoodrow
- # [10:03] * Joins: curmet (Mibbit@moz-ljr.5et.102.118.IP)
- # [10:03] * BenWa is now known as BenWa|email
- # [10:03] * Quits: curmet (Mibbit@moz-ljr.5et.102.118.IP) (Quit: http://www.mibbit.com ajax IRC Client)
- # [10:07] * Joins: VarCat (VarCat@moz-ohb.65e.79.82.IP)
- # [10:10] * Joins: janv_ (varga@moz-vse.1v0.143.178.IP)
- # [10:11] * Quits: @dveditz (dveditz@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [10:11] * Joins: roc (chatzilla@moz-m97g62.orcon.net.nz)
- # [10:11] * killer sets mode: +o roc
- # [10:11] * Quits: jviereck (Adium@moz-cfkrsr.dclient.hispeed.ch) (Quit: Leaving.)
- # [10:11] * Joins: Archaeopteryx (Archaeopter@moz-eidotg.cust.telecolumbus.net)
- # [10:13] * Quits: janv_ (varga@moz-vse.1v0.143.178.IP) (Quit: This computer has gone to sleep)
- # [10:14] * Quits: ddamjano (Instantbird@moz-l2bb60.cfl3.oeer.8388.2a02.IP) (Ping timeout: 121 seconds)
- # [10:16] <bogdan_maris> Hello, I need to test the new e10s crash page, is there a way I can intentionally crash tabs? :s
- # [10:16] * Joins: tonymec|away (tonymec@moz-80o.7f0.129.109.IP)
- # [10:16] * Joins: jhorak (jhorak@moz-16g.ma8.175.213.IP)
- # [10:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/a3fc9d8197fb - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [10:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/524fa9e02c80 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [10:18] * Joins: jfkthame (jfkthame@moz-2a7.i06.29.2.IP)
- # [10:18] * Quits: jfkthame (jfkthame@moz-2a7.i06.29.2.IP) (Connection closed)
- # [10:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0f3a324e645d - Edwin Flores - Bug 1118597 - Re-enable MoofParser for encrypted MP4 streams - r=jya
- # [10:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/06648aa9a5c4 - Edwin Flores - Bug 1118597 - Parse sinf boxes in MoofParser - r=jya
- # [10:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5000c7e76d9f - Edwin Flores - Bug 1118383 - Plug memory leak in openaes - r=cpearce
- # [10:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0eca2ce01266 - Edwin Flores - Bug 1124491 - Test HTMLMediaElement.isEncrypted attribute - r=cpearce
- # [10:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c14c7a032bf7 - Edwin Flores - Bug 1124491 - Add HTMLMediaElement.isEncrypted attribute - r=cpearce,bz
- # [10:21] * Joins: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it)
- # [10:23] * Joins: ddamjano (Instantbird@moz-l2bb60.cfl3.oeer.8388.2a02.IP)
- # [10:23] * Quits: m_gol (m_gol@moz-eru58u.static.chello.pl) (Quit: Leaving...)
- # [10:24] * Joins: Jackneill (Jackneill@moz-pj9nfa.pool.digikabel.hu)
- # [10:24] * Joins: jviereck (Adium@moz-cfkrsr.dclient.hispeed.ch)
- # [10:25] * Quits: jgilbert_ (jgilbert@moz-oi65pr.ca.comcast.net) (Ping timeout: 121 seconds)
- # [10:25] * Joins: janv (varga@moz-vse.1v0.143.178.IP)
- # [10:26] <Archaeopteryx> bogdan_maris: i will the plugin-container.exe to get that
- # [10:26] <Archaeopteryx> i also have a not yet e10s compatible addon which can cause that
- # [10:27] * Joins: Gijs (chatzilla@moz-8e8.cgs.80.5.IP)
- # [10:27] <bogdan_maris> Archaeopteryx: I found something on the mightly google http://jsbin.com/tololixojo/1/edit
- # [10:28] <bogdan_maris> It`s a loop and increases memory until an infobar appears and I can hit kill from there
- # [10:29] <bogdan_maris> But it`s not 100% accurate
- # [10:31] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Client exited)
- # [10:31] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [10:31] <Kwan> hmmm, is var() supposed to be invalid inside @media ()? I can't tell from skimming the specs.
- # [10:32] * Joins: schien (anonymous@moz-2hf62a.HINET-IP.hinet.net)
- # [10:37] * Quits: janv (varga@moz-vse.1v0.143.178.IP) (Quit: This computer has gone to sleep)
- # [10:37] * darkowlzz|afk is now known as darkowlzz
- # [10:40] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [10:40] * lth is now known as lth|out
- # [10:42] * Quits: jhorak (jhorak@moz-16g.ma8.175.213.IP) (Quit: Leaving)
- # [10:44] * Joins: Rik (rik@moz-6v5.3nd.202.89.IP)
- # [10:45] * ewong is now known as ewong|away
- # [10:45] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [10:45] * Quits: VarCat (VarCat@moz-ohb.65e.79.82.IP) (Connection closed)
- # [10:45] * Quits: Teodor_Druta (Thunderbird@moz-ohb.65e.79.82.IP) (Connection closed)
- # [10:45] * Joins: Teodor_Druta (Thunderbird@moz-spd.8ed.34.89.IP)
- # [10:45] * Joins: VarCat (VarCat@moz-spd.8ed.34.89.IP)
- # [10:45] * Quits: VarCat (VarCat@moz-spd.8ed.34.89.IP) (Connection closed)
- # [10:45] * Quits: Teodor_Druta (Thunderbird@moz-spd.8ed.34.89.IP) (Connection closed)
- # [10:46] * Joins: Teodor_Druta (Thunderbird@moz-ohb.65e.79.82.IP)
- # [10:46] * Joins: VarCat (VarCat@moz-ohb.65e.79.82.IP)
- # [10:46] <Tomcat|sheriffduty> seth: ping
- # [10:46] <seth> Tomcat|sheriffduty: pong
- # [10:47] <Tomcat|sheriffduty> hey seth could you take a look at https://treeherder.mozilla.org/logviewer.html#?job_id=5954187&repo=mozilla-inbound seems this started with your push
- # [10:47] * Quits: francois (francois@moz-cnggv3.fmarier.org) (Quit: ZNC - http://znc.in)
- # [10:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7820fd141998 - Brian Hackett - Bug 1116855 - Add default-disabled unboxed objects for use by interpreted constructors, r=jandem.
- # [10:49] <seth> Tomcat|sheriffduty: looking, just a sec
- # [10:49] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
- # [10:49] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (Ping timeout: 121 seconds)
- # [10:49] * Quits: rbarnes (rbarnes@moz-qadjde.ethz.ch) (A TLS packet with unexpected length was received.)
- # [10:50] * Joins: rbarnes (rbarnes@moz-qadjde.ethz.ch)
- # [10:51] * Quits: rbarnes (rbarnes@moz-qadjde.ethz.ch) (A TLS packet with unexpected length was received.)
- # [10:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0767ae5882f9 - Brian Hackett - Bug 1125770 - Always mark |this| slot as part of an Ion frame, r=jandem.
- # [10:52] * Quits: xeonchen (xeon@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [10:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/99a9da54c236 - Robert Longson - Bug 1125647 - make SVGAnimatedPreserveAspectRatio::ToDOMAnimatedPreserveAspectRatio just return the value. r=dholbert
- # [10:53] <seth> Tomcat|sheriffduty: these failures are only on Android, right?
- # [10:53] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [10:53] <seth> Tomcat|sheriffduty: i don't see them elsewhere...
- # [10:54] <Tomcat|sheriffduty> seth: yeah
- # [10:54] <Tomcat|sheriffduty> android ones
- # [10:54] * Joins: xeonchen (xeon@moz-2hf62a.HINET-IP.hinet.net)
- # [10:55] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [10:56] <seth> Tomcat|sheriffduty: ok, i am going to disable for now and file a followup bug to fix. i have another patch in my patch queue that i'm pretty sure fixes this but it's waiting on review
- # [10:56] <seth> Tomcat|sheriffduty: same deal with layout/reftests/w3c-css/submitted/ui3/box-sizing-replaced-002.xht and -003. should all be the same cause
- # [10:57] * Joins: espadrine (tyl@moz-qfr4fg.abo.wanadoo.fr)
- # [10:57] <Tomcat|sheriffduty> seth: ok cool thanks!
- # [10:59] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (Ping timeout: 121 seconds)
- # [11:02] * Quits: Morris (Morris@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [11:03] * Joins: jonco (Adium@moz-v3p8i8.nemh.1887.0450.2001.IP)
- # [11:03] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Connection closed)
- # [11:05] <seth> Tomcat|sheriffduty: one thing that's interesting, btw: *all* of these tests were already disabled on B2G
- # [11:06] <Gijs> Kwan: do you have commit access or do you n eed me to land 1036434 for you?
- # [11:06] <Tomcat|sheriffduty> seth: hm there is also https://treeherder.mozilla.org/logviewer.html#?job_id=5958767&repo=mozilla-inbound
- # [11:06] * Joins: jacek (jacek@moz-hbt3j4.psi.wroc.pl)
- # [11:06] * Quits: jhao_ (chatzilla@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [11:06] <Tomcat|sheriffduty> is this also from your patch ?
- # [11:06] <seth> Tomcat|sheriffduty: i think i have had an insight here that should let help me fix a whole class of intermittent oranges on Android and B2G
- # [11:06] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [11:06] <seth> Tomcat|sheriffduty: let me look
- # [11:07] <Kwan> Gijs: I do not, I was about to stick checkin-needed on there, but if you can do it that'd be great, thanks
- # [11:10] <Kwan> also, is it me, or is there no way to edit @media queries via JS, ie dynamically change from (max-height: 319px) to (max-height: 359px)
- # [11:10] <seth> Tomcat|sheriffduty: hmm. those *do* look like the same thing, but what make me nervous is that even if i disable some of these tests, more could pop up. i think i may just need to wait for bug 1126146 to land before i can land these other patches
- # [11:10] <Gijs> Kwan: err, never tried, to be honest... do they not show up in the stylesheet CSSOM stuff?
- # [11:10] <seth> Tomcat|sheriffduty: hmm
- # [11:11] * Quits: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net) (Quit: OSError: [Errno 130] Owner died)
- # [11:11] <seth> Tomcat|sheriffduty: i think we should back out bbd77af91d82 and b44e10f83623
- # [11:11] <Tomcat|sheriffduty> seth: yeah the thing that all this failures are perma failures, so we need to fix or backout this failures
- # [11:11] <Tomcat|sheriffduty> seth: yeah
- # [11:11] * Joins: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net)
- # [11:11] <Tomcat|sheriffduty> will do
- # [11:11] <Kwan> Gijs: only stuff I can find just notifies you which queries currently match, no way to edit them https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Testing_media_queries
- # [11:15] * Quits: kilikkuo (Mibbit@moz-2hf62a.HINET-IP.hinet.net) (Quit: http://www.mibbit.com ajax IRC Client)
- # [11:15] * Quits: TYLin (TYLin@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [11:15] <Gijs> Kwan: document.styleSheets[0].cssRules has them
- # [11:16] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Connection closed)
- # [11:17] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [11:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5692ab04fdc1 - Carsten "Tomcat" Book - Backed out changeset b44e10f83623 (bug 1125490)
- # [11:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/457883ac8776 - Carsten "Tomcat" Book - Backed out changeset bbd77af91d82 (bug 1125490) for reftests failures on a CLOSED TREE
- # [11:18] * julienw is now known as julienw_afk
- # [11:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/25da9ba50d8d - Ian Moody - Bug 1036434 - In-content preferences doesn't show the complete scrollbar, r=gijs
- # [11:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6e85ab924c21 - Carsten "Tomcat" Book - Backed out changeset 0767ae5882f9 (bug 1125770) for static analysis build bustage on a CLOSED TREE
- # [11:21] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [11:21] * Joins: flo-retina (Instantbird@moz-9a5g5g.lmuk.1rfi.0450.2001.IP)
- # [11:22] * flod|afk is now known as flod
- # [11:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/063ea5183f04 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
- # [11:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5653abfa3697 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [11:23] * Joins: alexxdim94 (alexander@moz-sj9s1u.btc-net.bg)
- # [11:24] <Tomcat|sheriffduty> seth: did the backout
- # [11:25] <seth> Tomcat|sheriffduty: thanks! sorry for the trouble
- # [11:26] <Tomcat|sheriffduty> np :) there was also a different bustage now :)
- # [11:27] * xidorn is now known as xidorn|away
- # [11:28] * Joins: rbarnes (rbarnes@moz-8ga6q5.ethz.ch)
- # [11:29] * Quits: jw_wang (jw_wang@moz-2hf62a.HINET-IP.hinet.net) (Quit: 暫離)
- # [11:29] * Parts: jonco (Adium@moz-v3p8i8.nemh.1887.0450.2001.IP)
- # [11:30] * Quits: adalucinet (Instantbird@moz-662.esi.231.62.IP) (Client exited)
- # [11:31] * Joins: jhorak (jhorak@moz-16g.ma8.175.213.IP)
- # [11:32] * Quits: jaoo (user@moz-b8lhan.user.ono.com) (Ping timeout: 121 seconds)
- # [11:32] * darkowlzz is now known as darkowlzz|afk
- # [11:32] * Quits: flo-retina (Instantbird@moz-9a5g5g.lmuk.1rfi.0450.2001.IP) (Connection closed)
- # [11:32] * Joins: flo-retina (Instantbird@moz-9a5g5g.lmuk.1rfi.0450.2001.IP)
- # [11:32] * Joins: jhao_ (chatzilla@moz-aj9ejj.HINET-IP.hinet.net)
- # [11:35] * Quits: seanlin (Thunderbird@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [11:36] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [11:36] * Quits: ddamjano (Instantbird@moz-l2bb60.cfl3.oeer.8388.2a02.IP) (Ping timeout: 121 seconds)
- # [11:37] * Quits: jhao_ (chatzilla@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [11:38] * Quits: StevenLee (Adium@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [11:38] * Joins: edmorley (uid27002@moz-524haa.brockwell.irccloud.com)
- # [11:38] * Quits: jviereck (Adium@moz-cfkrsr.dclient.hispeed.ch) (Quit: Leaving.)
- # [11:39] * darkowlzz|afk is now known as darkowlzz
- # [11:39] * Joins: ddamjano (Instantbird@moz-l2bb60.cfl3.oeer.8388.2a02.IP)
- # [11:40] * Quits: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl) (Quit: Leaving)
- # [11:40] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
- # [11:40] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [11:41] * glob is now known as glob|away
- # [11:42] * Quits: jkitch (Thunderbird@moz-4225kg.k4n0.vhij.44b8.2001.IP) (Ping timeout: 121 seconds)
- # [11:42] * Quits: elin (elin@moz-2hf62a.HINET-IP.hinet.net) (Client exited)
- # [11:42] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [11:44] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [11:45] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [11:45] * Quits: zerous (naveen@moz-tce.k31.255.84.IP) (Ping timeout: 121 seconds)
- # [11:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/43d6271708fe - Jon Coppeard - Bug 1124581 - Remove dead code related to conservative scanner r=terrence
- # [11:48] * Joins: stransky (stransky@moz-16g.ma8.175.213.IP)
- # [11:49] * Quits: alexosaurus (alex@moz-0fs.jtu.223.111.IP) (Ping timeout: 121 seconds)
- # [11:52] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [11:55] * Quits: brsun (chatzilla@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [11:58] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [12:00] * Quits: jrgill (jrgill@moz-ng2hkq.res.rr.com) (Connection closed)
- # [12:02] * Joins: mahdi (mahdi@moz-tqn.ht5.244.151.IP)
- # [12:02] * Quits: wesley_huang (wesley_huan@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [12:02] * Joins: adalucinet (Instantbird@moz-662.esi.231.62.IP)
- # [12:02] * Joins: benfrancis|away (uid16068@moz-v6fohe.uxbridge.irccloud.com)
- # [12:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/4631f0283363 - Mark Banner - Bug 1122486 - Upgrade Loop's use of Tokbox SDK 2.2.9.7 to fix issues with calls and rooms intermitently failing to connect. r=nperriault
- # [12:02] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [12:04] * Joins: jrgill (jrgill@moz-ng2hkq.res.rr.com)
- # [12:05] * Joins: TYLin (TYLin@moz-mt768i.dynamic.hinet.net)
- # [12:05] * mattwoodrow is now known as mattwoodrow|away
- # [12:06] * Joins: wesley_huang (wesley_huan@moz-aj9ejj.HINET-IP.hinet.net)
- # [12:06] * Quits: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net) (Client exited)
- # [12:07] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Client exited)
- # [12:11] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [12:11] * Joins: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP)
- # [12:11] * Joins: Kwan_ (chatzilla@moz-sdlmpo.range86-132.btcentralplus.com)
- # [12:12] * Quits: Kwan (chatzilla@moz-l47vu3.range86-152.btcentralplus.com) (Ping timeout: 121 seconds)
- # [12:12] * Kwan_ is now known as Kwan
- # [12:13] * Joins: jviereck (Adium@moz-01aj41.b6vj.g469.067c.2001.IP)
- # [12:13] * Quits: Jerry_Mac (hshih@moz-aj9ejj.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [12:14] * Quits: shelly (shelly@moz-2hf62a.HINET-IP.hinet.net) (Quit: Leaving)
- # [12:15] * Quits: flo-retina (Instantbird@moz-9a5g5g.lmuk.1rfi.0450.2001.IP) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [12:15] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [12:15] * Quits: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP) (Quit: Leaving.)
- # [12:16] * Joins: amoghbl1 (Thunderbird@moz-hgh.t5b.160.115.IP)
- # [12:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/01644d704dcf - Hiroyuki Ikezoe - Bug 1113863 - Move application configure after exporting MOZ_NO_DEBUG_RTL. r=glandium
- # [12:16] * Quits: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [12:17] * Quits: wesley_huang (wesley_huan@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [12:17] * Joins: zerous (naveen@moz-dn3.tug.255.84.IP)
- # [12:18] * benfrancis|away is now known as benfrancis
- # [12:23] * Joins: givanica (Thunderbird@moz-98k.ff2.121.86.IP)
- # [12:24] * Joins: janv (varga@moz-vse.1v0.143.178.IP)
- # [12:25] * Quits: jviereck (Adium@moz-01aj41.b6vj.g469.067c.2001.IP) (Quit: Leaving.)
- # [12:25] * Quits: boris (boris@moz-2hf62a.HINET-IP.hinet.net) (Client exited)
- # [12:26] * Joins: boris (boris@moz-2hf62a.HINET-IP.hinet.net)
- # [12:26] * Quits: boris (boris@moz-2hf62a.HINET-IP.hinet.net) (Client exited)
- # [12:34] * Joins: timdream (timdream@moz-commod.dynamic.hinet.net)
- # [12:36] * Quits: Edgar (Thunderbird@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [12:36] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [12:37] * Quits: janv (varga@moz-vse.1v0.143.178.IP) (Quit: This computer has gone to sleep)
- # [12:39] * Joins: MarcoZ_ (marco.zehe@moz-74kv4p.dip0.t-ipconnect.de)
- # [12:39] * Quits: kamidphish (dglastonbur@moz-ouggk0.tpgi.com.au) (Ping timeout: 121 seconds)
- # [12:40] * Quits: MarcoZ (marco.zehe@moz-74kv4p.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
- # [12:40] * MarcoZ_ is now known as MarcoZ
- # [12:40] * pbrosset is now known as pbrosset|afk
- # [12:40] * Quits: stransky (stransky@moz-16g.ma8.175.213.IP) (Connection closed)
- # [12:40] <Kwan> Gijs: are there are namespacing rules for CSS variables in preferences/fx in general?
- # [12:41] <Gijs> Kwan: no, none beside "use common sense" :)
- # [12:42] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [12:43] <Kwan> Gijs: hmm, given that they will already be scoped just to the #categories element, there shouldn't be any need to give them over-specific names then, right? (this is my first time really using CSS vars)
- # [12:44] <Gijs> Kwan: I guess not...
- # [12:44] * Joins: till (till@moz-n7r731.adsl.alicedsl.de)
- # [12:44] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [12:44] <Gijs> hard to say without seeing the approach in the patch
- # [12:44] <Gijs> :)
- # [12:45] <bbouvier> are there other people hitting "error: unrecognized command line option ‘-fno-integrated-as’" when compiling with gcc?
- # [12:46] <Kwan> sure, I'll upload it soon. Just didn't want to be typing e.g. --moz-preferences-category-height instead of --category-height unless it's necessary
- # [12:47] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [12:47] * Joins: paolo (paolo@moz-74a.0nt.218.207.IP)
- # [12:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c3c8794b37bf - Masatoshi Kimura - Bug 1126017 - Use --enable-warnings-as-errors on Win64 builders. r=glandium
- # [12:48] <bbouvier> how does one change the default compiler with mach? i've tried export CXX=clang++ in the mozconfig file, doesn't work
- # [12:48] * Joins: jdm (jdm@moz-74a.0nt.218.207.IP)
- # [12:50] * whimboo is now known as whimboo|afk
- # [12:50] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [12:50] * Quits: gcp (gcp@moz-beufoe.beqe.9i1r.1812.2a02.IP) (A TLS packet with unexpected length was received.)
- # [12:51] * Quits: jsx (uid48919@moz-ldeku3.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
- # [12:51] <tbsaunde> bbouvier: can't say that I've seen that, but I guess its new for you
- # [12:51] * Joins: gcp (gcp@moz-smtls0.beqe.9i1r.1812.2a02.IP)
- # [12:53] * nthomas|away is now known as nthomas
- # [12:54] <ggp> bbouvier: hmm, that works for me. I use the absolute path to clang++ though, have you tried that?
- # [12:54] <bbouvier> tbsaunde: yeah, using clang instead did the trick, but that's weird
- # [12:54] <bbouvier> ggp: it actually worked, yeah
- # [12:55] * Quits: rbarnes (rbarnes@moz-8ga6q5.ethz.ch) (A TLS packet with unexpected length was received.)
- # [12:56] * Quits: TYLin (TYLin@moz-mt768i.dynamic.hinet.net) (Client exited)
- # [12:56] <Sylvestre> Gijs, about bug 1108971, 100 % (the updates)
- # [12:56] * Joins: rbarnes (rbarnes@moz-8ga6q5.ethz.ch)
- # [12:57] <Gijs> Sylvestre: interesting. Still, quite possible that he tried manually forcing an update the day before yesterday and then now we haven't (yet) checked for an update again
- # [12:59] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
- # [12:59] * Quits: schien (anonymous@moz-2hf62a.HINET-IP.hinet.net) (Quit: sleep)
- # [12:59] * baku|away is now known as baku
- # [13:00] <Sylvestre> Gijs, yeh, that does not mean that everybody moved to 35.0.1
- # [13:00] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [13:00] <Gijs> right
- # [13:00] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [13:00] * jdm is now known as jdm|f00ding
- # [13:01] * Quits: amoghbl1 (Thunderbird@moz-hgh.t5b.160.115.IP) (Ping timeout: 121 seconds)
- # [13:01] <tbsaunde> bbouvier: and looking at the ways it used it doesn't make much sense unless you ran configure and it found c++=clang somehow and then tried to run g++ for c++ somehow
- # [13:02] * Quits: rbarnes (rbarnes@moz-8ga6q5.ethz.ch) (A TLS packet with unexpected length was received.)
- # [13:02] * Joins: schien (anonymous@moz-aj9ejj.HINET-IP.hinet.net)
- # [13:02] * Joins: TYLin (TYLin@moz-mt768i.dynamic.hinet.net)
- # [13:05] * Joins: boris (boris@moz-j5ocuo.kbronet.com.tw)
- # [13:05] * Quits: boris (boris@moz-j5ocuo.kbronet.com.tw) (Client exited)
- # [13:05] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [13:06] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [13:06] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/af8aa104c175 - Tim Taubert - Bug 1113178 - Replace removeAllPages() in services/sync/tests/unit/ r=markh
- # [13:06] * Joins: stransky (stransky@moz-16g.ma8.175.213.IP)
- # [13:07] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [13:07] * killer sets mode: +o smaug
- # [13:08] * Joins: marco (marco@moz-brl.bmp.234.95.IP)
- # [13:09] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Ping timeout: 121 seconds)
- # [13:09] * Joins: jviereck (Adium@moz-9sfman.ethz.ch)
- # [13:10] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [13:11] * Quits: timdream (timdream@moz-commod.dynamic.hinet.net) (Client exited)
- # [13:11] * darkowlzz is now known as darkowlzz|afk
- # [13:15] * Joins: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP)
- # [13:15] * Joins: Jerry_Mac (hshih@moz-2hf62a.HINET-IP.hinet.net)
- # [13:16] * Quits: jviereck (Adium@moz-9sfman.ethz.ch) (Quit: Leaving.)
- # [13:16] * Quits: m_kato (m_kato@moz-86b4bs.bitcat.net) (Quit: Leaving...)
- # [13:16] * Joins: mikeratcliffe1 (Adium@moz-fcp.9v6.12.149.IP)
- # [13:16] * Quits: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP) (Connection closed)
- # [13:17] * Joins: jaoo (user@moz-b8lhan.user.ono.com)
- # [13:19] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [13:20] * Joins: clokep (Instantbird@moz-ivrdpu.cable.rcn.com)
- # [13:20] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [13:21] * Joins: ahunt (ahunt@moz-hq8kb0.cam.ac.uk)
- # [13:22] * Quits: Jesse (jruderman@moz-pqc1f5.ca.comcast.net) (Client exited)
- # [13:23] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [13:24] * Quits: avaida (andreivaida@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [13:26] * Joins: jviereck (Adium@moz-01aj41.b6vj.g469.067c.2001.IP)
- # [13:27] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [13:29] * Joins: secretrobotron (secretrobot@moz-00m16v.dsl.teksavvy.com)
- # [13:29] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [13:31] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Connection closed)
- # [13:32] * Joins: janv (varga@moz-vse.1v0.143.178.IP)
- # [13:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/e23bc13ed94d - B2G Bumper Bot - Bumping gaia.json for 6 gaia revision(s) a=gaia-bump
- # [13:32] * Quits: edenchuang (uid46829@moz-38m6rq.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [13:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/de6b90bec938 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [13:34] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [13:34] * jdm|f00ding is now known as jdm
- # [13:34] * Quits: jviereck (Adium@moz-01aj41.b6vj.g469.067c.2001.IP) (Quit: Leaving.)
- # [13:37] * whimboo|afk is now known as whimboo
- # [13:39] * Joins: vicamo (vicamo@moz-2a8kqu.dynamic.hinet.net)
- # [13:40] <Tomcat|sheriffduty> and another bustage :)
- # [13:40] * Quits: vicamo (vicamo@moz-2a8kqu.dynamic.hinet.net) (Client exited)
- # [13:43] * Joins: Enn (enn@moz-coa.u1v.233.99.IP)
- # [13:44] * Joins: KaiRo (robert@moz-dcvakj.highway.telekom.at)
- # [13:46] * Fallen is now known as Fallen|away
- # [13:47] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [13:47] * julienw_afk is now known as julienw
- # [13:48] * Joins: Mnyromyr (Mnyromyr@moz-smolet.ejss.mv3s.0908.2a02.IP)
- # [13:48] * Fallen|away is now known as Fallen
- # [13:49] * Joins: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl)
- # [13:52] * Quits: Enn (enn@moz-coa.u1v.233.99.IP) (Ping timeout: 121 seconds)
- # [13:53] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [13:55] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [13:57] * darkowlzz|afk is now known as darkowlzz
- # [13:59] * Quits: tn (tim@moz-099gp0.wp.shawcable.net) (Ping timeout: 121 seconds)
- # [13:59] * Joins: tn (tim@moz-099gp0.wp.shawcable.net)
- # [14:00] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Quit: ChatZilla 0.9.91.1 [Firefox 34.0.5/20141126041045])
- # [14:02] * Joins: oysteinje (oysteinje@moz-1rie6a.ka.hist.no)
- # [14:02] * Joins: avaida (andreivaida@moz-662.esi.231.62.IP)
- # [14:03] <Kwan> Gijs: huh, I'm hitting a NoModificationAllowedError trying to setProperty() on #categories
- # [14:03] <Kwan> any ideas?
- # [14:03] * Quits: marco (marco@moz-brl.bmp.234.95.IP) (Client exited)
- # [14:03] <Gijs> hm
- # [14:03] <Gijs> Kwan: can you pastebin the relevant bit of your script?
- # [14:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5d8e34d06f43 - Carsten "Tomcat" Book - Backed out changeset c3c8794b37bf (bug 1126017) for bustage on a CLOSED TREE
- # [14:05] <Kwan> Gijs: https://pastebin.mozilla.org/8378585
- # [14:05] * Quits: janv (varga@moz-vse.1v0.143.178.IP) (Quit: This computer has gone to sleep)
- # [14:06] * darkowlzz is now known as darkowlzz|afk
- # [14:06] * AutomatedTester|AFK is now known as AutomatedTester
- # [14:07] * Joins: ericjung___ (ericjung@moz-g97fru.7ch4.iin2.0006.2601.IP)
- # [14:08] <Gijs> Kwan: looks like you're trying to use setProperty on getComputedStyle ?
- # [14:08] <Gijs> (well, the result thereof)
- # [14:08] <Kwan> ah, should it be straight on the element
- # [14:09] <Gijs> Kwan: I'd imagine you want element.style.setProperty instead
- # [14:09] <Gijs> almost :)
- # [14:09] <Gijs> never used those APIs, though, so I could be wrong. :)
- # [14:11] <Kwan> Gijs: that makes more sense, thanks
- # [14:13] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Connection closed)
- # [14:13] <decoder> froydnj: ping
- # [14:13] * Joins: rbarnes (rbarnes@moz-rp3p8k.ethz.ch)
- # [14:13] * Joins: Cwiiis (uid15019@moz-h5bcpj.highgate.irccloud.com)
- # [14:13] * killer sets mode: +o Cwiiis
- # [14:13] * lth|out is now known as lth
- # [14:14] * Quits: VarCat (VarCat@moz-ohb.65e.79.82.IP) (Connection closed)
- # [14:14] * Quits: Teodor_Druta (Thunderbird@moz-ohb.65e.79.82.IP) (Connection closed)
- # [14:14] * Joins: VarCat (VarCat@moz-spd.8ed.34.89.IP)
- # [14:14] * Quits: VarCat (VarCat@moz-spd.8ed.34.89.IP) (Connection closed)
- # [14:14] * Joins: VarCat (VarCat@moz-ohb.65e.79.82.IP)
- # [14:15] <Kwan> Gijs: sweet, now have it working for any number of categories. bug + rough patch incoming. Thanks for the help
- # [14:15] <Gijs> Kwan: awesome, thanks!
- # [14:16] * Joins: Teodor_Druta (Thunderbird@moz-ohb.65e.79.82.IP)
- # [14:18] * Joins: gustavold (gustavold@moz-lkd.ksg.110.179.IP)
- # [14:19] * Joins: flo-retina (Instantbird@moz-fq5ktd.2500.1rfi.0450.2001.IP)
- # [14:19] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [14:21] * sheppy-offline is now known as sheppy
- # [14:22] * Joins: timdream (timdream@moz-commod.dynamic.hinet.net)
- # [14:28] * Quits: secretrobotron (secretrobot@moz-00m16v.dsl.teksavvy.com) (A TLS packet with unexpected length was received.)
- # [14:28] * Joins: Pike (chatzilla@moz-16l6hn.pool.mediaWays.net)
- # [14:29] * Joins: RyanVM (Thunderbird@moz-hu3p96.fios.verizon.net)
- # [14:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ee1ddfd22521 - JW Wang - Bug 1124939 - Add "individualization-request" to MediaKeyMessageType. r=bz
- # [14:30] <@ted> Gijs: ping
- # [14:30] * Joins: secretrobotron (secretrobot@moz-00m16v.dsl.teksavvy.com)
- # [14:31] <Gijs> ted: pong-ish, about to head out... what's up?
- # [14:31] <@ted> Gijs: just a quick question, how do i specify an icon for a button i create with CustomizableUI.createWidget?
- # [14:31] <@ted> the docs don't seem to mention this anywhere
- # [14:31] <Gijs> ted: using CSS.
- # [14:32] <@ted> that seems like a pain from a restartless addon
- # [14:32] <@ted> thanks
- # [14:32] <Gijs> restartless add-ons can have skin packages?
- # [14:32] <Gijs> so, not sure why :)
- # [14:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9f7b43f62de0 - Ehsan Akhgari - Bug 1117034 - Mark some overridden functions in the tree as override
- # [14:32] <Gijs> ted: but yeah, the problem is, getting the icon Right without using CSS (and catering for hidpi and the different locations of the button) is a pain
- # [14:33] * Joins: jimm (jmathies@moz-sj8.oa5.235.67.IP)
- # [14:33] <@ted> gotcha
- # [14:33] <@ted> thanks
- # [14:33] <Gijs> we decided not to try to solve the problem in the initial revision...
- # [14:33] <Gijs> ted: if you want to file a bug to make the API more powerful, that WFM... might be tricky to implement, though :)
- # [14:33] * benfrancis is now known as benfrancis|away
- # [14:34] * Quits: oysteinje (oysteinje@moz-1rie6a.ka.hist.no) (Ping timeout: 121 seconds)
- # [14:34] * Quits: secretrobotron (secretrobot@moz-00m16v.dsl.teksavvy.com) (Ping timeout: 121 seconds)
- # [14:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a652d8b5f002 - Ehsan Akhgari - Bug 1126128 - Mark TestTrustDomain::VerifySignedData as override; r=bsmith
- # [14:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0db65ae029da - Ehsan Akhgari - Bug 1122926 - Remove unhelpful configure messages suggesting to use --disable-webgl or install the DirectX SDK; r=glandium
- # [14:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/4d7b631fb0e8 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [14:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/115c24e06f4b - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [14:38] * jmaher|afk is now known as jmaher
- # [14:38] * Joins: idwer (irc@moz-bp1sle.adsl.online.nl)
- # [14:38] * Joins: rraghav (quassel@moz-fd4.hvk.238.117.IP)
- # [14:39] * Gijs is now known as Gijs_away
- # [14:40] * Quits: Jackneill (Jackneill@moz-pj9nfa.pool.digikabel.hu) (Ping timeout: 121 seconds)
- # [14:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c579974cfa31 - Robert Longson - Bug 1125647 - mark some webidl attributes as [Pure]. r=bzbarsky
- # [14:40] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/bd91233cd18e - Ben Hearsum - bug 1125921: add win64 mozconfigs. r=rail, a=tomcat,no-l10n-on-inbound
- # [14:41] * Quits: Jerry_Mac (hshih@moz-2hf62a.HINET-IP.hinet.net) (Quit: Leaving)
- # [14:42] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
- # [14:42] * Quits: mikeratcliffe1 (Adium@moz-fcp.9v6.12.149.IP) (Quit: Leaving.)
- # [14:42] * Joins: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net)
- # [14:47] * Joins: flaviu1 (Instantbird@moz-ql2.r2u.77.95.IP)
- # [14:47] * Joins: CristinaM1 (Instantbird@moz-ql2.r2u.77.95.IP)
- # [14:47] * Joins: bogdan_maris1 (Instantbird@moz-ql2.r2u.77.95.IP)
- # [14:47] * Quits: flaviu (Instantbird@moz-662.esi.231.62.IP) (Connection closed)
- # [14:47] * Quits: adalucinet (Instantbird@moz-662.esi.231.62.IP) (Connection closed)
- # [14:47] * Quits: bogdan_maris (Instantbird@moz-662.esi.231.62.IP) (Connection closed)
- # [14:48] * Quits: flaviu1 (Instantbird@moz-ql2.r2u.77.95.IP) (Connection closed)
- # [14:48] * Quits: CristinaM1 (Instantbird@moz-ql2.r2u.77.95.IP) (Connection closed)
- # [14:48] * Quits: bogdan_maris1 (Instantbird@moz-ql2.r2u.77.95.IP) (Connection closed)
- # [14:48] * Joins: flaviu (Instantbird@moz-662.esi.231.62.IP)
- # [14:48] * Quits: CristinaM (Instantbird@moz-662.esi.231.62.IP) (Connection closed)
- # [14:48] * Joins: bogdan_maris (Instantbird@moz-662.esi.231.62.IP)
- # [14:48] * Joins: adalucinet (Instantbird@moz-662.esi.231.62.IP)
- # [14:48] * Quits: avaida (andreivaida@moz-662.esi.231.62.IP) (Connection closed)
- # [14:48] * Joins: CristinaM (Instantbird@moz-662.esi.231.62.IP)
- # [14:48] * Joins: avaida (andreivaida@moz-662.esi.231.62.IP)
- # [14:49] * Quits: Archaeopteryx (Archaeopter@moz-eidotg.cust.telecolumbus.net) (Quit: Goodbye)
- # [14:49] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/01c2c9ee7390 - Heiher - Bug 1125722 - IonMonkey: MIPS: Fix method ma_b with ImmGCPtr in MacroAssembler-mips. r=rankov
- # [14:49] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/052bb63dc00d - Heiher - Bug 1126097 - IonMonkey: MIPS: Fix mistakes in AssemblerMIPS::as_ins and as_ext. r=rankov
- # [14:50] * darkowlzz|afk is now known as darkowlzz
- # [14:50] * Joins: marco (marco@moz-8fde33.retail.telecomitalia.it)
- # [14:53] * Joins: Archaeopteryx (Archaeopter@moz-eidotg.cust.telecolumbus.net)
- # [14:53] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [14:53] * Joins: janv (varga@moz-vse.1v0.143.178.IP)
- # [14:55] * Joins: jrmuizel (jrmuizel@moz-i5m.05u.207.66.IP)
- # [14:55] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [14:55] * Quits: TYLin (TYLin@moz-mt768i.dynamic.hinet.net) (Client exited)
- # [14:57] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Connection closed)
- # [14:57] * Quits: bz_away (bzbarsky@moz-m10oko.fios.verizon.net) (Ping timeout: 121 seconds)
- # [14:58] * mcote|afk is now known as mcote
- # [14:58] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [14:59] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [15:00] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [15:01] * Quits: rraghav (quassel@moz-fd4.hvk.238.117.IP) (Connection closed)
- # [15:01] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [15:01] * Quits: mwargers (mwargers@moz-tst4f6.adsl.online.nl) (Ping timeout: 121 seconds)
- # [15:01] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [15:01] * Joins: mconley (mconley@moz-os98q9.cable.teksavvy.com)
- # [15:02] <MarcoZ> RyanVM: Hi! For Aurora and Beta approved patches that we cannot land ourselves (e. g. due to not set up the repo), do you sheriffs need checkin-needed or are you triaging those regularly anyway?
- # [15:02] <RyanVM> MarcoZ: triaged regularly :)
- # [15:02] <MarcoZ> RyanVM: Cool thanks, so I won't add or change anything to the bug we just got approval for. ;)
- # [15:02] <RyanVM> sounds good!
- # [15:03] * Quits: gerv (Instantbird@moz-ppf2jl.81.in-addr.arpa) (Ping timeout: 121 seconds)
- # [15:04] * Joins: mwargers (mwargers@moz-tst4f6.adsl.online.nl)
- # [15:04] * Quits: @smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
- # [15:05] * yzen is now known as yzen_
- # [15:06] * Joins: ahal (ahal@moz-blga2k.cpe.pppoe.ca)
- # [15:07] * Joins: idwer_ (irc@moz-bp1sle.adsl.online.nl)
- # [15:07] * Joins: Edgar (Thunderbird@moz-5d4ti0.dynamic.hinet.net)
- # [15:07] * Quits: mconley (mconley@moz-os98q9.cable.teksavvy.com) (Connection closed)
- # [15:09] * Quits: yzen_ (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
- # [15:10] * Quits: idwer (irc@moz-bp1sle.adsl.online.nl) (Ping timeout: 121 seconds)
- # [15:10] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
- # [15:11] * Joins: Jackneill (Jackneill@moz-ek96u3.pool.digikabel.hu)
- # [15:11] <tbsaunde> 0/win32
- # [15:12] * pbrosset|afk is now known as pbrosset
- # [15:13] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [15:14] * Quits: zerous (naveen@moz-dn3.tug.255.84.IP) (Ping timeout: 121 seconds)
- # [15:15] * Quits: Shrooms` (Shrooms@moz-7lpn9p.ip.windstream.net) (Connection closed)
- # [15:17] * Joins: surkov (surkov@moz-v8g78c.cpe.teksavvy.com)
- # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/45d4cd8bbc04 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/3086135dda95 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [15:18] * Quits: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net) (Client exited)
- # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/6dd8812c2b0a - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/a01e32d31dfe - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/f2bbb7a9a3e3 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/8fed85cc71d5 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/b2474bca8494 - Mike Habicher - Bug 1121769 - push picture size to the camera driver, even in video mode, r=aosmond
- # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/18f177fc40dc - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [15:19] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/ab87add2560f - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [15:19] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/6e7b69e6d3eb - Carsten "Tomcat" Book - merge b2g-inbound to mozilla-central a=merge
- # [15:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/08f032d5d8a0 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [15:19] * Joins: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net)
- # [15:19] * Quits: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net) (Client exited)
- # [15:20] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [15:20] * bc|afk is now known as bc
- # [15:21] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Connection closed)
- # [15:22] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [15:22] * Joins: maxli (maxli@moz-favcmk.cs.uwaterloo.ca)
- # [15:24] * Joins: freddyb (freddyb@moz-no0.93r.245.63.IP)
- # [15:24] * whimboo is now known as whimboo|afk
- # [15:24] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=232401a6d1cc - 97 changesets
- # [15:24] <freddyb> I'm trying to find out which code handles pasting something from the clipboard into an (HTML) document (e.g. <input> element), but I have a hard time identifying this
- # [15:25] * Joins: aben (aben@moz-c39.dmt.204.142.IP)
- # [15:25] <freddyb> all the clipboard files in widget/ just seem to redirect clipboard interaction to the OS specific APIs, it seems
- # [15:25] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (A TLS packet with unexpected length was received.)
- # [15:26] * whimboo|afk is now known as whimboo
- # [15:26] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [15:26] * Joins: zerous (naveen@moz-r8k.3m8.148.89.IP)
- # [15:26] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (A TLS packet with unexpected length was received.)
- # [15:27] <Ms2ger> freddyb, something something editor?
- # [15:27] * Joins: davidb (davidb@moz-i5m.05u.207.66.IP)
- # [15:28] <freddyb> Ms2ger: ah. but there's a lot in editor/ as well as editor/libeditor/ :)
- # [15:28] * shorlander-away is now known as shorlander
- # [15:28] <freddyb> ah, not too much though. https://dxr.mozilla.org/mozilla-central/search?q=path%3Aeditor+GetData&case=true
- # [15:28] * Joins: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net)
- # [15:29] * Joins: garvank (Garvan@moz-p18v30.dsl.teksavvy.com)
- # [15:30] * coop|afk is now known as coop|buildduty
- # [15:30] * bobowen is now known as bobowen|afk
- # [15:31] <freddyb> thanks a lot, Ms2ger
- # [15:31] <Ms2ger> Np
- # [15:31] <Ms2ger> freddyb, you own editor now, btw
- # [15:32] <Ms2ger> Rookie mistake
- # [15:32] <freddyb> what an honour.
- # [15:32] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
- # [15:32] * Joins: ckitching (ckitching@moz-gem.6oa.49.62.IP)
- # [15:33] * Joins: AaronMT (AaronMT@moz-5e6tl2.cable.rogers.com)
- # [15:34] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Connection closed)
- # [15:34] * luke1 is now known as luke
- # [15:35] * Joins: yzen (yzen@moz-i5m.05u.207.66.IP)
- # [15:35] <jesup> freddyb: your job now is to find someone else willing to work on editor ;-)
- # [15:35] * jesup though ehsan owned it (by mistake)
- # [15:35] <freddyb> so, we're playing tag with gecko modules?
- # [15:35] * jesup is easily confused by editor ownership
- # [15:36] <Ms2ger> Pretty much
- # [15:36] <ttaubert> not only gecko modules
- # [15:36] * freddyb nudges ttaubert: you're it!
- # [15:36] <freddyb> *runs away*
- # [15:36] <ttaubert> oh no
- # [15:36] <Ms2ger> ttaubert, just going to mention that jesup's confusion could be used against him ;)
- # [15:36] <Ms2ger> And he was around when editor was being actively worked on :)
- # [15:36] <jesup> afk
- # [15:36] <ttaubert> hah
- # [15:36] <freddyb> lol
- # [15:38] <jesup> never touched it (prove otherwise!) closest I think I got was speeding up the Find (^f) code a lot, which isn't editor.
- # [15:38] <jesup> oh right, I'm afk
- # [15:38] * Quits: Archaeopteryx (Archaeopter@moz-eidotg.cust.telecolumbus.net) (Quit: Goodbye)
- # [15:39] <froydnj> youtube video, why u pause in the middle of playback?
- # [15:39] <jesup> for real now
- # [15:39] * AutomatedTester is now known as AutomatedTester|AFK
- # [15:40] * Joins: jsx (uid48919@moz-ldeku3.uxbridge.irccloud.com)
- # [15:40] * Joins: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [15:42] * Quits: rbarnes (rbarnes@moz-rp3p8k.ethz.ch) (A TLS packet with unexpected length was received.)
- # [15:42] * Quits: surkov (surkov@moz-v8g78c.cpe.teksavvy.com) (Client exited)
- # [15:43] * Joins: Shrooms (Shrooms@moz-7lpn9p.ip.windstream.net)
- # [15:44] <jcranmer|away> isn't the rule of *redacted* ownership that he who speaks that word becomes the module owner?
- # [15:44] <freddyb> which word?
- # [15:44] * Joins: bbondy (bbondy@moz-e3bbdr.commercial.cgocable.net)
- # [15:45] * Joins: Archaeopteryx (Archaeopter@moz-eidotg.cust.telecolumbus.net)
- # [15:45] * tbsaunde waits for jcranmer|away to say mork
- # [15:45] <Ms2ger> freddyb, *redacted*, duh
- # [15:45] * Joins: rbarnes (rbarnes@moz-rp3p8k.ethz.ch)
- # [15:45] <jcranmer|away> the last word of jesup's line from approximately 7 minutes ago of those lines that end in what Americans call a 'period' and Brits a 'full-stop'
- # [15:46] <jcranmer|away> tbsaunde: thank you for volunteering to be a module owner
- # [15:46] <tbsaunde> ;)
- # [15:46] <Ms2ger> Is m*** still not dead yet?
- # [15:47] <jcranmer|away> sadly, no
- # [15:47] * benfrancis|away is now known as benfrancis
- # [15:47] <jcranmer|away> it has a habit of wrapping its tentacles around critical support infrastructure that make eradication difficult
- # [15:47] <freddyb> this game is fun.
- # [15:48] * Quits: alexxdim94 (alexander@moz-sj9s1u.btc-net.bg) (Connection closed)
- # [15:48] <freddyb> I'll leave this channel for completely unrelated reasons, though.
- # [15:48] * Parts: freddyb (freddyb@moz-no0.93r.245.63.IP)
- # [15:48] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=63f8a47cfdf5 - 17 changesets
- # [15:48] * Quits: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net) (Client exited)
- # [15:49] * Quits: givanica (Thunderbird@moz-98k.ff2.121.86.IP) (Ping timeout: 121 seconds)
- # [15:49] * Joins: mconley (mconley@moz-i5m.05u.207.66.IP)
- # [15:49] * Quits: rbarnes (rbarnes@moz-rp3p8k.ethz.ch) (Ping timeout: 121 seconds)
- # [15:49] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/869662d3bd76 - Ryan VanderMeulen - Backed out changeset f9625445803a (bug 1082290) because it depends on bug 1081871, which was backed out.
- # [15:49] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/800c5cb0f4d9 - Ryan VanderMeulen - Backed out changesets 59452425e446 and a13166f0d914 (bug 1081871) for causing bug 1122119.
- # [15:49] * bobowen|afk is now known as bobowen
- # [15:50] * Joins: Honza (chatzilla@moz-tiq.7ku.62.176.IP)
- # [15:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e85214458163 - Michal Novotny - Bug 1119406 - HTTP cache v2: Doom cache entry when writing of metadata fails, r=honzab
- # [15:53] * Joins: ManoBodyDouble (Mano@moz-5qsh0d.dynamic.barak-online.net)
- # [15:54] * Joins: spohl (Adium@moz-i90.olo.156.104.IP)
- # [15:55] * Joins: surkov (surkov@moz-v8g78c.cpe.teksavvy.com)
- # [15:55] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Ping timeout: 121 seconds)
- # [15:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=be3199827238 - 30 changesets
- # [15:57] * Joins: tromey (tromey@moz-qvk910.hlrn.qwest.net)
- # [15:57] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [15:57] * Joins: secretrobotron (secretrobot@moz-i5m.05u.207.66.IP)
- # [16:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/pushloghtml?changeset=effc8106a311 - 117 changesets
- # [16:01] <jesup> http://www.fifa.com/worldcup/videos/highlights/match=300186474/index.html\
- # [16:02] * Joins: jfkthame (jfkthame@moz-2a7.i06.29.2.IP)
- # [16:02] <Pike> gosh, earlybird is soooo crashy
- # [16:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/9b56103db0ce - Dimi Lee - Bug 1089658 - NFC: b2g crashes when trying to read MIFARE Classic tag. r=smaug, r=yoshi
- # [16:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/876419971e2f - Alexandre Lissy - Bug 1103958 - Dump Gecko AppInfos and about:memory in LogShake. r=gwagner
- # [16:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f3b742b23432 - Alphan Chen - Bug 1113518 - [automounter] Add a case for fuse and add some useful logs. r=dhylands
- # [16:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/88f85a8099ca - Bruce Sun - Bug 1125719 - Redial from bluetooth device cause bluetoothd and gecko crash. r=tzimmermann
- # [16:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/0e4de8888c3b - Jocelyn Liu - Bug 1126151 - Fix build break resulting from bug 1125356. r=shuang
- # [16:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cf8503e06f91 - Jeff Muizelaar - Bug 1125709. Avoiding using MacIOSurfaceTextureSourceOGL in MacIOSurfaceTextureHostOGL. r=nical
- # [16:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/pushloghtml?changeset=5575ef787210 - 110 changesets
- # [16:03] * Joins: bsmedberg (bsmedberg@moz-smm6jf.pa.atlanticbb.net)
- # [16:03] * killer sets mode: +o bsmedberg
- # [16:04] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [16:04] * Quits: garvank (Garvan@moz-p18v30.dsl.teksavvy.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [16:06] * Joins: kepta (kepta@moz-jot.48k.176.223.IP)
- # [16:06] * Quits: maxli (maxli@moz-favcmk.cs.uwaterloo.ca) (Ping timeout: 121 seconds)
- # [16:08] * philor|away is now known as philor
- # [16:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9eea797eb8c2 - David Major - Bug 1123778 - Block Lenovo Onekey Theater DLLs. r=bsmedberg
- # [16:09] * Joins: mayhemer (Miranda@moz-5uf4lm.joqu.pdma.1028.2a00.IP)
- # [16:11] * Joins: bz_away (bzbarsky@moz-m10oko.fios.verizon.net)
- # [16:11] * davidb is now known as davidb|afk
- # [16:12] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/1dd013ece082 - Ben Hearsum - Bustage fix for bug 1125921: update mozconfig whitelists. r=bustage a=bustage
- # [16:13] * Quits: kepta (kepta@moz-jot.48k.176.223.IP) (A TLS packet with unexpected length was received.)
- # [16:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/0e5635270d32 - Aaron Raimist - Bug 1042619 - Change 'width x height' letter x to a multiplication sign in devtools frontend. r=bgrins
- # [16:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/046c7d482f36 - Sami Jaktholm - Bug 1116428 - Part 1: Expose SSLv3 and RC4 warnings in the webconsole actor. r=past
- # [16:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/06e5cde2c6fc - Sami Jaktholm - Bug 1116428 - Part 2: Present SSLv3 and RC4 warnings in Network Monitor UI. r=vporof
- # [16:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1dd013ece082 - Ben Hearsum - Bustage fix for bug 1125921: update mozconfig whitelists. r=bustage a=bustage
- # [16:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f6ae50b7b042 - Ryan VanderMeulen - Merge m-c to inbound. a=merge
- # [16:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/1dd013ece082 - Ben Hearsum - Bustage fix for bug 1125921: update mozconfig whitelists. r=bustage a=bustage
- # [16:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/dc24497dbda4 - Carsten "Tomcat" Book - Merge mozilla-central to fx-team
- # [16:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/1dd013ece082 - Ben Hearsum - Bustage fix for bug 1125921: update mozconfig whitelists. r=bustage a=bustage
- # [16:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/16fe2bfbadb2 - Ryan VanderMeulen - Merge m-c to b2g-inbound. a=merge
- # [16:16] * nthomas is now known as nthomas|away
- # [16:16] * darkowlzz is now known as darkowlzz|afk
- # [16:17] * Quits: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net) (Quit: OSError: [Errno 130] Owner died)
- # [16:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7cefd0f40212 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [16:17] <RyanVM> Sylvestre: any more approvals on the way?
- # [16:18] <Sylvestre> RyanVM, not for me
- # [16:18] * Quits: bogdan_maris (Instantbird@moz-662.esi.231.62.IP) (Client exited)
- # [16:18] <RyanVM> bz_away: want me to ping you the next time b2g-inbound merges around?
- # [16:18] <RyanVM> Sylvestre: ok, thanks
- # [16:19] * Quits: timdream (timdream@moz-commod.dynamic.hinet.net) (Client exited)
- # [16:19] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
- # [16:19] * darkowlzz|afk is now known as darkowlzz
- # [16:19] * Joins: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net)
- # [16:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bf6dcc8a0d57 - Robert Longson - Bug 1125647 - mark remaining SVGAnimatedXXX webidl attributes as [Constant]. r=dholbert, sr=bzbarsky
- # [16:19] <bz_away> RyanVM: I was about to ask how I'd know when it's safe to push again
- # [16:20] <bz_away> RyanVM: if you can do that, it woudl rock!
- # [16:20] <bz_away> er, would
- # [16:20] <RyanVM> sure thing
- # [16:20] <RyanVM> b2g-inbound hasn't even picked it up yet
- # [16:20] * bobowen is now known as bobowen|afk
- # [16:20] * bobowen|afk is now known as bobowen
- # [16:22] * Joins: rbarnes (rbarnes@moz-s5k7ep.ethz.ch)
- # [16:22] * nthomas|away is now known as nthomas
- # [16:23] * Joins: emtwo (Adium@moz-8bdn4c.fnjk.s0pt.0450.2001.IP)
- # [16:24] * Quits: adalucinet (Instantbird@moz-662.esi.231.62.IP) (Client exited)
- # [16:24] * Quits: Alessar (Alessar@moz-mfn.qfs.104.79.IP) (Quit: IRC protocol for QIP)
- # [16:25] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
- # [16:25] * killer sets mode: +ao dbaron dbaron
- # [16:25] * Quits: &dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com) (Connection closed)
- # [16:25] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [16:26] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [16:26] * killer sets mode: +o smaug
- # [16:26] * Quits: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp) (Client exited)
- # [16:27] * Fallen is now known as Fallen|away
- # [16:30] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [16:30] * Quits: flaviu (Instantbird@moz-662.esi.231.62.IP) (Connection closed)
- # [16:31] * Joins: bwc (Adium@moz-7qa.7fp.250.162.IP)
- # [16:31] * Quits: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net) (A TLS packet with unexpected length was received.)
- # [16:33] * Quits: CristinaM (Instantbird@moz-662.esi.231.62.IP) (Quit: Instantbird 1.5 -- http://www.instantbird.com)
- # [16:33] * Joins: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp)
- # [16:34] * Joins: mixedpuppy (mixedpuppy@moz-l5h.i2q.170.166.IP)
- # [16:35] * BenWa|email is now known as BenWa
- # [16:36] * Joins: loveless (loveless@moz-paq.mg6.56.172.IP)
- # [16:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/3ab4bf2be322 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
- # [16:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/08ceb4546749 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [16:41] * Quits: twi (Adium@moz-q4tvni.optusnet.com.au) (Quit: Leaving.)
- # [16:42] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/b314a91c5684 - Milan Sreckovic - Bug 1088833 - A bit of a clean up of warnings, and catch bad draw target in the d3d11 canvas case. r=bschouten, a=sledru
- # [16:42] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/f60d058bf105 - Jean-Yves Avenard - Bug 1123202 - Execute abort() when detaching source buffer. r=cajbir, a=sledru
- # [16:42] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/d0d24eaaf835 - Jean-Yves Avenard - Bug 1096089 - MSE: Partially implement Range Removal algorithm. r=mattwoodrow, r=cajbir, a=sledru
- # [16:42] * BenWa is now known as BenWa|email
- # [16:43] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/e73202798538 - Jean-Yves Avenard - Bug 1096089 - Only return end of stream if we're near the known duration. r=mattwoodrow, a=sledru
- # [16:43] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/46f1d7282ef3 - Makoto Kato - Bug 1123966 - Use FILE_FLAG_DELETE_ON_CLOSE instead of RemoveFile. r=aklotz, a=sledru
- # [16:43] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/4af342ef9dad - Gijs Kruitbosch - Bug 1116010 - Ensure nsITreeView is already QId when returned. r=peterv, a=sledru
- # [16:43] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/8af51e438e0e - Alexander Surkov - Bug 1123163 - Hit testing broken on Google Search results page. r=yzen, a=sledru
- # [16:43] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/f5ea68b9c6e2 - Florian Quèze - Bug 1106043 - Search icon doesn't show for some open search providers that had an icon on Firefox 33. r=gavin, a=sledru
- # [16:43] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/87a0f1b69040 - Patrick Brosset - Bug 1123936 - Fix intermittent browser_animation_actors_02.js by making the test wait for animationPlayer.ready. r=bgrins, a=test-only
- # [16:43] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/aaaa3b3b7bf8 - Florian Quèze - Bug 1125661 - Intermittent browser_devices_get_user_media.js | expected notification recording-device-events - Got 0, expected 1. r=felipc, a=test-only
- # [16:43] * Joins: milan (milan@moz-i5m.05u.207.66.IP)
- # [16:44] * Joins: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca)
- # [16:44] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [16:44] * Joins: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se)
- # [16:44] * Gijs_away is now known as Gijs
- # [16:46] * Quits: marco (marco@moz-8fde33.retail.telecomitalia.it) (Ping timeout: 121 seconds)
- # [16:47] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/24a8f5ee0ad0 - Milan Sreckovic - Bug 1088833 - A bit of a clean up of warnings, and catch bad draw target in the d3d11 canvas case. r=bschouten, a=sledru
- # [16:47] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/d52554d9a8f0 - Jean-Yves Avenard - Bug 1123202 - Execute abort() when detaching source buffer. r=cajbir, a=sledru
- # [16:47] * Joins: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch)
- # [16:47] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/570a09a6eb68 - Jean-Yves Avenard - Bug 1096089 - MSE: Partially implement Range Removal algorithm. r=mattwoodrow, r=cajbir, a=sledru
- # [16:47] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/c7db1d42b4b6 - Jean-Yves Avenard - Bug 1096089 - Only return end of stream if we're near the known duration. r=mattwoodrow, a=sledru
- # [16:47] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/6fe6b2e779ef - Makoto Kato - Bug 1123966 - Use FILE_FLAG_DELETE_ON_CLOSE instead of RemoveFile. r=aklotz, a=sledru
- # [16:47] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/852ac927b731 - Gijs Kruitbosch - Bug 1116010 - Ensure nsITreeView is already QId when returned. r=peterv, a=sledru
- # [16:47] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/e63d5e1865db - Alexander Surkov - Bug 1123163 - Hit testing broken on Google Search results page. r=yzen, a=sledru
- # [16:48] * davidb|afk is now known as davidb
- # [16:48] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/f91cc6838063 - Florian Quèze - Bug 1106043 - Search icon doesn't show for some open search providers that had an icon on Firefox 33. r=gavin, a=sledru
- # [16:48] * Joins: tantek (tantek@moz-j5mckf.dynamic.fusionbroadband.com)
- # [16:48] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [16:48] * Quits: avaida (andreivaida@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [16:50] * Quits: jhorak (jhorak@moz-16g.ma8.175.213.IP) (Quit: Leaving)
- # [16:50] * Joins: garvank (Garvan@moz-i5m.05u.207.66.IP)
- # [16:50] * Joins: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net)
- # [16:50] * Quits: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it) (Ping timeout: 121 seconds)
- # [16:51] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
- # [16:51] * killer sets mode: +ao dbaron dbaron
- # [16:51] * Joins: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP)
- # [16:52] * Joins: Silne30|offline (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [16:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/3e382ae494a8 - Mike Conley - Bug 1108761 - Make the parent process use a menulist popup for <select>'s in the content process. feedback=dao,r=Enn.
- # [16:53] * Joins: mikeratcliffe1 (Adium@moz-fcp.9v6.12.149.IP)
- # [16:53] * Joins: chmanchester (chmancheste@moz-cbt.jf0.246.96.IP)
- # [16:53] * Quits: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP) (Connection closed)
- # [16:54] * Joins: bgrins (bgrins@moz-achoh7.qnor.1u98.0009.2601.IP)
- # [16:54] * Quits: bbondy (bbondy@moz-e3bbdr.commercial.cgocable.net) (Connection closed)
- # [16:54] * Joins: jimb (user@moz-v58ce4.hfc.comcastbusiness.net)
- # [16:54] * Quits: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca) (Quit: Leaving.)
- # [16:54] * Joins: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net)
- # [16:56] * Joins: bbondy (bbondy@moz-e3bbdr.commercial.cgocable.net)
- # [16:57] * Quits: mikeratcliffe1 (Adium@moz-fcp.9v6.12.149.IP) (Quit: Leaving.)
- # [16:58] * Joins: ehugg (ehugg@moz-63sj5i.wa.comcast.net)
- # [16:58] * Quits: davidb (davidb@moz-i5m.05u.207.66.IP) (Connection closed)
- # [16:58] * Joins: davidb_ (davidb@moz-i5m.05u.207.66.IP)
- # [16:58] * Joins: amoghbl1 (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [16:59] * davidb_ is now known as davidb
- # [16:59] * Quits: mixedpuppy (mixedpuppy@moz-l5h.i2q.170.166.IP) (Client exited)
- # [16:59] * Joins: justindarc (justindarc@moz-lev.v84.203.209.IP)
- # [16:59] * ManoBodyDouble is now known as Mano
- # [16:59] * Joins: dmose (uid42639@moz-ififqa.brockwell.irccloud.com)
- # [16:59] * Joins: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP)
- # [17:00] * kats|away is now known as kats
- # [17:00] * Joins: kapy (kapy@moz-u8r.oc0.68.182.IP)
- # [17:00] * Quits: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP) (Connection closed)
- # [17:00] * Joins: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP)
- # [17:00] * Quits: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl) (Ping timeout: 121 seconds)
- # [17:00] * Joins: paolo_ (paolo@moz-74a.0nt.218.207.IP)
- # [17:00] * Quits: paolo (paolo@moz-74a.0nt.218.207.IP) (Connection closed)
- # [17:00] * Joins: milan_ (milan@moz-i5m.05u.207.66.IP)
- # [17:01] * Silne30|offline is now known as Silne30
- # [17:01] * Quits: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net) (Quit: )
- # [17:01] * Joins: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [17:02] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [17:02] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [17:03] * Quits: milan (milan@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [17:03] * Joins: Jerry_Mac (hshih@moz-qofhr3.kbronet.com.tw)
- # [17:04] * Quits: bbondy (bbondy@moz-e3bbdr.commercial.cgocable.net) (Connection closed)
- # [17:04] * Quits: jrmuizel (jrmuizel@moz-i5m.05u.207.66.IP) (Connection closed)
- # [17:04] * Quits: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP) (Quit: Leaving.)
- # [17:04] * BenWa|email is now known as BenWa
- # [17:05] * Joins: jrmuizel (jrmuizel@moz-i5m.05u.207.66.IP)
- # [17:05] * Quits: ehugg (ehugg@moz-63sj5i.wa.comcast.net) (Client exited)
- # [17:06] * RyanVM is now known as RyanVM|sheriffduty
- # [17:07] * Tomcat|sheriffduty is now known as Tomcat|afk
- # [17:09] * fubar_pto is now known as fubar
- # [17:09] * Quits: amoghbl1 (Thunderbird@moz-9i1.k6o.139.14.IP) (Connection closed)
- # [17:09] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Connection closed)
- # [17:09] * Quits: wolfiR (wolfiR@moz-c7avhu.open-xchange.com) (Ping timeout: 121 seconds)
- # [17:09] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [17:09] * Joins: oliverthor (oliverthor@moz-5i3.51j.125.50.IP)
- # [17:09] * Joins: mixedpuppy (mixedpuppy@moz-l5h.i2q.170.166.IP)
- # [17:10] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [17:10] * Joins: amoghbl1 (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [17:11] * Joins: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl)
- # [17:12] * nthomas is now known as nthomas|away
- # [17:13] * nthomas|away is now known as nthomas
- # [17:14] * Quits: Mano (Mano@moz-5qsh0d.dynamic.barak-online.net) (Quit: )
- # [17:15] * Joins: RattyAway (Jim_diGriz@moz-993.582.72.180.IP)
- # [17:15] <RattyAway> !seen evilpie
- # [17:15] <firebot> I've never seen an 'evilpie', sorry.
- # [17:16] <Ms2ger> glob!
- # [17:16] * Quits: mshal (mshal@moz-pv29mh.fios.verizon.net) (Quit: leaving)
- # [17:16] * Joins: mshal (mshal@moz-pv29mh.fios.verizon.net)
- # [17:16] <RattyAway> evilpie: which version of Firefox did Bug 783829 land on? There is no Target Milestone or tracking flags set
- # [17:16] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [17:17] * Quits: mshal (mshal@moz-pv29mh.fios.verizon.net) (Quit: leaving)
- # [17:17] <RattyAway> I would guess 37
- # [17:17] * glob|away is now known as glob
- # [17:17] * Joins: mshal (mshal@moz-pv29mh.fios.verizon.net)
- # [17:18] * Quits: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net) (Quit: )
- # [17:18] <glob> Ms2ger, yeah, i really should figure out what's going on there :| it isn't throwing any errors, restarting the process fixes it, and it works for $some_time
- # [17:19] * Joins: secretrobotron_ (secretrobot@moz-i5m.05u.207.66.IP)
- # [17:19] * Quits: secretrobotron (secretrobot@moz-i5m.05u.207.66.IP) (Connection closed)
- # [17:21] * Quits: MarcoZ (marco.zehe@moz-74kv4p.dip0.t-ipconnect.de) (Quit: Knackered. See you tomorrow!)
- # [17:22] * Quits: stransky (stransky@moz-16g.ma8.175.213.IP) (Quit: Connection reset by beer)
- # [17:22] * Joins: bwc1 (Adium@moz-7qa.7fp.250.162.IP)
- # [17:22] * Quits: paolo_ (paolo@moz-74a.0nt.218.207.IP) (Connection closed)
- # [17:22] * Joins: paolo_ (paolo@moz-74a.0nt.218.207.IP)
- # [17:24] * Quits: bwc (Adium@moz-7qa.7fp.250.162.IP) (Ping timeout: 121 seconds)
- # [17:24] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
- # [17:24] * Joins: wlach (wlach@moz-psp67f.ckpj.s0pt.0450.2001.IP)
- # [17:25] * Quits: tonymec|away (tonymec@moz-80o.7f0.129.109.IP) (Quit: ChatZilla 0.9.91.1 [Firefox 31.4.0esrpre/20150126000535])
- # [17:26] * Quits: fabrice (fabrice@moz-3oj.il6.198.71.IP) (Ping timeout: 121 seconds)
- # [17:26] * Joins: maxli (maxli@moz-h8kluf.cs.uwaterloo.ca)
- # [17:27] * jimm is now known as jimm-lunch
- # [17:27] * Joins: Waldo (waldo@moz-e9af6p.ujol.1ibb.0101.2620.IP)
- # [17:28] * darkowlzz is now known as darkowlzz|afk
- # [17:28] * whimboo is now known as whimboo|afk
- # [17:29] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
- # [17:29] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [17:29] * Quits: secretrobotron_ (secretrobot@moz-i5m.05u.207.66.IP) (Connection closed)
- # [17:29] * Joins: secretrobotron (secretrobot@moz-i5m.05u.207.66.IP)
- # [17:30] * Quits: rbarnes (rbarnes@moz-s5k7ep.ethz.ch) (A TLS packet with unexpected length was received.)
- # [17:32] * Quits: mixedpuppy (mixedpuppy@moz-l5h.i2q.170.166.IP) (Client exited)
- # [17:32] * Quits: Edgar (Thunderbird@moz-5d4ti0.dynamic.hinet.net) (Client exited)
- # [17:33] * Quits: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch) (Quit: Leaving.)
- # [17:35] * Quits: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net) (Quit: Leaving.)
- # [17:36] * Joins: hunboy_ (hunboy@moz-knt.18s.52.92.IP)
- # [17:36] * Quits: jesup (chatzilla@moz-15n93u.fios.verizon.net) (Ping timeout: 121 seconds)
- # [17:36] * catlee-away is now known as catlee
- # [17:37] * Quits: idwer_ (irc@moz-bp1sle.adsl.online.nl) (A TLS packet with unexpected length was received.)
- # [17:38] * Joins: jesup (chatzilla@moz-15n93u.fios.verizon.net)
- # [17:38] * Quits: hunboy (hunboy@moz-e3f.fu2.52.92.IP) (Ping timeout: 121 seconds)
- # [17:38] * hunboy_ is now known as hunboy
- # [17:39] * Quits: flo-retina (Instantbird@moz-fq5ktd.2500.1rfi.0450.2001.IP) (Ping timeout: 121 seconds)
- # [17:39] * Quits: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp) (Client exited)
- # [17:40] * Quits: Pike (chatzilla@moz-16l6hn.pool.mediaWays.net) (Ping timeout: 121 seconds)
- # [17:40] * Quits: mahdi (mahdi@moz-tqn.ht5.244.151.IP) (Quit: Leaving)
- # [17:40] * Joins: marco (marco@moz-va3mj3.retail.telecomitalia.it)
- # [17:41] * Joins: Pike (chatzilla@moz-16l6hn.pool.mediaWays.net)
- # [17:41] * Joins: flo-retina (Instantbird@moz-r4rcau.2500.1rfi.0450.2001.IP)
- # [17:41] * Joins: IanN (chatzilla@moz-lnh6qk.cable.virginm.net)
- # [17:42] * Joins: mchang (mchang@moz-4b7hgp.res.rr.com)
- # [17:43] * Quits: ddamjano (Instantbird@moz-l2bb60.cfl3.oeer.8388.2a02.IP) (Ping timeout: 121 seconds)
- # [17:43] <bwc1> Does anyone know what is up with all the Mulet M1 failures on try? Not seeing that test running on m-c.
- # [17:43] <froydnj> RyanVM|sheriffduty: ^ don't we hide mulet on non-try or something?
- # [17:43] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [17:44] <Kwan> RattyAway: yeah it's 37. The land date is before the 37 tag https://hg.mozilla.org/mozilla-central/tags, and it was doc'ed on https://developer.mozilla.org/en-US/Firefox/Releases/37
- # [17:45] <RyanVM|sheriffduty> froydnj: correct
- # [17:45] * Quits: milan_ (milan@moz-i5m.05u.207.66.IP) (A TLS packet with unexpected length was received.)
- # [17:45] * Joins: milan (milan@moz-lsp7t5.ckpj.s0pt.0450.2001.IP)
- # [17:46] * philor is now known as philor|away
- # [17:48] * Quits: victorporof (victorporof@moz-9j8.4ed.71.67.IP) (Quit: 💤)
- # [17:48] * darkowlzz|afk is now known as darkowlzz
- # [17:49] * Joins: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com)
- # [17:50] * Quits: bwc1 (Adium@moz-7qa.7fp.250.162.IP) (Quit: Leaving.)
- # [17:50] * terrence-afk is now known as terrence
- # [17:51] * kats is now known as kats-afk
- # [17:51] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [17:52] * Joins: ddamjano (Instantbird@moz-l2bb60.cfl3.oeer.8388.2a02.IP)
- # [17:54] * lightsofapollo is now known as lightsofapollo|sick
- # [17:56] * Quits: jrmuizel (jrmuizel@moz-i5m.05u.207.66.IP) (Connection closed)
- # [17:56] * pbrosset is now known as pbrosset|afk
- # [17:57] * jlund|afk is now known as jlund|buildduty
- # [17:58] * Joins: bent (chatzilla@moz-vici2u.ca.comcast.net)
- # [17:58] * Joins: bdahl (bdahl@moz-k93bgs.2rkg.9kg1.0101.2620.IP)
- # [17:59] * Joins: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch)
- # [18:01] * Joins: Mossop (dtownsend@moz-1gfh2v.fios.verizon.net)
- # [18:01] * nthomas is now known as nthomas|away
- # [18:01] * Quits: tedders1_ (tedders1@moz-soe.0ph.133.1.IP) (Connection closed)
- # [18:02] * Quits: ckitching (ckitching@moz-gem.6oa.49.62.IP) (Ping timeout: 121 seconds)
- # [18:02] * Joins: tedders1 (tedders1@moz-soe.0ph.133.1.IP)
- # [18:02] * Quits: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [18:02] * Quits: tedders1 (tedders1@moz-soe.0ph.133.1.IP) (Connection closed)
- # [18:02] * nthomas|away is now known as nthomas
- # [18:02] * Joins: tedders1 (tedders1@moz-soe.0ph.133.1.IP)
- # [18:02] * Quits: tedders1 (tedders1@moz-soe.0ph.133.1.IP) (Connection closed)
- # [18:03] * Joins: mcomella (mcomella@moz-igsdu8.ca.comcast.net)
- # [18:03] * Joins: tedders1 (tedders1@moz-soe.0ph.133.1.IP)
- # [18:03] * Quits: Dexter (Dexter@moz-4vk3gj.retail.telecomitalia.it) (Quit: Leaving)
- # [18:04] * Joins: ckitching (ckitching@moz-gem.6oa.49.62.IP)
- # [18:05] * gregglind_away is now known as gregglind_90percent
- # [18:05] * Quits: bnicholson (bnicholson@moz-olu.vgl.130.24.IP) (Quit: This computer has gone to sleep)
- # [18:06] * Quits: Teodor_Druta (Thunderbird@moz-ohb.65e.79.82.IP) (Client exited)
- # [18:06] * Joins: victorporof (victorporof@moz-i5m.05u.207.66.IP)
- # [18:06] * Joins: kgrandon (Adium@moz-gkvfu8.mh2d.1ibb.0101.2620.IP)
- # [18:07] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [18:07] * Quits: tedders1 (tedders1@moz-soe.0ph.133.1.IP) (Ping timeout: 121 seconds)
- # [18:08] * Quits: yzen (yzen@moz-i5m.05u.207.66.IP) (Quit: leaving... bye!)
- # [18:08] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [18:10] * Quits: ckitching (ckitching@moz-gem.6oa.49.62.IP) (Ping timeout: 121 seconds)
- # [18:10] * Joins: zerous_ (naveen@moz-kaj.tug.255.84.IP)
- # [18:10] * Joins: Sander (chatzilla@moz-f4egml.direct-adsl.nl)
- # [18:12] * Quits: zerous (naveen@moz-r8k.3m8.148.89.IP) (Ping timeout: 121 seconds)
- # [18:13] * Parts: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se) ("")
- # [18:13] * Joins: ckitching (ckitching@moz-gem.6oa.49.62.IP)
- # [18:13] <RyanVM|sheriffduty> oh sweet, we're going to have Werror bustage on the next uplift
- # [18:13] * Joins: yzen (yzen@moz-i5m.05u.207.66.IP)
- # [18:13] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
- # [18:13] * Quits: davidb (davidb@moz-i5m.05u.207.66.IP) (Connection closed)
- # [18:14] * Joins: davidb (davidb@moz-i5m.05u.207.66.IP)
- # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9df7385ff114 - Jeff Walden - Bug 1112774 - Add a raft of other conversion methods to js/public/Conversions.h past just JS::ToObject. r=jorendorff
- # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e87f763fc29a - Jeff Walden - Bug 1112774 - Remove JS_DoubleTo{Ui,I}nt32 in favor of JS::To{Ui,I}nt32. r=jorendorff
- # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1a3a3bebfe7d - Jeff Walden - Bug 1122286 - Add custom line numbers to every expected error in ecma_6/Comprehensions/error-messages.js. The numbers for three error messages are obviously wrong, but they're (before and after this patch) unchecked, so it's not a problem. These numbers will be checked and fixed in followup patches. r=shu
- # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/373826d57ceb - Jeff Walden - Bug 1122286 - Add correct line numbers to the tests checking for the correct error parsing the iterable in a for-of comprehension. r=shu
- # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8a53a3fa3167 - Jeff Walden - Bug 1122286 - Add proper expected line numbers for all unparenthesized comma expressions as tail expression in comprehensions (that is, |(for (x of []) 1, 2)|). The comma isn't considered part of the expression, so a closing parenthesis is expected where the comma is. And because *all* of these strings have |1, | at the starts of these, ever
- # [18:14] <Gijs> Why does JS have [].find but not Array.find ?
- # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4b0f24d4d069 - Jeff Walden - Bug 1122286 - Correctly detect unparenthesized yield expressions in argument lists when syntax parsing and report a syntax error. r=jorendorff on the first version, f=shu on a version functionally equivalent but with a different paint job
- # [18:15] * davidb is now known as davidb|afk
- # [18:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/dcbfef090900 - Jeff Walden - Bug 1111101 - Add a test. (This was fixed by another bug since its filing, woo.) r=test
- # [18:15] * Joins: ehugg (ehugg@moz-jdn.043.243.216.IP)
- # [18:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1c33995cc288 - Jeff Walden - Bug 949220 - Make all the Intl objects' finalizers tiptoe around an unavoidable, intermediate-state OOM bug during construction of these objects. The underlying issue sadly remains. r=efaust
- # [18:15] * kats-afk is now known as kats
- # [18:16] <RyanVM|sheriffduty> aha, cpeterson's doing!
- # [18:17] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [18:17] * Quits: victorporof (victorporof@moz-i5m.05u.207.66.IP) (Connection closed)
- # [18:17] * Joins: victorporof (victorporof@moz-i5m.05u.207.66.IP)
- # [18:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/edef27f1eb71 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [18:17] * lth is now known as lth|away
- # [18:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/016a4de7ad88 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [18:18] * Joins: ashughes (uid34327@moz-idmt9q.ealing.irccloud.com)
- # [18:20] * Quits: jimb (user@moz-v58ce4.hfc.comcastbusiness.net) (Ping timeout: 121 seconds)
- # [18:21] * Joins: rmcdougall (Adium@moz-7lg.3pk.170.166.IP)
- # [18:21] * Joins: bajaj (bajaj_afk@moz-nq95vk.mh2d.1ibb.0101.2620.IP)
- # [18:23] * Joins: ehsan (ehsan@moz-i5m.05u.207.66.IP)
- # [18:23] * killer sets mode: +o ehsan
- # [18:24] * bc is now known as bc|lunch
- # [18:26] * Joins: m_gol (m_gol@moz-eru58u.static.chello.pl)
- # [18:28] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [18:29] * Quits: victorporof (victorporof@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [18:29] * Quits: VarCat (VarCat@moz-ohb.65e.79.82.IP) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [18:29] * Quits: m_gol (m_gol@moz-eru58u.static.chello.pl) (Connection closed)
- # [18:29] * Joins: m_gol (m_gol@moz-eru58u.static.chello.pl)
- # [18:30] * Quits: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl) (Quit: This computer has gone to sleep)
- # [18:30] * Joins: jduell (jduell@moz-qtvn91.tukw.qwest.net)
- # [18:31] * Joins: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl)
- # [18:32] * Quits: ckitching (ckitching@moz-gem.6oa.49.62.IP) (A TLS packet with unexpected length was received.)
- # [18:32] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [18:33] * Joins: fabrice (fabrice@moz-8fv06j.ujol.1ibb.0101.2620.IP)
- # [18:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/53a300073430 - Nikhil Marathe - Bug 1113627 - Refactor lifecycle event dispatching and handling. r=baku,bz
- # [18:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/56339532dd96 - Nikhil Marathe - Bug 1113631 - Remove registration when installation failure occurs. Fixes spec issue #547. r=baku
- # [18:34] * Quits: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl) (Quit: This computer has gone to sleep)
- # [18:34] * Quits: stormi (samuel@moz-t5b.q89.218.46.IP) (Quit: Konversation terminated!)
- # [18:34] * Joins: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl)
- # [18:35] * Joins: gerv (Instantbird@moz-ppf2jl.81.in-addr.arpa)
- # [18:35] * Joins: squeakytoy (squeakytoy@moz-2n0365.se.alltele.net)
- # [18:35] * Quits: kapy (kapy@moz-u8r.oc0.68.182.IP) (Quit: )
- # [18:36] * justindarc is now known as justindarc|brb
- # [18:36] * Joins: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com)
- # [18:36] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [18:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4056ebeecf61 - Bobby Holley - Bug 1126088 - Fallibly allocate MP4Stream CacheBlocks. r=jya,r=njn
- # [18:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c64734310977 - Marco Bonardo - Bug 1117072 - updatePlaces can mistakenly overwrite typed and hidden attributes of a page. r=ttaubert
- # [18:38] * Quits: flo-retina (Instantbird@moz-r4rcau.2500.1rfi.0450.2001.IP) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [18:38] * Joins: victorporof (victorporof@moz-i5m.05u.207.66.IP)
- # [18:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/237edb7e4ae5 - Nikhil Marathe - Bug 1113957 - ServiceWorker unregistration uses job queue. r=baku
- # [18:38] * kats is now known as kats-afk
- # [18:39] * Joins: bnicholson (bnicholson@moz-jhtcsb.ujol.1ibb.0101.2620.IP)
- # [18:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/186127d71076 - Ehsan Akhgari - Bug 1126295 - Move TestAtoms.cpp to gtest and enable it; r=froydnj
- # [18:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c61a87a20888 - Ehsan Akhgari - Bug 1126301 - Move TestUTF.cpp to gtest and enable it; r=froydnj
- # [18:41] * baku is now known as baku|away
- # [18:42] <Ms2ger> ehsan, getting there, I see
- # [18:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e3d924b6797f - Nikhil Marathe - Bug 1081293 - Silently ignore lack of ServiceWorkerManager when shutting down ServiceWorkerContainer. r=baku
- # [18:43] <@ehsan> Ms2ger: I'm going out of my way to do this, fwiw
- # [18:43] * Quits: ehugg (ehugg@moz-jdn.043.243.216.IP) (Client exited)
- # [18:43] <Ms2ger> ehsan, everything to take you out of the way of editor? ;)
- # [18:43] * Quits: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net) (Client exited)
- # [18:44] <@ehsan> Ms2ger: you should read glandium's blog post
- # [18:44] <Ms2ger> Oh
- # [18:44] * Quits: maxli (maxli@moz-h8kluf.cs.uwaterloo.ca) (Quit: Leaving.)
- # [18:44] <Ms2ger> ehsan, I meant just getting through the disabled tests :)
- # [18:44] * Joins: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net)
- # [18:45] <@ehsan> I have been doing that for some time
- # [18:45] <@ehsan> jgraham: why would a wpt test only fail on linux?
- # [18:45] <Ms2ger> Yep, and it's great
- # [18:45] * bz_away is now known as bz
- # [18:45] <@ehsan> jgraham: context: https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=180e7905987e
- # [18:46] * Quits: masayuki (Thunderbird@moz-1gqv2s.zaq.ne.jp) (Client exited)
- # [18:46] <Ms2ger> Linux-only bug?
- # [18:46] <@ehsan> wtf
- # [18:46] <@ehsan> jgraham: we only run these tests on Linux?!
- # [18:46] * Joins: masayuki (Thunderbird@moz-1gqv2s.zaq.ne.jp)
- # [18:46] <Ms2ger> Also windows
- # [18:46] <jgraham> ehsan: No?
- # [18:46] <bz> ehsan: you mean wpt?
- # [18:46] <jviereck> mak: hi there, do you have some time to chat about bug 1124238? Especially I am not sure what's the current state os the new UnifiedCompletion work is and if it will fix the regression I have introduced or if I should start looking into fixing the regression given the current codebase
- # [18:46] <@ehsan> yes, wpt
- # [18:46] <bz> ehsan: we only run them on opt builds, in case that matters in your case...
- # [18:46] * Joins: mwobensmith (mwobensmith@moz-dae54t.2rkg.9kg1.0101.2620.IP)
- # [18:46] * glob is now known as glob|away
- # [18:47] <@ehsan> how does one run a single wpt test locally?
- # [18:47] <mak> jviereck: I think Unfocused has recently restarted the work on unified. the current status is that we need to support both old and new component for now :(
- # [18:47] <jgraham> ehsan: Run with --include=/url/of/test
- # [18:47] * davidb|afk is now known as davidb
- # [18:47] <jgraham> mach web-platform-tests --include /html/dom/documents/resource-metadata-management/document-cookie.html
- # [18:48] * flod is now known as flod|afk
- # [18:48] <jviereck> mak: okay, thanks for the update! I am busy the next few days but will hope to have a look at what is causing the regression over the weekend.
- # [18:48] * @ehsan fights mach
- # [18:48] * Joins: Zupoman (mistrzmag@moz-qc3.esk.224.91.IP)
- # [18:49] * froydnj watches ehsan break the sound barrier
- # [18:49] <jgraham> Have we stopped running Windows opt tests on all inbound pushes?
- # [18:49] <jgraham> Callek: ^
- # [18:49] <Ms2ger> Coalescing
- # [18:49] <Ms2ger> I presume
- # [18:49] <@ehsan> froydnj: lol, I totally forgot the other (real?) meaning of mach!
- # [18:49] <@ehsan> froydnj++
- # [18:49] <Callek> jgraham: ummm, not intentionally for sure
- # [18:49] <Callek> jgraham: let me look
- # [18:49] <@ehsan> bz: why opt only btw?
- # [18:49] <Ms2ger> The real meaning is "do" ;)
- # [18:49] <Callek> coop|buildduty: jlund|buildduty: fyi
- # [18:50] <Ms2ger> ehsan, they're not as stable on debug
- # [18:50] * Joins: juanb (jbecerra@moz-cfhap5.mtv2.mozilla.com)
- # [18:50] <Ms2ger> ehsan, and we've got only one person working on them
- # [18:50] * Joins: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net)
- # [18:50] <mak> jviereck: off-hand, I think we buffer the last completed value, but when we match a keyword, we don't return any result. so basically, if you type bu -> bugzilla.com, but once you type "bug" and you have a keyword on that, we should not keep the buffered text. I think the search provider somehow notifies that (not setting the default index?) but we don't
- # [18:50] <mak> handle that.
- # [18:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cb8cbda065c6 - Daniel Holbert - Bug 1125632 followup: Mark remaining CollectReports impls in nsMemoryReporterManager.cpp and SystemMemoryReporter.cpp as MOZ_OVERRIDE.
- # [18:50] * Joins: jet (uid49872@moz-oqb09r.uxbridge.irccloud.com)
- # [18:50] * sheppy is now known as sheppy-offline
- # [18:51] <mak> jviereck: just what I thought, I didn't verify anything but seems to make sense
- # [18:51] * Quits: hallvors (uid23371@moz-uj1g6s.highgate.irccloud.com) (Quit: Connection closed for inactivity)
- # [18:51] <jviereck> mak: if you say the new unified search and the current implementation are developed separate - have you thought about trying to build something like a new BaseSimpleComplete, that can be used for the current autocomplete implementation and then new unified one? Not sure if this is doable at all, was just thinking about it the other day
- # [18:52] * Ms2ger throws a snowball at bsmedberg
- # [18:52] <jgraham> Yeah the reason in short is https://treeherder.mozilla.org/ui/#/jobs?repo=cedar&filter-searchStr=web-platform-tests debug
- # [18:52] <jviereck> mak: thank! That might give me already a good idea what I should look for :)
- # [18:52] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
- # [18:52] * Joins: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net)
- # [18:52] <jgraham> https://treeherder.mozilla.org/ui/#/jobs?repo=cedar&filter-searchStr=web-platform-tests%20debug
- # [18:52] <@bsmedberg> Ms2ger: at least kids are in school today.
- # [18:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/b502cae6cf9b - Alexander Dimitrov - Bug 1126259 - Removal of the unload event handler in browser-data-submission-info-bar.js is broken and can go away. r=dao
- # [18:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d56201330a5b - Tim Nguyen - Bug 1105704 - Fix UI issues with SSL error reporting. r=dao
- # [18:52] <mak> jviereck: the problem is that the old providers are 2, the new provider is one. sure somehow we could wrap the new one in the old one, but we were hoping to have it ready sooner...
- # [18:53] <froydnj> bsmedberg: otherwise they would be throwing snowballs at you?
- # [18:53] <RyanVM|sheriffduty> ehsan: https://treeherder.mozilla.org/ui/logviewer.html#?job_id=5975113&repo=mozilla-inbound
- # [18:53] <RyanVM|sheriffduty> ehsan: *whew* was beginning to worry you were going to break your inbound bustage streak for a second there today
- # [18:54] <Ms2ger> froydnj, he at them, clearly
- # [18:54] <@ehsan> RyanVM|sheriffduty: I will fix it, just a sec
- # [18:54] * Quits: coop|buildduty (coop@moz-848348.cpe.pppoe.ca) (Ping timeout: 121 seconds)
- # [18:54] <Callek> RyanVM|sheriffduty: soooo running from jgraham's ping about inbound windows opt tests, are you seeing backlog thats beyond normal?
- # [18:54] <Callek> RyanVM|sheriffduty: the pendings do look a bit up there, but nothing out of the ordinary at a glance
- # [18:54] * Joins: kgrandon1 (Adium@moz-4hkec1.mh2d.1ibb.0101.2620.IP)
- # [18:54] <RyanVM|sheriffduty> we had a lot of build backlog due to disconnected slaves after last night's infra event
- # [18:55] * Joins: karlt (karl@moz-gnsko2.telstraclear.net)
- # [18:55] * Joins: paolo__ (paolo@moz-74a.0nt.218.207.IP)
- # [18:55] * Quits: paolo_ (paolo@moz-74a.0nt.218.207.IP) (Connection closed)
- # [18:55] <RyanVM|sheriffduty> so could be a bunch finishing around the same time and coalescing?
- # [18:55] <froydnj> ooo, an "event"...was there confetti?
- # [18:55] <RyanVM|sheriffduty> otherwise, zombie test slaves?
- # [18:55] <Callek> RyanVM|sheriffduty: ahhhh, ok
- # [18:55] * paolo__ is now known as paolo
- # [18:55] <jgraham> Callek: No, I just noticed that https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=180e7905987e didn't seem to have any unit tests on windows
- # [18:55] <jlund|buildduty> there are a lot of close pushes amongst fx-team, m-i
- # [18:55] <Callek> RyanVM|sheriffduty: so far test slaves look pretty active atm
- # [18:55] * Quits: paolo (paolo@moz-74a.0nt.218.207.IP) (Quit: Konversation terminated!)
- # [18:55] <RyanVM|sheriffduty> jlund|buildduty: Callek: I think coop already double-checked for any other stuck slaves too
- # [18:55] <jgraham> Oh, sorry that was an answer to a different question
- # [18:55] * Joins: paolo (paolo@moz-74a.0nt.218.207.IP)
- # [18:56] * Joins: coop (coop@moz-phanvq.cpe.pppoe.ca)
- # [18:56] <@ehsan> RyanVM|sheriffduty: fixed
- # [18:56] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [18:56] <RyanVM|sheriffduty> ehsan: maybe tomorrow the streak can end ;)
- # [18:57] <Waldo> Gijs: [].find is specified; all the Array.* extras that we have are totally non-standard and really should either be removed, or standardized
- # [18:57] * Quits: @smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
- # [18:57] <@ehsan> RyanVM|sheriffduty: I won't be around after Thursday, so you'll be all good
- # [18:57] <RyanVM|sheriffduty> \m/
- # [18:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4aecd46afeb1 - Ehsan Akhgari - Bug 1126301 follow-up: Fix a signed/unsigned comparison fatal warning, landed on a CLOSED TREE
- # [18:57] * jcranmer|away is now known as jcranmer
- # [18:57] * Quits: hurley (hurley@moz-cti17f.ieqc.6fdm.3c03.2600.IP) (A TLS packet with unexpected length was received.)
- # [18:57] * Joins: Jesse (jruderman@moz-pqc1f5.ca.comcast.net)
- # [18:57] * Quits: kgrandon (Adium@moz-gkvfu8.mh2d.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [18:58] <@ehsan> jgraham: how do I run a wpt test under the debugger?
- # [18:58] <Waldo> ehsan: ? what's this about after Thursday?
- # [18:58] <@ehsan> Waldo: I'm going on vacation :)
- # [18:58] <Waldo> ah!
- # [18:58] * Joins: rbarnes (rbarnes@moz-pe71cj.cust.bluewin.ch)
- # [18:58] * Waldo panicked for a second
- # [18:58] <jgraham> ehsan: In theory the same way you do for mochitest. You probably want --pause-on-unexpected too
- # [18:58] <@ehsan> Waldo: heh :)
- # [18:58] <RyanVM|sheriffduty> Callek: anyway, I see a lot of coalescing on win64 form the looks of it, so yeah, probably just a lot of builds starting/finishing at the same time
- # [18:58] <@ehsan> jgraham: --debugger doesn't work
- # [18:58] <Waldo> ehsan: I'll look for you on IRC on Saturday, then
- # [18:58] <Ms2ger> bsmedberg, also, there's built-in menu item to disable css on a page; I assume you know that, though
- # [18:58] <jgraham> ehsan: What happens?
- # [18:59] <@ehsan> Waldo: I will be climbing a mountain, so chances are you won't find me on IRC ;)
- # [18:59] * Joins: hurley (hurley@moz-cti17f.ieqc.6fdm.3c03.2600.IP)
- # [18:59] <Waldo> ehsan: ah, pulling a me-vacation
- # [18:59] <@bsmedberg> Ms2ger: I didn't, since I forgot that the non-hamburger menu existed
- # [18:59] <@ehsan> jgraham: hard to say, some log messages :)
- # [18:59] <Waldo> ehsan: won't roaming work?
- # [18:59] <Callek> RyanVM|sheriffduty: ok, thanks -- let us know if theres any underlying releng issues we need to poke at, I'm going to leave this one at "working as currently intended"
- # [18:59] * Quits: Rik (rik@moz-6v5.3nd.202.89.IP) (A TLS packet with unexpected length was received.)
- # [18:59] <jgraham> Waldo: But not a very safe vacation ;)
- # [18:59] <@bsmedberg> Ms2ger: also it appears to not affect printing, which is what I really cared about
- # [18:59] <Waldo> jgraham: those the best kinds
- # [18:59] * Joins: Rik (rik@moz-6v5.3nd.202.89.IP)
- # [18:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/75fa71159fdc - Jarda - Bug 1101356 arm part - Arm Simulator: Support for calling functions that have three and four double parameters. r=mjrosenb
- # [18:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/18bf5dc2cd4c - Jarda - Bug 1101356 mips part - MIPS Simulator: Support for calling functions that have three and four double parameters. r=rankov
- # [18:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/97692c7152d6 - Jarda - Bug 1101356 - MHypot Instruction supports up to four arguments. r=nbp
- # [18:59] <@ehsan> LOG: Thread-TestrunnerManager-1 CRITICAL Test runner failed to initialise correctly; shutting down
- # [18:59] <Ms2ger> bsmedberg, ah, good point
- # [18:59] <@ehsan> jgraham: ^
- # [18:59] * Quits: tromey (tromey@moz-qvk910.hlrn.qwest.net) (A TLS packet with unexpected length was received.)
- # [18:59] <@ehsan> Waldo: not without a phone!
- # [19:00] <jgraham> Waldo: Not if you want ehsan back
- # [19:00] * Quits: Rik (rik@moz-6v5.3nd.202.89.IP) (Connection closed)
- # [19:00] <Waldo> ehsan: ooh, that's even the bestest kind
- # [19:00] <jgraham> ehsan: OK, I'll have a look. I thought that worked, but I don't exactly use the feature much
- # [19:00] * Quits: kgrandon1 (Adium@moz-4hkec1.mh2d.1ibb.0101.2620.IP) (Quit: Leaving.)
- # [19:00] * Joins: Rik (rik@moz-6v5.3nd.202.89.IP)
- # [19:00] * Joins: spohl1 (Adium@moz-p55.olo.156.104.IP)
- # [19:00] * Joins: ehugg (ehugg@moz-qad.223.170.166.IP)
- # [19:00] <@ehsan> jgraham: here is my command line:
- # [19:00] * Joins: mats (chatzilla@moz-6svtv8.priv.bahnhof.se)
- # [19:00] <@ehsan> jgraham: ./mach web-platform-tests --include /html/dom/documents/resource-metadata-management/document-cookie.html --debugger=lldb
- # [19:01] <Waldo> jgraham: gotta break a few eggs to make an omelet
- # [19:01] * Joins: kgrandon (Adium@moz-m1f5ij.mh2d.1ibb.0101.2620.IP)
- # [19:01] * coop is now known as coop|buildduty
- # [19:01] * Joins: florent (Thunderbird@moz-5r3qcg.abo.wanadoo.fr)
- # [19:01] * Quits: spohl (Adium@moz-i90.olo.156.104.IP) (Ping timeout: 121 seconds)
- # [19:01] * flod|afk is now known as flod
- # [19:02] <bz> anyone here familiar with the treeherder JS?
- # [19:02] <RyanVM|sheriffduty> bz: the people in #treeherder probably ;)
- # [19:02] <bz> RyanVM|sheriffduty: excellent, thanks
- # [19:03] <@ehsan> jgraham: bah, it even won't startup without --debugger
- # [19:04] * nthomas is now known as nthomas|away
- # [19:04] <@ehsan> "Assertion failure: sCallbackCount == 3"
- # [19:04] <jgraham> ehsan: Which os?
- # [19:04] <@ehsan> jgraham: mac
- # [19:04] * justindarc|brb is now known as justindarc
- # [19:04] <@ehsan> jgraham: I'll try on Linux for now...
- # [19:04] <jgraham> Hmm, that is expected to work
- # [19:04] * Quits: spohl1 (Adium@moz-p55.olo.156.104.IP) (Quit: Leaving.)
- # [19:04] * Joins: spohl (Adium@moz-p55.olo.156.104.IP)
- # [19:05] * Joins: ckitching (ckitching@moz-cbggqe.cable.virginm.net)
- # [19:05] <jgraham> I mean it works on OSX in automation
- # [19:05] * nthomas|away is now known as nthomas
- # [19:07] <jgraham> (and seems to work on Linux under gdb for me)
- # [19:07] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [19:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a8339212a52e - Sotaro Ikeda - Bug 1125913 - Use GraphicBuffer::lockAsync() on gonk LL r=nical
- # [19:07] * Quits: bnicholson (bnicholson@moz-jhtcsb.ujol.1ibb.0101.2620.IP) (Quit: Leaving)
- # [19:08] <@ehsan> jgraham: it doesn't work on linux either
- # [19:08] <@ehsan> jgraham: really?
- # [19:08] * Joins: dark-knight (dark-knight@moz-r1assk.readme.bbln.org)
- # [19:08] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
- # [19:09] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [19:09] * jlund|buildduty is now known as jlund|brb
- # [19:09] <@ehsan> jgraham: for me it runs firefox under gdb and when I say r, it just restarts firefox under gdb it seems
- # [19:09] * darkowlzz is now known as darkowlzz|afk
- # [19:10] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [19:10] * darkowlzz|afk is now known as darkowlzz
- # [19:10] * Joins: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP)
- # [19:10] * @ehsan resorts to try to catch firefox under gdb at the right time :(
- # [19:11] * Quits: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP) (Quit: Leaving.)
- # [19:11] * Joins: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP)
- # [19:11] * Quits: mcomella (mcomella@moz-igsdu8.ca.comcast.net) (Quit: Leaving.)
- # [19:11] <jcranmer> bz: ping
- # [19:12] <bz> jcranmer: ack
- # [19:12] <jcranmer> bz: any eta on my review request? I'm kind of hoping to see it land this cycle
- # [19:12] * Quits: bgrins (bgrins@moz-achoh7.qnor.1u98.0009.2601.IP) (Quit: Leaving.)
- # [19:12] <bz> jcranmer: I need to sit down and sort through it... I was also sick most of last week.
- # [19:12] <bz> jcranmer: and part of this week.
- # [19:13] <bz> jcranmer: I'll try to get to it by end of this week
- # [19:13] <jcranmer> bz: okay, thanks
- # [19:13] <jgraham> ehsan: Well it's very possible that the harness isn't doing what you want in order to usefully debug a test. But I'm not sure what you want the behaviour to be
- # [19:13] * Joins: azakai (alon@moz-497115.ujol.1ibb.0101.2620.IP)
- # [19:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c82fb962499a - Byron Campen [:bwc] - Bug 1126036: Queue runnables for starting gathering and checking in PCMedia until the proxy lookup is complete. r=mt
- # [19:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9028edd5e752 - Byron Campen [:bwc] - Bug 1099414: Use RefPtr logic instead of delete when nr_socket_local_create fails. r=ekr
- # [19:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d67a6612282c - Byron Campen [:bwc] - Bug 1099414: Ensure that NrSocketIpc is destroyed on STS, for consistency. r=ekr
- # [19:13] <@ehsan> jgraham: I want to be able to attach gdb and set a breakpoint before the harness starts
- # [19:13] <@ehsan> jgraham: exactly like every other test harness we have
- # [19:14] * kats-afk is now known as kats
- # [19:14] <@ehsan> jgraham: oh, do we run firefox more than one time?
- # [19:14] <Ms2ger> Yeah
- # [19:14] <jgraham> Well by default it only runs one process at a time
- # [19:14] * Joins: bnicholson (bnicholson@moz-cfhap5.mtv2.mozilla.com)
- # [19:15] <@ehsan> so that's what is busted I think
- # [19:15] * darkowlzz is now known as darkowlzz|afk
- # [19:15] <jgraham> But after a test that gets an unexpected result it will restart firefox
- # [19:15] <@ehsan> we need to attach gdb to the firefox that runs the tests
- # [19:15] * Quits: Jerry_Mac (hshih@moz-qofhr3.kbronet.com.tw) (Quit: Leaving)
- # [19:15] <@ehsan> not to the ones doing unrelated things
- # [19:15] * Quits: tzimmermann (tzimmermann@moz-6ojegm.pools.vodafone-ip.de) (Quit: Ex-Chat)
- # [19:15] <jgraham> That doesn't sound like the problem
- # [19:15] * Joins: milan_ (milan@moz-i5m.05u.207.66.IP)
- # [19:16] * Quits: milan_ (milan@moz-i5m.05u.207.66.IP) (A TLS packet with unexpected length was received.)
- # [19:16] <@ehsan> jgraham: well, we do attempt to attach gdb to the first firefox process as far as I can tell
- # [19:16] <@ehsan> and that is _not_ what runs the tests
- # [19:16] * Quits: dark-knight (dark-knight@moz-r1assk.readme.bbln.org) (A TLS packet with unexpected length was received.)
- # [19:16] * lmandel_afk is now known as lmandel
- # [19:16] * Joins: milan_ (milan@moz-i5m.05u.207.66.IP)
- # [19:16] * Joins: Bas (chatzilla@moz-bbdigr.ftth.concepts.nl)
- # [19:16] * Quits: rmcdougall (Adium@moz-7lg.3pk.170.166.IP) (Quit: Leaving.)
- # [19:17] <jgraham> So I think the problem here is just that if firefox doesn't respond quickly enough it assumed that something bad happened
- # [19:17] * Quits: emtwo (Adium@moz-8bdn4c.fnjk.s0pt.0450.2001.IP) (Quit: Leaving.)
- # [19:17] <jgraham> then it retries with a new firefox.
- # [19:17] <@ehsan> jgraham: oh yeah
- # [19:17] <@ehsan> jgraham: can we opt out of that?
- # [19:17] <jgraham> If the debugger is attached it probably shouldn't do that
- # [19:17] <jgraham> Yeah, that seems plausible
- # [19:18] <jgraham> File a bug, but I will look now
- # [19:18] <@ehsan> jgraham: sure, but I mean, can you tell me how to do that *now*?
- # [19:18] * Quits: jdm (jdm@moz-74a.0nt.218.207.IP) (Quit: )
- # [19:18] <@ehsan> I need to debug this thing first
- # [19:18] * Quits: milan (milan@moz-lsp7t5.ckpj.s0pt.0450.2001.IP) (Ping timeout: 121 seconds)
- # [19:19] <@ehsan> my infinite loop trick didn't work either because firefox is killed by the harness :(
- # [19:19] * h4writer is now known as h4writer|brb
- # [19:19] * jimm-lunch is now known as jimm
- # [19:19] * chmanchester is now known as chmanchester|afk
- # [19:19] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [19:19] <Ms2ger> --with-timeout-modifier 1000?
- # [19:20] * Joins: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it)
- # [19:20] * nsm|away is now known as nsm
- # [19:20] <jgraham> ehsan: In tsting/web-platform/harness/wptrunner/executors/marionette.py try changing the wait_for_port(60) into something much higher?
- # [19:20] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [19:20] * Fallen|away is now known as Fallen
- # [19:20] <@ehsan> Ms2ger: it says the option is unrecognized
- # [19:21] <jgraham> *executormarionette.py
- # [19:21] * Joins: gandalf (zbraniecki@moz-gtc1n1.ca.comcast.net)
- # [19:21] * Joins: sicking (sicking@moz-l8ebtf.sfo1.mozilla.com)
- # [19:22] * Quits: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net) (Client exited)
- # [19:22] * Joins: sicking_ (sicking@moz-u3dg2t.sfo1.mozilla.com)
- # [19:23] * Quits: sicking_ (sicking@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [19:23] <@ehsan> jgraham: didn't work :(
- # [19:23] * Quits: rbarnes (rbarnes@moz-pe71cj.cust.bluewin.ch) (A TLS packet with unexpected length was received.)
- # [19:23] <@ehsan> jgraham: anything else I can try?
- # [19:23] <@ehsan> (btw filed https://bugzilla.mozilla.org/show_bug.cgi?id=1126400)_
- # [19:23] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [19:25] * Quits: squib (squib@moz-napvi8.wi.charter.com) (Quit: Leaving)
- # [19:25] * Quits: sicking (sicking@moz-l8ebtf.sfo1.mozilla.com) (Ping timeout: 121 seconds)
- # [19:26] * @ehsan gives up and tries to run the test under normal firefox
- # [19:26] * Joins: rbarnes (rbarnes@moz-pe71cj.cust.bluewin.ch)
- # [19:26] * Joins: rmcdougall (Adium@moz-f2h.mvj.38.216.IP)
- # [19:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/af9f4a6a7b78 - Ehsan Akhgari - Bug 1119503 - Part 1: Determine whether an element is a block element based on the style, not the tag; r=bzbarsky
- # [19:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ff9012ee428a - Ehsan Akhgari - Bug 1119503 - Part 2: Insert a line break between preformatted block boundaries when creating raw output; r=bzbarsky
- # [19:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8c2129ff8897 - Ehsan Akhgari - Bug 1119503 - Part 3: Change test_aboutmemory.xul in order to not expect a newline at the very end of the copied text; r=njn
- # [19:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5ccef8ecf319 - Ehsan Akhgari - Bug 1119503 - Part 4: Add a test for serialization of block elements without style information; r=bzbarsky
- # [19:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/05ee3ae06643 - Brian Grinstead - Bug 1119503 - Part 5: Make children of message-body class be preformatted to fix copied text of line number showing up on new line; r=past
- # [19:28] * bz is now known as bz_away
- # [19:28] * Quits: espadrine (tyl@moz-qfr4fg.abo.wanadoo.fr) (Ping timeout: 121 seconds)
- # [19:28] * Quits: ferjm (textual@moz-6tov0c.user.ono.com) (Quit: Textual IRC Client: www.textualapp.com)
- # [19:29] <jgraham> ehsan: I think I will have to look at this closer.
- # [19:29] <@ehsan> ok
- # [19:29] * Quits: rmcdougall (Adium@moz-f2h.mvj.38.216.IP) (Quit: Leaving.)
- # [19:29] <@ehsan> jgraham: I'm not blocked on this that badly, thankfully the test is very simple
- # [19:30] <jgraham> OK
- # [19:30] * Quits: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch) (Quit: Leaving.)
- # [19:31] * Quits: xeonchen (xeon@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [19:31] <@ehsan> jgraham: one question though, the thing that I am debugging is an unexpected pass... if I decide that my code changes are correct, is it enough to just rm http://mxr.mozilla.org/mozilla-central/source/testing/web-platform/meta/html/dom/documents/resource-metadata-management/document-cookie.html.ini?
- # [19:32] * Quits: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP) (Quit: Leaving.)
- # [19:32] * Joins: squib (squib@moz-napvi8.wi.charter.com)
- # [19:32] <Ms2ger> ehsan, correct
- # [19:33] <@ehsan> thanks
- # [19:34] * Joins: xeonchen (xeon@moz-aj9ejj.HINET-IP.hinet.net)
- # [19:35] * Quits: ckitching (ckitching@moz-cbggqe.cable.virginm.net) (Ping timeout: 121 seconds)
- # [19:35] * Joins: emtwo (Adium@moz-i5m.05u.207.66.IP)
- # [19:37] * Joins: bgrins (bgrins@moz-hm1q5h.ujol.1ibb.0101.2620.IP)
- # [19:37] * bc|lunch is now known as bc
- # [19:37] * Joins: jviereck (Adium@moz-cfkrsr.dclient.hispeed.ch)
- # [19:38] <@ehsan> jgraham: the mac wpt runner not even starting up was a red herring, something busted in my build
- # [19:39] * jlund|brb is now known as jlund|buildduty
- # [19:39] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [19:40] <jgraham> ehsan: Ah, that's good to know :)
- # [19:41] <RyanVM|sheriffduty> ehsan: next round - https://treeherder.mozilla.org/ui/logviewer.html#?job_id=5975637&repo=mozilla-inbound
- # [19:41] * RyanVM|sheriffduty should just start queuing up backouts every time ehsan pushes
- # [19:42] <jorendorff> Is there an hg command to get the URL that corresponds to a particular alias, after mozautomation/repository.py?
- # [19:42] <jorendorff> it seems like the way firefoxtree implements those aliases is ... a bit of a hack
- # [19:42] * Joins: givanica (Thunderbird@moz-98k.ff2.121.86.IP)
- # [19:42] <jorendorff> i guess it's clear enough just looking at the source code though
- # [19:42] <@ehsan> RyanVM|sheriffduty: I will back out
- # [19:42] <RyanVM|sheriffduty> ty
- # [19:42] * Quits: spohl (Adium@moz-p55.olo.156.104.IP) (Quit: Leaving.)
- # [19:43] * Joins: spohl (Adium@moz-p55.olo.156.104.IP)
- # [19:43] * davidb is now known as davidb|afk
- # [19:43] * Joins: rmcdougall (Adium@moz-f2h.mvj.38.216.IP)
- # [19:43] * Quits: yzen (yzen@moz-i5m.05u.207.66.IP) (Connection closed)
- # [19:43] * Joins: yzen (yzen@moz-i5m.05u.207.66.IP)
- # [19:44] <jorendorff> gps: http://hg.stage.mozaws.net/gecko used to be a unified repo; is there anything like that anywhere anymore?
- # [19:44] <@ehsan> RyanVM|sheriffduty: done
- # [19:44] <jorendorff> it'd be handy right now
- # [19:45] <@ehsan> jorendorff: you can just hg pull other repos in your local clone, fwiw
- # [19:45] <@ehsan> and set up the bookmarks and whatnot
- # [19:45] <jorendorff> hg pull all
- # [19:45] <jorendorff> "you can just build your own"
- # [19:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/00afd1e64aa0 - Ehsan Akhgari - Backed out 2 changesets (bug 1126301) on a CLOSED TREE because the test was apparently busted on some platforms
- # [19:45] <jorendorff> there should be an open source advice column
- # [19:46] * Quits: karlt (karl@moz-gnsko2.telstraclear.net) (Ping timeout: 121 seconds)
- # [19:46] * Joins: mcomella (mcomella@moz-ps8n7n.2rkg.9kg1.0101.2620.IP)
- # [19:46] * Quits: Jesse (jruderman@moz-pqc1f5.ca.comcast.net) (Client exited)
- # [19:46] <gps> jorendorff: http://hg.gregoryszorc.com/gecko
- # [19:46] <@ehsan> RyanVM|sheriffduty: damn, the other test is also busted on windows, backing out
- # [19:47] * Quits: jacek (jacek@moz-hbt3j4.psi.wroc.pl) (Quit: Konversation terminated!)
- # [19:47] <@ehsan> jorendorff: I meant to say that it's super easy
- # [19:47] <jorendorff> gps: thanks!
- # [19:47] <gps> jorendorff: https://mozilla-version-control-tools.readthedocs.org/en/latest/hgmozilla/firefoxtree.html explains how to do it locally
- # [19:47] <gps> that method is much saner
- # [19:47] <gps> downside is you have to pull from N repos :/
- # [19:47] <jorendorff> i'm not going to clone, i just want an answer, so i'm going to use `hg out URL`
- # [19:47] <Ms2ger> gps, mach command to set it up :)
- # [19:48] <jorendorff> gps: it'd be pretty cool if firefox tree also hacked `hg paths`
- # [19:48] <jorendorff> *firefoxtree
- # [19:48] <gps> hg 3.3 is implementing a feature to enable proper remote refs
- # [19:48] * Quits: milan_ (milan@moz-i5m.05u.207.66.IP) (Quit: )
- # [19:48] <gps> there is already a proof-of-concept extension
- # [19:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d0116a0ee30d - Ehsan Akhgari - Backed out changeset 186127d71076 (bug 1126295) because of test bustage on Windows on a CLOSED TREE
- # [19:48] <@ehsan> froydnj: can you please find someone to fix these two tests?
- # [19:48] <@ehsan> froydnj: I won't have time to do it myself
- # [19:49] <jorendorff> gps: nice. all git's advantages over hg are things git has that hg doesn't have, and all hg's advantages over git are also things git has that hg doesn't have
- # [19:49] <jorendorff> so eventually hg will be quite nice
- # [19:49] <froydnj> ehsan: the two tests I reviewed this morning don't work? :(
- # [19:49] <@ehsan> froydnj: they do not
- # [19:50] <froydnj> well boo
- # [19:50] <jorendorff> that said, i'm currently losing a lot of time because i screwed myself over real good, which was possible because ... dvcs is tricky, i guess
- # [19:50] * wlach is now known as wlach|lunch
- # [19:50] * Quits: jld (jld@moz-onnk26.xlerb.net) (Quit: because glibc)
- # [19:50] <@ehsan> froydnj: commented on the bugs, sorry
- # [19:50] * Joins: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com)
- # [19:50] * Joins: milan (milan@moz-ipld52.ckpj.s0pt.0450.2001.IP)
- # [19:50] * Quits: @roc (chatzilla@moz-m97g62.orcon.net.nz) (Connection closed)
- # [19:50] <@ehsan> froydnj: you can also wait for me to come back but I'm almost guaranteed to forget and never look back :)
- # [19:50] <@ehsan> s/almost //
- # [19:51] <froydnj> ehsan: need to work on your patience :)
- # [19:51] <@ehsan> froydnj: this one is about memory, not patience :)
- # [19:51] <@ehsan> froydnj: if I remember when I get back I will happily fix them
- # [19:51] <@ehsan> debugging each one should take no more than 4 minutes after all
- # [19:52] * froydnj sets a needinfo on himself to needinfo ehsan
- # [19:52] <@ehsan> haha
- # [19:52] <froydnj> since you'd probably clear it if I set it now :)
- # [19:52] * Joins: jld (jld@moz-onnk26.xlerb.net)
- # [19:53] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [19:54] * Quits: aben (aben@moz-c39.dmt.204.142.IP) (Connection closed)
- # [19:54] * Joins: aben (aben@moz-c39.dmt.204.142.IP)
- # [19:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/e86e11592da1 - Ryan VanderMeulen - Backed out changeset d56201330a5b (bug 1105704) for mochitest-bc failures.
- # [19:54] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (A TLS packet with unexpected length was received.)
- # [19:56] * Joins: Anindya-Pandey (Mibbit@moz-dnp.acm.246.115.IP)
- # [19:56] * Quits: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com) (Connection closed)
- # [19:56] * Joins: mwu (mwu@moz-4tdrd1.ujol.1ibb.0101.2620.IP)
- # [19:56] * Joins: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com)
- # [19:58] * Quits: Anindya-Pandey (Mibbit@moz-dnp.acm.246.115.IP) (Quit: http://www.mibbit.com ajax IRC Client)
- # [19:59] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [19:59] * killer sets mode: +o smaug
- # [19:59] * h4writer|brb is now known as h4writer
- # [19:59] * Joins: paolo_ (paolo@moz-74a.0nt.218.207.IP)
- # [19:59] * Quits: paolo (paolo@moz-74a.0nt.218.207.IP) (Connection closed)
- # [20:00] * Quits: paolo_ (paolo@moz-74a.0nt.218.207.IP) (Quit: Konversation terminated!)
- # [20:00] * Joins: paolo (paolo@moz-74a.0nt.218.207.IP)
- # [20:00] * Joins: royalharsh95 (royalharsh9@moz-f5u.apj.211.117.IP)
- # [20:00] * kats is now known as kats-interview
- # [20:00] * Joins: jgilbert (jgilbert@moz-d7b.k9e.239.204.IP)
- # [20:01] * Quits: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [20:02] * Joins: gozala (uid5923@moz-ftm4af.brockwell.irccloud.com)
- # [20:02] * davidb|afk is now known as davidb
- # [20:02] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/08e41ea36f6d - Ben Hearsum - bug 1125921: add win64 mozconfigs - fix host/target for l10n. r=rail, a=ryanvm NPOTB DONTBUILD
- # [20:03] * Joins: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com)
- # [20:03] * Quits: davidb (davidb@moz-i5m.05u.207.66.IP) (Connection closed)
- # [20:03] * Joins: davidb (davidb@moz-i5m.05u.207.66.IP)
- # [20:03] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [20:04] * Quits: jviereck (Adium@moz-cfkrsr.dclient.hispeed.ch) (Quit: Leaving.)
- # [20:04] * Quits: kgrandon (Adium@moz-m1f5ij.mh2d.1ibb.0101.2620.IP) (Quit: Leaving.)
- # [20:04] * Quits: royalharsh95 (royalharsh9@moz-f5u.apj.211.117.IP) (Quit: Going offline, see ya! (www.adiirc.com))
- # [20:04] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
- # [20:05] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [20:06] * Joins: milan_ (milan@moz-jig61u.ckpj.s0pt.0450.2001.IP)
- # [20:06] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [20:06] * Quits: milan_ (milan@moz-jig61u.ckpj.s0pt.0450.2001.IP) (Connection closed)
- # [20:07] * Quits: jgilbert (jgilbert@moz-d7b.k9e.239.204.IP) (Ping timeout: 121 seconds)
- # [20:07] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [20:07] * Joins: milan_ (milan@moz-jig61u.ckpj.s0pt.0450.2001.IP)
- # [20:07] * Joins: rniwa (rniwa@moz-a8m.2qs.202.17.IP)
- # [20:08] <fabrice> what do we use to listen for hovering on links and display the url in the status bar?
- # [20:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/35f422e0053c - David Keeler - bug 1125503 - when canonicalizing hostnames, check string length before calling Last() r=mmc
- # [20:09] * Quits: gcp (gcp@moz-smtls0.beqe.9i1r.1812.2a02.IP) (Quit: Leaving)
- # [20:09] * Quits: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it) (Ping timeout: 121 seconds)
- # [20:09] * Quits: milan (milan@moz-ipld52.ckpj.s0pt.0450.2001.IP) (Ping timeout: 121 seconds)
- # [20:10] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [20:10] * Quits: aben (aben@moz-c39.dmt.204.142.IP) (Connection closed)
- # [20:10] * Quits: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net) (Quit: OSError: [Errno 130] Owner died)
- # [20:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/dd417504346b - Ganesh Sahukari - Bug 1114594 - Remove promptForSaveToFile in favor of promptForSaveToFileAsync. r=paolo
- # [20:10] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [20:10] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [20:11] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [20:11] * Joins: maxli (maxli@moz-favcmk.cs.uwaterloo.ca)
- # [20:12] <bent> cpearce, ping?
- # [20:13] * Joins: stransky (stransky@moz-mh3.53u.81.109.IP)
- # [20:13] * Joins: rstrong (rstrong@moz-qvqiq2.sntcca.sbcglobal.net)
- # [20:14] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (Ping timeout: 121 seconds)
- # [20:15] * Quits: milan_ (milan@moz-jig61u.ckpj.s0pt.0450.2001.IP) (Connection closed)
- # [20:15] * Joins: kgrandon (Adium@moz-d652kj.mh2d.1ibb.0101.2620.IP)
- # [20:15] * Quits: maxli (maxli@moz-favcmk.cs.uwaterloo.ca) (Quit: Leaving.)
- # [20:15] * Joins: maxli (maxli@moz-favcmk.cs.uwaterloo.ca)
- # [20:16] <mreavy> RyanVM|sheriffduty: ping
- # [20:16] <RyanVM|sheriffduty> mreavy: pong
- # [20:16] * Joins: jrmuizel (jrmuizel@moz-mgpfp2.ckpj.s0pt.0450.2001.IP)
- # [20:16] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [20:17] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [20:18] * Quits: paolo (paolo@moz-74a.0nt.218.207.IP) (Quit: Konversation terminated!)
- # [20:18] * Joins: drno (nohlmeier@moz-cfhap5.mtv2.mozilla.com)
- # [20:18] <@ehsan> froydnj: no, why would I do that? :)
- # [20:19] <@ehsan> froydnj: that being said, I'm building to debug the opt only failure right now...
- # [20:19] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [20:19] * Quits: jaoo (user@moz-b8lhan.user.ono.com) (Quit: ERC Version 5.3 (IRC client for Emacs))
- # [20:19] * Joins: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se)
- # [20:20] * Quits: Rik (rik@moz-6v5.3nd.202.89.IP) (Connection closed)
- # [20:20] * Joins: Rik (rik@moz-6v5.3nd.202.89.IP)
- # [20:20] <mreavy> RyanVM|sheriffduty: Hey, the patch on bug 1126036 fixes a fairly major regression in webrtc (that was exposed when bug 949703 landed and merged over the weekend). I was going to ask if we could land it directly on m-c as a bustage fix and respin Nightly, but byron just landed it on inbound -- which isn't a problem. I'm just looking to get the fix on m-c and fx-team as soon as makes sense. ...
- # [20:20] <mreavy> ...Currently Hello in Nightly is busted. What are my options? (What makes the most sense?)
- # [20:20] * mdoglio is now known as mdoglio|afk
- # [20:21] <RyanVM|sheriffduty> mreavy: unforunately, he also landed in the midst of a giant pile of bustage on inbound
- # [20:21] <RyanVM|sheriffduty> so it's going to be awhile before inbound from after his push is green enough to merge
- # [20:21] <RyanVM|sheriffduty> sorry
- # [20:21] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [20:22] <RyanVM|sheriffduty> i'll at least kick off pgo and the like on the last backout push to hopefully be able to merge it later
- # [20:22] * davidb is now known as davidb|afk
- # [20:23] * Quits: hsivonen (hsivonen@moz-opidon.validator.nu) (A TLS packet with unexpected length was received.)
- # [20:23] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [20:24] * Quits: sfink (chatzilla@moz-vi8qu5.sntcca.sbcglobal.net) (Ping timeout: 121 seconds)
- # [20:24] * Joins: milan (milan@moz-a5mknr.ckpj.s0pt.0450.2001.IP)
- # [20:24] * Quits: mchang (mchang@moz-4b7hgp.res.rr.com) (Client exited)
- # [20:24] * Quits: cpearce (chatzilla@moz-k5i4k1.dqqd.b0fh.0cb0.2001.IP) (Quit: ChatZilla 0.9.91-rdmsoft [XULRunner 32.0.3/20140923175406])
- # [20:24] <mreavy> RyanVM|sheriffduty: ah, thanks. I didn't know about the pile of bustage. Whatever you can do is much appreciated.
- # [20:24] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [20:24] * davidb|afk is now known as davidb
- # [20:24] * Joins: cpearce (chatzilla@moz-dlsasl.dqqd.b0fh.0cb0.2001.IP)
- # [20:25] * Joins: handyman (handyman@moz-h6pqf9.ca.comcast.net)
- # [20:25] * Joins: idwer (irc@moz-bp1sle.adsl.online.nl)
- # [20:26] <RyanVM|sheriffduty> mreavy: it's early enough in the day that I don't expect it'll have any issues being merged around in time for tomorrow's nightlies, though
- # [20:26] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [20:26] <RyanVM|sheriffduty> probably by mid-evening our time at the latest
- # [20:26] * Joins: Sorgrum (Sorgrum@moz-mqng7g.fl.atlanticbb.net)
- # [20:26] * Joins: WG9s (bill@moz-4jcn24.fios.verizon.net)
- # [20:27] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [20:27] * Quits: WG9s (bill@moz-4jcn24.fios.verizon.net) (Quit: ChatZilla 0.9.87-9.1450hg.fc21 [XULRunner 33.0/20141022152428])
- # [20:27] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [20:27] <mreavy> RyanVM|sheriffduty: thanks. if we can get the fix onto fx-team and m-c by start of day tomorrow in Europe, I'm reasonably happy (given all that's going on ).
- # [20:27] <RyanVM|sheriffduty> that shouldn't be any problem
- # [20:29] * nthomas is now known as nthomas|away
- # [20:29] * mattwoodrow|away is now known as mattwoodrow
- # [20:30] * nthomas|away is now known as nthomas
- # [20:30] <@ehsan> cpeterson: you know that Spartan doesn't use "Trident" right? :)
- # [20:30] * Quits: davidb (davidb@moz-i5m.05u.207.66.IP) (Connection closed)
- # [20:30] <@ehsan> cpeterson: it uses the MS' "new engine" called Edge
- # [20:31] <tbsaunde> ehsan: what is it then?
- # [20:31] * Quits: smontagu (chatzilla@moz-ap9qjm.red.bezeqint.net) (Ping timeout: 121 seconds)
- # [20:31] <@ehsan> cpeterson: I think "new engine" means Trident cleaned up
- # [20:31] <cpeterson> ehsan: Spartan doesn't use Gecko either ;)
- # [20:31] * Joins: davidb (davidb@moz-i5m.05u.207.66.IP)
- # [20:31] <@ehsan> tbsaunde: just answered that question :)
- # [20:31] <@ehsan> cpeterson: but Edge is in their UA string ;)
- # [20:31] * Quits: Rik (rik@moz-6v5.3nd.202.89.IP) (Quit: )
- # [20:31] <@ehsan> cpeterson: because you know, all websites are UA sniffing that ;)
- # [20:32] <cpeterson> tbsaunde: some IE legacy features MS removed in their Spartan fork of Trident engine: http://www.nczonline.net/blog/2013/07/02/internet-explorer-11-dont-call-me-ie/
- # [20:32] * Joins: aben (aben@moz-c39.dmt.204.142.IP)
- # [20:33] * Joins: mchang (mchang@moz-4b7hgp.res.rr.com)
- # [20:33] * Quits: aben (aben@moz-c39.dmt.204.142.IP) (Connection closed)
- # [20:33] <jimm> it's a fork of Trident
- # [20:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8361462f2a02 - Brian Hackett - Bug 1125389 - Fix NewReshapedObject to use the old shape's data. r=jandem
- # [20:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/605f1d807083 - Ryan VanderMeulen - Bug 1126360 - Remove the non-split and armv6 Android in-tree configs. r=catlee, r=jlund
- # [20:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3dbbf3baf9f0 - Eric Skoglund - Bug 1107645 - Implement TypedArray.forEach in accordance with the ecma 6 revision 31 spec. r=evilpie
- # [20:35] * wlach|lunch is now known as wlach
- # [20:35] <@ehsan> jimm: do you know if it uses Chakra?
- # [20:35] <@ehsan> or a fork of it?
- # [20:36] * Quits: &dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [20:36] <jimm> I think it does
- # [20:36] * Joins: hsivonen (hsivonen@moz-3u0f1g.com)
- # [20:36] <jimm> I was just reading about this this morning.. let me find the article
- # [20:36] * Joins: roc (chatzilla@moz-ktvdnu.5h0u.b0fh.0cb0.2001.IP)
- # [20:36] * killer sets mode: +o roc
- # [20:36] * Joins: sfink (chatzilla@moz-vi8qu5.sntcca.sbcglobal.net)
- # [20:36] * Quits: Sorgrum (Sorgrum@moz-mqng7g.fl.atlanticbb.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [20:37] <jimm> http://www.smashingmagazine.com/2015/01/26/inside-microsofts-new-rendering-engine-project-spartan/
- # [20:37] <cpeterson> tbsaunde: I sent the wrong link. That was about IE11, not Spartan. jimm's link is the good one.
- # [20:37] * Quits: Honza (chatzilla@moz-tiq.7ku.62.176.IP) (Ping timeout: 121 seconds)
- # [20:37] <cpeterson> ehsan: yes: "Project Spartan will be powered by a new rendering engine and the Chakra JavaScript engine, introduced with IE 9."
- # [20:37] <cpeterson> (from smashingmagazine.com article)
- # [20:38] <@ehsan> jimm: holy cow they removed VBScript?!
- # [20:38] <jimm> guess so
- # [20:38] * mcote is now known as mcote|biab
- # [20:38] <tbsaunde> cpeterson: trident fork is all I really wanted to know ;)
- # [20:38] <@ehsan> that's it, I'll switch to Vivaldi
- # [20:38] <@smaug> it is still enabled in IE o_O
- # [20:39] <tbsaunde> ehsan: its a intollerable breakage of ultra important intranet tool isn't it ?!?!
- # [20:39] * Joins: Rik (rik@moz-71m.3nd.202.89.IP)
- # [20:39] <@ehsan> vlad: btw in case you didn't know, IE now supports Web Audio apparently
- # [20:39] <@roc> it's a Trident fork, so not really a "new rendering engine"
- # [20:40] * julienw is now known as julienw_afk
- # [20:40] <@ehsan> roc: it has Web facing differences though
- # [20:40] * AutomatedTester|AFK is now known as AutomatedTester
- # [20:40] <@roc> sure
- # [20:40] <@roc> over time
- # [20:41] * Joins: tromey (tromey@moz-qvk910.hlrn.qwest.net)
- # [20:42] <hub> like Blink vs WebKit?
- # [20:42] <cpeterson> yes
- # [20:42] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [20:43] * Quits: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net) (A TLS packet with unexpected length was received.)
- # [20:43] * Joins: aben (aben@moz-c39.dmt.204.142.IP)
- # [20:43] * Joins: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [20:43] * davidb is now known as davidb|afk
- # [20:44] * mattwoodrow is now known as mattwoodrow|away
- # [20:44] * Quits: Sushant94 (Sushant@moz-772.i3l.202.116.IP) (Quit: Leaving)
- # [20:45] * Joins: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it)
- # [20:46] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [20:46] * Quits: rmcdougall (Adium@moz-f2h.mvj.38.216.IP) (Quit: Leaving.)
- # [20:46] * davidb|afk is now known as davidb
- # [20:47] * Quits: huseby (huseby@moz-m7l0au.d2vr.5em6.6400.2605.IP) (Ping timeout: 121 seconds)
- # [20:47] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [20:47] * Joins: bajaj1 (bajaj_afk@moz-sudc2d.ujol.1ibb.0101.2620.IP)
- # [20:47] <@ehsan> mhoye: doesn't the user perception part get handled through the /topic message?
- # [20:48] * Joins: jgilbert (jgilbert@moz-o92.q05.194.207.IP)
- # [20:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/42755ce4d13f - Daniel Holbert - Bug 1118419 followup: Annotate macro-defined typeName functions as MOZ_OVERRIDE for remaining GLContext subclasses.
- # [20:48] * kats-interview is now known as kats
- # [20:49] * Quits: bajaj (bajaj_afk@moz-nq95vk.mh2d.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [20:49] * bobowen is now known as bobowen|afk
- # [20:50] * Quits: tonymec (tonymec@moz-80o.7f0.129.109.IP) (Ping timeout: 121 seconds)
- # [20:50] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [20:51] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [20:52] * Joins: alexxdim94 (alexander@moz-sj9s1u.btc-net.bg)
- # [20:52] * KWierso|afk is now known as KWierso
- # [20:53] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [20:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/90623a5d6c0c - Steve Fink - Bug 1125398 - Split off harness.js from index.html, r=terrence
- # [20:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b8257c0c97ad - Steve Fink - Bug 1125398 - Give each test load its own parameters, r=terrence
- # [20:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/abe775af8073 - Steve Fink - Bug 1125398 - Benchmark load: self-referential WeakMap, r=terrence
- # [20:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4bbb59685268 - Steve Fink - Bug 1125398 - Benchmark load: Pair of mutually recursive weakmaps, r=terrence
- # [20:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cbf059987742 - Steve Fink - Bug 1125398 - Benchmark load: large objects, r=terrence
- # [20:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/46cde5a19b8d - Steve Fink - Bug 1125398 - Benchmark load; DOM textNodes, r=terrence
- # [20:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8a5b30881128 - Steve Fink - Bug 1125398 - Benchmark load: large ArrayBuffers (for big malloc data), r=terrence
- # [20:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/97c12091bda5 - Steve Fink - Bug 1125398 - Benchmark load: arrays of Map (for foreground finalized), r=terrence
- # [20:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b5a4e4c8ed85 - Steve Fink - Bug 1125398 - Benchmark load: simple events, r=terrence
- # [20:54] * bz_away is now known as bz
- # [20:54] * Joins: huseby (huseby@moz-m7l0au.d2vr.5em6.6400.2605.IP)
- # [20:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8c4a67f63f9b - Daniel Holbert - Bug 1126438: Annotate canClone() and clone() as MOZ_OVERRIDE, in MIR.h. r=ehsan
- # [20:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f579eea5dc02 - Daniel Holbert - Bug 1126447: Annotate overriding functions as MOZ_OVERRIDE in nsDateTimeFormatUnix.h. r=ehsan
- # [20:54] * Joins: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net)
- # [20:54] * edmorley is now known as edmorley|away
- # [20:55] * Joins: hallvors (uid23371@moz-uj1g6s.highgate.irccloud.com)
- # [20:55] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [20:56] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [20:56] * Joins: l4cr0ss (l4cr0ss@moz-lg6mru.h1b8.3h2d.0306.2602.IP)
- # [20:56] * Joins: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP)
- # [20:56] <mhoye> ehsan: It should, but it won't. We'll need to preannounce it, etc.
- # [20:56] * Joins: rmcdougall (Adium@moz-f2h.mvj.38.216.IP)
- # [20:56] <@ehsan> mhoye: no we don't
- # [20:57] <@ehsan> mhoye: the ask on that thread is exactly like asking "can I have a session that cannot be MITMed without TLS?"
- # [20:57] <mhoye> This isn't about technical correctness!
- # [20:57] <@ehsan> mhoye: this is an inherent property of irc networks
- # [20:57] <jesup> tbsaunde: Perhaps they'll ship Spartan 1.0 and an IE10 for VBScript compat ;-)
- # [20:57] <mhoye> You're technically correct!
- # [20:58] <@ehsan> not just ours
- # [20:58] * Quits: secretrobotron (secretrobot@moz-i5m.05u.207.66.IP) (Connection closed)
- # [20:58] * Joins: secretrobotron_ (secretrobot@moz-6tktvo.ckpj.s0pt.0450.2001.IP)
- # [20:58] * RyanVM|sheriffduty still doesn't understand how there can be any expectation of privacy on a network that literally anybody can access at any time
- # [20:58] * Joins: billm (billm@moz-1qmo3q.mh2d.1ibb.0101.2620.IP)
- # [20:58] <@ehsan> mhoye: the correct answer for those who are concerned about gathering what they are saying on IRC is: "Don't use IRC"
- # [20:59] <@ehsan> anything else would be dishonest
- # [20:59] * Quits: davidb (davidb@moz-i5m.05u.207.66.IP) (Connection closed)
- # [20:59] <mhoye> I concede all technical points you would like to make on this topic, and I'll _still_ bet you a dollar that somebody will get vocally upset about how we're logging conversations and tracking people now.
- # [20:59] <@ehsan> RyanVM|sheriffduty: I doubt there is
- # [20:59] <jesup> RyanVM|sheriffduty: or spam at any time :-)
- # [20:59] * Joins: davidb (davidb@moz-i5m.05u.207.66.IP)
- # [20:59] <bz> well, if you have a channel with a key....
- # [20:59] <@ehsan> mhoye: I have no doubt, what I am saying is, we don't need to do anything :)
- # [21:00] <RyanVM|sheriffduty> bz: yeah, that's a different animal :)
- # [21:00] <mhoye> And that we can avoid that sort of pointless shitshow by saying "We're going to make this change in two weeks, and it will make your life better!"
- # [21:00] <@ehsan> bz: my IRC client for example logs every single line said on whatever channel I'm on
- # [21:00] <fitzgen> how do I open a file for writing and get an nsIOutputStream?
- # [21:00] <bz> ehsan: right
- # [21:00] <mhoye> And then doing exactly what we were going to do anyway.
- # [21:00] <@ehsan> bz: so even then you have no privacy
- # [21:00] <hsivonen> do we log CORS errors to console?
- # [21:00] <froydnj> mhoye: you should make more bets like this as a source of supplemental income
- # [21:00] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [21:01] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [21:01] <hsivonen> (i.e. something got blocked due to lack of CORS)
- # [21:01] <@ehsan> mhoye: what is "this change" though?
- # [21:01] <@ehsan> hsivonen: I'm pretty sure we do
- # [21:01] * Quits: Rik (rik@moz-71m.3nd.202.89.IP) (A TLS packet with unexpected length was received.)
- # [21:01] <mhoye> ehsan: "moving the IRC logging that Glob is doing from Glob's machine to something hosted at Mozilla".
- # [21:02] <mhoye> That's what it'll amount to.
- # [21:02] <@ehsan> mhoye: that's just putting lipstick on a pig
- # [21:02] <@ehsan> mhoye: my IRC client logs stuff
- # [21:02] <@ehsan> so does yours probably
- # [21:02] <mhoye> Absolutely!
- # [21:02] <bz> ehsan: well, sure, if I give you my channel key. ;)
- # [21:02] <@ehsan> and any user here can be a bot
- # [21:02] <froydnj> fitzgen: from C++ or JS?
- # [21:02] * Joins: botond|home (chatzilla@moz-303r5l.cpe.pppoe.ca)
- # [21:02] <bz> ehsan: I think mhoye agrees with every technical statement you made.
- # [21:02] <fitzgen> froydnj: from C++
- # [21:02] <fitzgen> NS_NewLocalFileOutputStream ?
- # [21:02] <bz> ehsan: He's disagreeing about the user perception aspect.
- # [21:03] <Ms2ger> Which channel is this anyway?
- # [21:03] * mhoye shrugs.
- # [21:03] <@ehsan> bz: the corollary of my statements is that there is not a single thing we can do to change the user perception, or to align ourselves with such perception
- # [21:04] <bz> ehsan: I'm not sure I agree, but ok.
- # [21:04] <bent> roc, ping?
- # [21:04] * nthomas is now known as nthomas|away
- # [21:04] <@roc> hi
- # [21:04] * Joins: dark-knight (dark-knight@moz-7na.bme.59.37.IP)
- # [21:04] <mhoye> Look: the pig is a given. This is a user-facing pig. If we're trying to sell the pig, it might as well look good.
- # [21:04] <mhoye> So let's spend like two minutes with the lipstick and move on.
- # [21:04] <froydnj> fitzgen: yes
- # [21:04] <bent> roc, hi, can you explain which thread this will be called on?
- # [21:04] * Quits: emtwo (Adium@moz-i5m.05u.207.66.IP) (A TLS packet with unexpected length was received.)
- # [21:04] <bent> http://mxr.mozilla.org/mozilla-central/source/dom/media/EncodedBufferCache.cpp#23
- # [21:04] * Joins: emtwo (Adium@moz-ljpdf6.fnjk.s0pt.0450.2001.IP)
- # [21:05] <@roc> I'm completely unfamiliar with that code, it's new MSE stuff
- # [21:05] * Joins: nonsensickle (nonsensickl@moz-4v0.gkd.16.182.IP)
- # [21:05] <mhoye> A few minutes with the lipstick will be cheaper and easier than having to explain an ugly pig.
- # [21:05] <bent> roc, oh, ok. sorry!
- # [21:05] * nthomas|away is now known as nthomas
- # [21:05] * bent assumed mediacache
- # [21:05] <@ehsan> mhoye: you realize that "moving the IRC logging that Glob is doing from Glob's machine to something hosted at Mozilla" does *not* satisfy the privacy conscious user's concerns in any way whatsoever, right? :)
- # [21:06] <Ms2ger> As a privacy conscious user: this is still a public place, right?
- # [21:06] <tbsaunde> mhoye: so, my guess is the people yelling about privacy are only in #toronto or #interns or something
- # [21:06] * Quits: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [21:06] <@ehsan> Ms2ger: yes sir
- # [21:07] <mhoye> tbsaunde: STILL
- # [21:07] <tbsaunde> and if you just go through the channels its actually useful to log and just go we're going to log this now k? everyone will go sure
- # [21:07] <Ms2ger> I guess I don't care about #toronto
- # [21:08] * Joins: nonsensickle__ (nonsensickl@moz-4v0.gkd.16.182.IP)
- # [21:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/4c2c7d94b8d7 - Victor Porof - Bug 1126451 - Typo in MemoryActor.prototype._onWindowReady after bug 1104213, r=tromey
- # [21:08] <tbsaunde> now, if you want to log those channels maybe its worth caring, otherwise just tlaking to ops in various channels would be a far more productive use of time
- # [21:08] <mhoye> ehsan: As you note, we are not talking about fully informed, rational actors here.
- # [21:09] * chmanchester|afk is now known as chmanchester
- # [21:09] * Quits: kgrandon (Adium@moz-d652kj.mh2d.1ibb.0101.2620.IP) (Quit: Leaving.)
- # [21:09] * Quits: gustavold (gustavold@moz-lkd.ksg.110.179.IP) (Ping timeout: 121 seconds)
- # [21:10] <@ehsan> mhoye: I realize that. here is a counter proposal, how about adding a line as part of the IRC welcome message saying "All IRC communication on this or any other network can be logged and monitored by anyone else connected to the IRC server"?
- # [21:10] * Quits: mats (chatzilla@moz-6svtv8.priv.bahnhof.se) (Quit: ChatZilla 0.9.91.1 [Firefox 35.0/20150108202552])
- # [21:10] <@ehsan> mhoye: that would at least be honest :)
- # [21:10] <mhoye> We can do that too!
- # [21:10] <Ms2ger> We probably should anyway
- # [21:11] <Ms2ger> W3C has "you should assume that anyone could be listening to anything you say here."
- # [21:11] <@gavin> it's not useful to suggest that there's no difference between people logging privately vs. logs.somemozillaguy.org vs. logs.mozilla.org
- # [21:11] <@gavin> they might be all conceptually the same, but the world cannot be reduced to such simple concepts :)
- # [21:11] <Ms2ger> gavin, is there a difference between the latter two?
- # [21:11] * Quits: nonsensickle (nonsensickl@moz-4v0.gkd.16.182.IP) (Ping timeout: 121 seconds)
- # [21:12] * Joins: mkmelin (mkmelin@moz-28vfvv.elisa-laajakaista.fi)
- # [21:12] <@gavin> Ms2ger: yes
- # [21:12] * Quits: rmcdougall (Adium@moz-f2h.mvj.38.216.IP) (Quit: Leaving.)
- # [21:12] <tbsaunde> mhoye: well, if I pm you, and we both use ssl and we trust irc.mo then that might be private
- # [21:13] <nalexander> Ms2ger: for example, if somemozillaguy was terminated, would Mozilla have the use of the logs?
- # [21:13] * Joins: flo-retina (Instantbird@moz-c2qce8.rev.numericable.fr)
- # [21:13] <bz> If a tree falls in the forest, does it become a log?
- # [21:13] <tbsaunde> if moco goes out of business would however else wants to work on gecko have the logs?
- # [21:14] <Ms2ger> c:\mozilla-build\python27\python2.7.exe: can't open file 'c:/builds/moz2_slave/try-w64-0000000000000000000000/build/sccache/sccache.py': [Errno 2] No such file or directory
- # [21:14] <Ms2ger> On win64 try
- # [21:14] <Ms2ger> Ring a bell to anyone?
- # [21:14] <RyanVM|sheriffduty> Ms2ger: yep
- # [21:14] <RyanVM|sheriffduty> bhearsum ^
- # [21:14] <RyanVM|sheriffduty> you might need to care after all :P
- # [21:14] <RyanVM|sheriffduty> Ms2ger: oh, he's not in this channel
- # [21:14] * Quits: cpearce (chatzilla@moz-dlsasl.dqqd.b0fh.0cb0.2001.IP) (Quit: ChatZilla 0.9.91-rdmsoft [XULRunner 32.0.3/20140923175406])
- # [21:14] <RyanVM|sheriffduty> ping him in #releng please?
- # [21:15] <Ms2ger> On an unrelated note, anyone think it'd be useful to have a www-archive analogue for Mozilla?
- # [21:15] <Ms2ger> RyanVM|sheriffduty, k
- # [21:16] * Joins: rmcdougall (Adium@moz-f2h.mvj.38.216.IP)
- # [21:16] * whimboo|afk is now known as whimboo
- # [21:16] * Joins: tonymec (tonymec@moz-80o.7f0.129.109.IP)
- # [21:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c1241585f1a0 - B2G Bumper Bot - Bumping gaia.json for 6 gaia revision(s) a=gaia-bump
- # [21:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/3e0483a1ec61 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [21:18] * Quits: ttaubert (uid2620@moz-6d2u0s.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
- # [21:18] * Joins: cpearce (chatzilla@moz-k5i4k1.dqqd.b0fh.0cb0.2001.IP)
- # [21:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/1e87184509fa - Ryan VanderMeulen - Backed out changeset dd417504346b (bug 1114594) for crashes.
- # [21:19] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (Quit: Leaving...)
- # [21:19] * Quits: milan (milan@moz-a5mknr.ckpj.s0pt.0450.2001.IP) (A TLS packet with unexpected length was received.)
- # [21:20] * Joins: milan (milan@moz-i5m.05u.207.66.IP)
- # [21:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/63e93ddb740f - Tooru Fujisawa - Bug 1125512 - Part 1: Use .format() instead of modulo operator in manifest.py. r=terrence
- # [21:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3de67cecd18d - Tooru Fujisawa - Bug 1125512 - Part 2: Use .format() instead of modulo operator in js test libs. r=terrence
- # [21:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0c982514eb25 - Tooru Fujisawa - Bug 1125512 - Part 3: Use .format() instead of modulo operator in jstests.py. r=terrence
- # [21:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ce00599c23e2 - Tooru Fujisawa - Bug 1125512 - Part 4: Use .format() instead of modulo operator in jit_test.py. r=terrence
- # [21:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fabb44ffd5d0 - Armen Zambrano Gasparnian - Bug 1040079 - Change logging level for chmod operations for mozdevice. DONTBUILD. r=wlach
- # [21:22] * Quits: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it) (Ping timeout: 121 seconds)
- # [21:23] * Quits: Jackneill (Jackneill@moz-ek96u3.pool.digikabel.hu) (A TLS packet with unexpected length was received.)
- # [21:23] * Quits: stransky (stransky@moz-mh3.53u.81.109.IP) (Quit: Connection reset by beer)
- # [21:23] * Joins: stransky (stransky@moz-2q16pm.broadband18.iol.cz)
- # [21:23] * Quits: stransky (stransky@moz-2q16pm.broadband18.iol.cz) (Connection closed)
- # [21:23] * Joins: stransky (stransky@moz-2q16pm.broadband18.iol.cz)
- # [21:23] * Quits: stransky (stransky@moz-2q16pm.broadband18.iol.cz) (Quit: Connection reset by beer)
- # [21:24] <RyanVM|sheriffduty> nsm: sweet, re-enable test_scopes.html and watch new crashes roll in...
- # [21:24] <RyanVM|sheriffduty> nsm: https://treeherder.mozilla.org/ui/logviewer.html#?job_id=5983442&repo=mozilla-inbound
- # [21:24] <RyanVM|sheriffduty> can we please re-disable?
- # [21:25] * Quits: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [21:26] * Quits: aben (aben@moz-c39.dmt.204.142.IP) (Connection closed)
- # [21:27] * Joins: dbaron (dbaron@moz-sd756t.2rkg.9kg1.0101.2620.IP)
- # [21:27] * killer sets mode: +ao dbaron dbaron
- # [21:29] * Quits: ahunt (ahunt@moz-hq8kb0.cam.ac.uk) (Ping timeout: 121 seconds)
- # [21:29] * Joins: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com)
- # [21:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/18b38a86c263 - Ehsan Akhgari - Bug 1126301 - Move TestUTF.cpp to gtest and enable it; r=froydnj
- # [21:32] <froydnj> ehsan++
- # [21:32] * Quits: mayhemer (Miranda@moz-5uf4lm.joqu.pdma.1028.2a00.IP) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
- # [21:32] <@ehsan> :)
- # [21:32] * Quits: ZER0 (ZER0@moz-b6gvan.dynamic.upc.nl) (Quit: This computer has gone to sleep)
- # [21:32] <@ehsan> froydnj: I don't seem to be able to reproduce the other failure for some reason...
- # [21:34] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Ping timeout: 121 seconds)
- # [21:34] * Quits: dolphinling (andrew@moz-c8q.2b2.198.132.IP) (Quit: leaving)
- # [21:34] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [21:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/22fb05349a10 - Ehsan Akhgari - Bug 989012 - Part 1: Stop after passing over a non-selectable frame if one is found during the frame traversal; r=roc
- # [21:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9698f6f3f72e - Ehsan Akhgari - Bug 989012 - Part 2: Don't get stuck when seeing an image without a src or alt attribute; r=roc
- # [21:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=db7c4ffd5a53 - 12 changesets
- # [21:39] * Quits: maxli (maxli@moz-favcmk.cs.uwaterloo.ca) (Quit: Leaving.)
- # [21:39] * florent is now known as Coin
- # [21:39] * Joins: Sorgrum (Sorgrum@moz-mqng7g.fl.atlanticbb.net)
- # [21:39] * Coin is now known as florent
- # [21:40] * Quits: mikeratcliffe (Adium@moz-fcp.9v6.12.149.IP) (Quit: Leaving.)
- # [21:40] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Ping timeout: 121 seconds)
- # [21:41] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [21:41] <RyanVM|sheriffduty> jya: ping
- # [21:41] * mcote|biab is now known as mcote
- # [21:42] * Quits: jgilbert (jgilbert@moz-o92.q05.194.207.IP) (Ping timeout: 121 seconds)
- # [21:42] <RyanVM|sheriffduty> or rillian: ping
- # [21:44] * Joins: tomer (tomer@moz-to490c.012.net.il)
- # [21:44] * Joins: DGMurdockIII (dgmurdockii@moz-gehpof.in.comcast.net)
- # [21:44] * Quits: capella-s33 (capella-s3@moz-a6lqme.res.rr.com) (A TLS packet with unexpected length was received.)
- # [21:45] * Joins: capella-s3 (capella-s3@moz-a6lqme.res.rr.com)
- # [21:45] * Quits: rbarnes (rbarnes@moz-pe71cj.cust.bluewin.ch) (A TLS packet with unexpected length was received.)
- # [21:46] * Joins: jkitch (Thunderbird@moz-dotbhp.k4n0.vhij.44b8.2001.IP)
- # [21:47] * Joins: bbondy_ (bbondy@moz-hchicl.home4.cgocable.net)
- # [21:47] * Joins: francois (francois@moz-cnggv3.fmarier.org)
- # [21:47] <lmandel> jorendorff: I'm trying to understand the impact of bug 1123875. overholt suggested you may be able to help.
- # [21:47] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Ping timeout: 121 seconds)
- # [21:48] <jorendorff> lmandel: looking
- # [21:48] <overholt> lmandel, Ms2ger can probably elaborate, too
- # [21:49] <Ms2ger> ?
- # [21:49] * Quits: tantek (tantek@moz-j5mckf.dynamic.fusionbroadband.com) (Client exited)
- # [21:49] <Ms2ger> lmandel, pretty small; we're not throwing an exception where we should
- # [21:49] * Joins: gwagner_ (gwagner@moz-u3dg2t.sfo1.mozilla.com)
- # [21:49] * Joins: alexosaurus (alex@moz-0fs.jtu.223.111.IP)
- # [21:49] <Ms2ger> lmandel, and only in strict mode, which I suspect is pretty rare still
- # [21:49] <jorendorff> lmandel: Some assignments which are clearly wrong should throw exceptions in strict mode, and don't
- # [21:50] <jorendorff> lmandel: i am working on fixing it this week (by making a much larger related change)
- # [21:50] * Quits: gwagner_ (gwagner@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [21:51] <dholbert> ted, if I have a r+'d nspr patch, can I push it directly to hg.m.o/projects/nspr, or needinfo you to land it, or something else?
- # [21:51] <dholbert> ted, (just removing an unused var, https://bugzilla.mozilla.org/show_bug.cgi?id=1126408 )
- # [21:52] <@ted> dholbert: needs me or wtc to land it, ni? is fine
- # [21:52] <dholbert> ted, cool, thanks
- # [21:52] * Joins: developers511 (bzlandfill@moz-6oi.d9j.241.50.IP)
- # [21:53] * Quits: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net) (A TLS packet with unexpected length was received.)
- # [21:53] * Joins: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it)
- # [21:54] <lmandel> jorendorff, Ms2ger: Thanks. Sounds like there really isn't a reason to track this bug then. We can still consider an uplift if you think it's warranted.
- # [21:54] * Joins: gwagner_ (gwagner@moz-u3dg2t.sfo1.mozilla.com)
- # [21:54] * Joins: kamidphish (dglastonbur@moz-ouggk0.tpgi.com.au)
- # [21:54] * Quits: gandalf (zbraniecki@moz-gtc1n1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
- # [21:55] * Quits: gwagner_ (gwagner@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [21:56] * flod is now known as flod|away
- # [21:58] * julienw_afk is now known as julienw
- # [21:59] <jorendorff> lmandel: by all means drop it
- # [21:59] <jorendorff> lmandel: thanks
- # [22:01] <@ehsan> hsivonen: ping
- # [22:01] <BenWa> RyanVM|sheriffduty: Whats up with the ICS Emulator debug mochitest? I don’t see them on central, they seem to pass on inbound but they fail on my try push but the issues doesn’t seem to be caused by my patch? https://treeherder.mozilla.org/ui/#/jobs?repo=try&revision=ebfcfa7e35b2
- # [22:01] <BenWa> Are they known failures or not?
- # [22:01] * Joins: billm_ (billm@moz-u06isu.mh2d.1ibb.0101.2620.IP)
- # [22:01] <RyanVM|sheriffduty> BenWa: they're on central...
- # [22:02] <RyanVM|sheriffduty> 11:55:25 INFO - [Child 777] ###!!! ASSERTION: Empty paint region
- # [22:02] <RyanVM|sheriffduty> 11:55:25 INFO - : '!aPaintRegion.GetBounds().IsEmpty()', file ../../../gecko/gfx/layers/client/TiledContentClient.cpp, line 878
- # [22:02] <RyanVM|sheriffduty> sure that isn't yours? ;)
- # [22:02] <BenWa> Ohh! Those are checking platform assertion
- # [22:02] <BenWa> I was looking for js test asserts. Ok got it
- # [22:03] <Standard8> RyanVM|sheriffduty: fx-team still seems to have busted mochitest-5 tests
- # [22:03] <BenWa> ty
- # [22:03] <RyanVM|sheriffduty> Standard8: yeah, I know
- # [22:03] <RyanVM|sheriffduty> really confusing...
- # [22:03] <RyanVM|sheriffduty> ahhhhhh
- # [22:03] <RyanVM|sheriffduty> Standard8: IDL change
- # [22:03] <RyanVM|sheriffduty> dammit dammit dammit
- # [22:04] <Standard8> clobber?
- # [22:04] <RyanVM|sheriffduty> UUID bump
- # [22:04] <RyanVM|sheriffduty> *sigh*
- # [22:04] * Quits: mkmelin (mkmelin@moz-28vfvv.elisa-laajakaista.fi) (Connection closed)
- # [22:04] * Quits: billm (billm@moz-1qmo3q.mh2d.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [22:05] * Standard8 holds off preparing that push
- # [22:05] * Joins: aben (aben@moz-c39.dmt.204.142.IP)
- # [22:05] * Quits: aben (aben@moz-c39.dmt.204.142.IP) (Quit: )
- # [22:06] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout: 121 seconds)
- # [22:06] * Quits: bdahl (bdahl@moz-k93bgs.2rkg.9kg1.0101.2620.IP) (A TLS packet with unexpected length was received.)
- # [22:07] * Joins: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [22:07] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [22:07] * Quits: victorporof (victorporof@moz-i5m.05u.207.66.IP) (Connection closed)
- # [22:08] * Joins: bdahl (bdahl@moz-kokn8h.2rkg.9kg1.0101.2620.IP)
- # [22:08] <RyanVM|sheriffduty> Standard8: re-pushed with a UUID bump
- # [22:08] <RyanVM|sheriffduty> should be good now
- # [22:08] * Joins: victorporof (victorporof@moz-i5m.05u.207.66.IP)
- # [22:08] <efaust> RyanVM|sheriffduty: other than aurrora and beta, which approvals do I need to cover b2g 2.1-3.0?
- # [22:08] <RyanVM|sheriffduty> depends
- # [22:08] <efaust> lovely.
- # [22:08] <RyanVM|sheriffduty> efaust: https://wiki.mozilla.org/Release_Management/B2G_Landing
- # [22:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/a5099b806777 - Ganesh Sahukari - Bug 1114594 - Remove promptForSaveToFile in favor of promptForSaveToFileAsync. r=paolo
- # [22:08] <efaust> RyanVM|sheriffduty: thanks
- # [22:09] <Sorgrum> I have made an extension that needs to check whether or not it is daytime, so I have a function running on a timer. How often would be the recommended check time so the extension doesn't slow down the browser?
- # [22:09] * Quits: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net) (Connection closed)
- # [22:09] * Joins: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net)
- # [22:10] <Standard8> RyanVM|sheriffduty: thanks
- # [22:10] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [22:11] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [22:11] * benfrancis is now known as benfrancis|away
- # [22:11] * Quits: gsvelto (gsvelto@moz-9sl6rm.clienti.tiscali.it) (Ping timeout: 121 seconds)
- # [22:12] * Joins: kentuckyfriedtakahe (ajones@moz-rfc585.5h0u.b0fh.0cb0.2001.IP)
- # [22:12] * Quits: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net) (Client exited)
- # [22:13] * Joins: rednaks (rednaks@moz-leq.opv.18.197.IP)
- # [22:14] * Quits: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net) (A TLS packet with unexpected length was received.)
- # [22:14] * Joins: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [22:15] * Quits: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net) (Ping timeout: 121 seconds)
- # [22:15] * Quits: l4cr0ss (l4cr0ss@moz-lg6mru.h1b8.3h2d.0306.2602.IP) (Connection closed)
- # [22:15] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Connection closed)
- # [22:15] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [22:15] * Quits: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net) (Ping timeout: 121 seconds)
- # [22:15] * mattwoodrow|away is now known as mattwoodrow
- # [22:16] * philor|away is now known as philor
- # [22:16] <Mossop> Sorgrum: Why do you need a periodic check? Presumably you know when sunset is so just schedule a timer to fire then to change the state
- # [22:16] * Joins: kgrandon (Adium@moz-qjbkeh.mtv2.mozilla.com)
- # [22:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/31f70be9d69a - Mark Banner - Bug 1118393 - Cannot use {{num}} in rooms_list_current_conversations - Don't remove the num argument for plural forms, as its a valid possible value. r=jaws
- # [22:17] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [22:17] <Sorgrum> Mossop: If the browser is closed when it becomes daytime then it'll miss the event.
- # [22:17] * Quits: kamidphish (dglastonbur@moz-ouggk0.tpgi.com.au) (Connection closed)
- # [22:18] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [22:18] <Mossop> Sorgrum: So check at startup too
- # [22:18] * xidorn|away is now known as xidorn
- # [22:18] <Sorgrum> Mossop: I'm also pretty new and I'm not sure how to do either of those two
- # [22:18] <Mossop> Sorgrum: Ask for help in #extdev
- # [22:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/6fc798375532 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [22:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5a565ca245f0 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [22:18] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Ping timeout: 121 seconds)
- # [22:18] <Sorgrum> Mossop: Alright, thanks!
- # [22:19] * bsmedberg is now known as bsmedberg-bbiab
- # [22:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ae5cd7307662 - Benjamin Smedberg - Bug 1126450 - When Flash has a blocklist entry, we should keep protected-mode on, no matter the value of the pref setting. r=aklotz
- # [22:19] * bobowen|afk is now known as bobowen
- # [22:20] * jlund|buildduty is now known as jlund|lunch
- # [22:20] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [22:22] * KaiRo is now known as KaiRo_away
- # [22:22] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [22:22] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [22:23] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [22:23] * yzen is now known as yzen_
- # [22:24] * Quits: Ms2ger (Ms2ger@moz-c70.8u8.182.91.IP) (Quit: nn)
- # [22:24] * Joins: squeakytoy2 (squeakytoy@moz-2n0365.se.alltele.net)
- # [22:24] * Quits: squeakytoy2 (squeakytoy@moz-2n0365.se.alltele.net) (Connection closed)
- # [22:24] * Joins: yzen (yzen@moz-i5m.05u.207.66.IP)
- # [22:25] * Quits: davidb (davidb@moz-i5m.05u.207.66.IP) (Quit: Blah blah blah)
- # [22:25] * Joins: rbarnes (rbarnes@moz-pe71cj.cust.bluewin.ch)
- # [22:26] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Ping timeout: 121 seconds)
- # [22:27] * lmandel is now known as lmandel_afk
- # [22:27] * Joins: jgilbert (jgilbert@moz-o92.q05.194.207.IP)
- # [22:27] * bz is now known as bz_away
- # [22:27] * Quits: yzen_ (yzen@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [22:28] * bobowen is now known as bobowen|afk
- # [22:28] * bobowen|afk is now known as bobowen
- # [22:29] * Quits: mwobensmith (mwobensmith@moz-dae54t.2rkg.9kg1.0101.2620.IP) (Quit: Leaving.)
- # [22:29] * Joins: mwobensmith (mwobensmith@moz-llbpt7.2rkg.9kg1.0101.2620.IP)
- # [22:31] * Quits: alexosaurus (alex@moz-0fs.jtu.223.111.IP) (Ping timeout: 121 seconds)
- # [22:31] * Joins: kamidphish (dglastonbur@moz-ouggk0.tpgi.com.au)
- # [22:32] * Joins: myk (myk@moz-u3dg2t.sfo1.mozilla.com)
- # [22:33] <mjrosenb> wtf? I'm downloading the same package on the same machine with both firefox and safari
- # [22:33] <mjrosenb> firefox has 5-6 hours left
- # [22:33] <mjrosenb> safari has 4 minutes left
- # [22:33] <mjrosenb> and the safari download started second.
- # [22:33] <botond|home> jya: ping
- # [22:34] * Quits: alexxdim94 (alexander@moz-sj9s1u.btc-net.bg) (Connection closed)
- # [22:34] * mjrosenb cannot think of a plausible explanation for this.
- # [22:35] <shu> mjrosenb: you hit a different CDN node?
- # [22:35] * Quits: drno (nohlmeier@moz-cfhap5.mtv2.mozilla.com) (Client exited)
- # [22:35] <mjrosenb> shu: you know how to tell that?
- # [22:35] <shu> mjrosenb: nope!
- # [22:35] <mjrosenb> I guess I can kill the firefox dl, and try again?
- # [22:35] <shu> mjrosenb: i suppose you lsof and check the routing to where you're getting the file from?
- # [22:36] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Ping timeout: 121 seconds)
- # [22:36] <mjrosenb> does lsof come by default on osx?
- # [22:36] <RyanVM|sheriffduty> ehsan: https://treeherder.mozilla.org/ui/logviewer.html#?job_id=5989323&repo=mozilla-inbound
- # [22:36] * Quits: ehugg (ehugg@moz-qad.223.170.166.IP) (Client exited)
- # [22:36] * Quits: jfkthame (jfkthame@moz-2a7.i06.29.2.IP) (Quit: This computer has gone to sleep)
- # [22:37] <shu> mjrosenb: i'm sure there's something that lists open tcp connections on os x
- # [22:37] <shu> mjrosenb: maybe our builtin network monitor can tell you
- # [22:37] <@ehsan> RyanVM|sheriffduty: looking
- # [22:37] * Quits: developers511 (bzlandfill@moz-6oi.d9j.241.50.IP) (Quit: CGI:IRC)
- # [22:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f3702deb2dce - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [22:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/b4806264f1b6 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [22:37] * Joins: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net)
- # [22:38] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [22:38] * Quits: sydpolk (sydpolk@moz-cfhap5.mtv2.mozilla.com) (Quit: Leaving.)
- # [22:38] <@ehsan> sigh
- # [22:38] * Joins: l4cr0ss (l4cr0ss@moz-lg6mru.h1b8.3h2d.0306.2602.IP)
- # [22:40] <@ehsan> RyanVM|sheriffduty: backed out
- # [22:41] * Quits: jgilbert (jgilbert@moz-o92.q05.194.207.IP) (Connection closed)
- # [22:42] * Joins: jfkthame (jfkthame@moz-2a7.i06.29.2.IP)
- # [22:42] * Quits: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net) (Connection closed)
- # [22:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/007fbd5bc4bd - Ehsan Akhgari - Backed out 2 changesets (bug 989012) because of test failure on Linux32 opt mochitest-a11y on a CLOSED TREE
- # [22:42] * Joins: jgilbert (jgilbert@moz-o92.q05.194.207.IP)
- # [22:42] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Ping timeout: 121 seconds)
- # [22:42] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
- # [22:43] * Quits: kgrandon (Adium@moz-qjbkeh.mtv2.mozilla.com) (Quit: Leaving.)
- # [22:43] * Quits: florent (Thunderbird@moz-5r3qcg.abo.wanadoo.fr) (Connection closed)
- # [22:43] * Quits: RattyAway (Jim_diGriz@moz-993.582.72.180.IP) (Quit: ChatZilla 0.9.91.1 [SeaMonkey 2.0.15pre/20110606000022])
- # [22:43] * Quits: ericjung___ (ericjung@moz-g97fru.7ch4.iin2.0006.2601.IP) (Ping timeout: 121 seconds)
- # [22:43] * heycam|away is now known as heycam
- # [22:45] <tbsaunde> roc: any progress on that signal handling rr issue? it seems to be linked to the atk / dbus bits of a11y, I enabled the gecko internal bits today and rr was fine
- # [22:46] * Quits: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net) (A TLS packet with unexpected length was received.)
- # [22:46] * Joins: matthewhill (matthewhill@moz-vin.n37.205.137.IP)
- # [22:46] * Quits: matthewhill (matthewhill@moz-vin.n37.205.137.IP) (Quit: Lingo: www.lingoirc.com)
- # [22:47] * philor is now known as philor|away
- # [22:47] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
- # [22:47] * Joins: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net)
- # [22:47] * Joins: njn (chatzilla@moz-qs2sae.iinet.net.au)
- # [22:47] * killer sets mode: +o njn
- # [22:48] * Joins: ehugg (ehugg@moz-dch.96d.170.166.IP)
- # [22:48] * Joins: sydpolk (sydpolk@moz-ks4frh.ujol.1ibb.0101.2620.IP)
- # [22:49] * Quits: rmcdougall (Adium@moz-f2h.mvj.38.216.IP) (Quit: Leaving.)
- # [22:50] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [22:51] * Joins: espadrine (espadrine@moz-l019mn.fbx.proxad.net)
- # [22:52] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
- # [22:55] <edwin> do we have images of our mochitest vms somewhere? or do we have to use loaner instances?
- # [22:55] * Quits: m_gol (m_gol@moz-eru58u.static.chello.pl) (Quit: Linkinus - http://linkinus.com)
- # [22:55] * Joins: milan_ (milan@moz-i5m.05u.207.66.IP)
- # [22:56] * Quits: milan_ (milan@moz-i5m.05u.207.66.IP) (A TLS packet with unexpected length was received.)
- # [22:56] * Quits: milan (milan@moz-i5m.05u.207.66.IP) (Connection closed)
- # [22:56] * Joins: milan (milan@moz-egvtcn.ckpj.s0pt.0450.2001.IP)
- # [22:58] * Joins: aaronraimist (aaron@moz-jbfqc6.stlsmo.sbcglobal.net)
- # [22:59] * Joins: rmcdougall (Adium@moz-f2h.mvj.38.216.IP)
- # [22:59] * Quits: Standard8 (Standard8@moz-1hu.vrc.166.195.IP) (Quit: ZNC - http://znc.in)
- # [23:03] * Quits: h4writer (h4writer@moz-lcj9pu.access.telenet.be) (Ping timeout: 121 seconds)
- # [23:04] * Quits: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [23:05] * Joins: Jesse (jruderman@moz-pqc1f5.ca.comcast.net)
- # [23:05] <@roc> tbsaunde: working on related issues
- # [23:05] * Quits: ericjung__ (ericjung@moz-0523c5.7ch4.iin2.0006.2601.IP) (Quit: Leaving)
- # [23:05] * Quits: bbondy_ (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
- # [23:07] <tbsaunde> roc: thanks
- # [23:08] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [23:09] * Quits: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net) (Connection closed)
- # [23:09] <fitzgen> NS_NewLocalFile throws if the path is relative, but how do I expand the path before giving it to NS_NewLocalFile?
- # [23:09] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
- # [23:09] * Joins: hharchani (uid25346@moz-h2n2r4.ealing.irccloud.com)
- # [23:10] * hharchani is now known as gos
- # [23:11] * Quits: mwobensmith (mwobensmith@moz-llbpt7.2rkg.9kg1.0101.2620.IP) (Quit: Leaving.)
- # [23:11] * Joins: mwobensmith (mwobensmith@moz-llbpt7.2rkg.9kg1.0101.2620.IP)
- # [23:11] * Quits: spohl (Adium@moz-p55.olo.156.104.IP) (Quit: Leaving.)
- # [23:11] * jlund|lunch is now known as jlund|buildduty
- # [23:12] * RyanVM|sheriffduty is now known as RyanVM|afk
- # [23:12] * KWierso is now known as KWierso|sheriffduty
- # [23:13] * bobowen is now known as bobowen|afk
- # [23:13] <fitzgen> froydnj: happen to know ^ ?
- # [23:14] * jmaher is now known as jmaher|afk
- # [23:14] <froydnj> fitzgen: I am looking...one would think there was an appropriate method on nsIFile
- # [23:14] * Quits: rednaks (rednaks@moz-leq.opv.18.197.IP) (Quit: Leaving)
- # [23:16] <fitzgen> gah, but NS_NewLocalFile takes a file path, not an nsIFile
- # [23:16] * Joins: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com)
- # [23:16] <froydnj> oh, whoops, I see what you're doing, I thought you were talking about streams
- # [23:17] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Ping timeout: 121 seconds)
- # [23:17] <froydnj> fitzgen: are you just creating a file in a random directory on the file system?
- # [23:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/1cb7264b9553 - Justin Dolske - Bug 1118831 - Loop: click to add Hello icon to toolbar. r=mattn
- # [23:17] <fitzgen> froydnj: the current workind directoy
- # [23:18] <fitzgen> directory*
- # [23:18] * Joins: m_gol (m_gol@moz-eru58u.static.chello.pl)
- # [23:18] <fitzgen> working*
- # [23:19] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
- # [23:19] * Quits: m_gol (m_gol@moz-eru58u.static.chello.pl) (Quit: Linkinus - http://linkinus.com)
- # [23:19] <Mossop> fitzgen: You need to get the current working directory as an nsIFile then call appendRelativePath on it
- # [23:20] <froydnj> fitzgen: my guess is that you'd get "CurWorkD" from the directory service and then build your filename like ^
- # [23:20] <fitzgen> Mossop: and then convert that back to a string for NS_NewLocalFile?
- # [23:20] * yzen is now known as yzen_
- # [23:20] <Mossop> fitzgen: No, appendRelativePath will mutate that nsIFile to point to what you want, no need to call NS_NewLocalFile at all
- # [23:21] * Quits: hallvors (uid23371@moz-uj1g6s.highgate.irccloud.com) (Quit: Connection closed for inactivity)
- # [23:22] * Joins: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp)
- # [23:23] * Joins: m_gol (m_gol@moz-eru58u.static.chello.pl)
- # [23:23] * AutomatedTester is now known as AutomatedTester|busy
- # [23:23] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/0830bbbf437b - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [23:23] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/670da212a80c - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [23:23] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [23:24] * Quits: yzen_ (yzen@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [23:25] <fitzgen> Mossop: what is the easiest way to just take an arbitrary file path as a string and create an nsIFile for that path?
- # [23:25] * Joins: alexosaurus (Adium@moz-5m3g0d.electronworkshop.com.au)
- # [23:25] <fitzgen> either absolute or relative
- # [23:25] * Quits: ahal (ahal@moz-blga2k.cpe.pppoe.ca) (A TLS packet with unexpected length was received.)
- # [23:25] <fitzgen> it seems like there has to be an easier way than what I'm dealing with now...
- # [23:26] <Mossop> I don't know if there is one
- # [23:26] <Mossop> Sine any relative path you're going to have to know what it is relative to
- # [23:27] <fitzgen> I declare that the API I am implementing will only accept absolute paths
- # [23:27] * fitzgen sidesteps the problem
- # [23:27] * bsmedberg-bbiab is now known as bsmedberg
- # [23:27] * Joins: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch)
- # [23:28] <Waldo> fitzgen: note that despite IDL claims, some appendRelativePath implementations in the tree *do not* prohibit relative paths like "../../outside/trusted/root/secure.data" from working exactly the way you might not want them to
- # [23:28] * Joins: Rik (rik@moz-luv43d.rev.numericable.fr)
- # [23:28] <Waldo> fitzgen: or you reached the better conclusion, woo :-)
- # [23:28] * Quits: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp) (Ping timeout: 121 seconds)
- # [23:28] <fitzgen> :)
- # [23:29] * Quits: alexosaurus (Adium@moz-5m3g0d.electronworkshop.com.au) (Ping timeout: 121 seconds)
- # [23:29] * Joins: alexosaurus (Adium@moz-0fs.jtu.223.111.IP)
- # [23:29] * Joins: mayhemer (Miranda@moz-5uf4lm.joqu.pdma.1028.2a00.IP)
- # [23:30] <Waldo> relative paths to a cwd that's largely meaningless for anything but commandline apps are generally a bad idea
- # [23:30] * Quits: juanb (jbecerra@moz-cfhap5.mtv2.mozilla.com) (Quit: restart)
- # [23:30] * Waldo sprinkles subject-verb agreement seasoning on that
- # [23:30] * Joins: maxli (maxli@moz-fi7.g4b.97.129.IP)
- # [23:31] * kats is now known as kats|away
- # [23:36] * Joins: secretrobotron (secretrobot@moz-i5m.05u.207.66.IP)
- # [23:36] * Quits: jfkthame (jfkthame@moz-2a7.i06.29.2.IP) (Quit: This computer has gone to sleep)
- # [23:39] * Joins: badescunicu (Thunderbird@moz-fg6nns.v03t.g898.2f0a.2a02.IP)
- # [23:40] * Quits: secretrobotron_ (secretrobot@moz-6tktvo.ckpj.s0pt.0450.2001.IP) (Ping timeout: 121 seconds)
- # [23:40] * Quits: tromey (tromey@moz-qvk910.hlrn.qwest.net) (Quit: ERC (IRC client for Emacs 25.0.50.3))
- # [23:41] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/5b21e1bf0ee7 - Jordan Lund - Bug 1117241 - add Aurora support for split-apk builds - l10n fix, r=rail a=lmandel
- # [23:42] * Joins: juanb (jbecerra@moz-cfhap5.mtv2.mozilla.com)
- # [23:42] * Quits: rbarnes (rbarnes@moz-pe71cj.cust.bluewin.ch) (Connection closed)
- # [23:42] * Joins: rbarnes (rbarnes@moz-pe71cj.cust.bluewin.ch)
- # [23:42] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=33445508e525 - 30 changesets
- # [23:44] * Quits: m_gol (m_gol@moz-eru58u.static.chello.pl) (Quit: Linkinus - http://linkinus.com)
- # [23:44] * Joins: jib (Jan-Ivar@moz-7o3g6p.dyn.optonline.net)
- # [23:44] * Joins: m_gol (m_gol@moz-eru58u.static.chello.pl)
- # [23:45] * Joins: jdm (jdm@moz-hahib4.nemh.1887.0450.2001.IP)
- # [23:46] * Quits: Sander (chatzilla@moz-f4egml.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:50] * Quits: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [23:50] * Joins: bholley (bholley@moz-jaejpj.ca.comcast.net)
- # [23:51] * Joins: cpearce_ (chatzilla@moz-dlsasl.dqqd.b0fh.0cb0.2001.IP)
- # [23:51] * Joins: tantek (tantek@moz-3b3.h8g.242.50.IP)
- # [23:52] * Quits: victorporof (victorporof@moz-i5m.05u.207.66.IP) (Quit: 💤)
- # [23:53] * heycam is now known as heycam|away
- # [23:53] * Quits: heycam|away (cam@moz-cqgqob.mcc.id.au) (Quit: Terminated with extreme prejudice - dircproxy 1.0.5)
- # [23:53] * Joins: victorporof (victorporof@moz-i5m.05u.207.66.IP)
- # [23:54] * whimboo is now known as whimboo|afk
- # [23:54] * Quits: victorporof (victorporof@moz-i5m.05u.207.66.IP) (Connection closed)
- # [23:55] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout: 121 seconds)
- # [23:59] * Quits: jet (uid49872@moz-oqb09r.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
- # [23:59] * Quits: dmajor_ (dmajor@moz-9aango.dqqd.b0fh.0cb0.2001.IP) (Quit: Leaving)
- # [23:59] * Joins: dmajor (dmajor@moz-9aango.dqqd.b0fh.0cb0.2001.IP)
- # Session Close: Wed Jan 28 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