/irc-logs / mozilla / #developers / 2014-02-15 / end

Options:

  1. # Session Start: Sat Feb 15 00:00:00 2014
  2. # Session Ident: #developers
  3. # [00:00] <ejpbruel_> bent: what was the third thing again?
  4. # [00:00] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  5. # [00:00] * Quits: erahm (Adium@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: Leaving.)
  6. # [00:00] <ejpbruel_> oh yeah
  7. # [00:00] <ejpbruel_> what to do if were suspended
  8. # [00:01] * Joins: erahm (Adium@5AAE35B2.5EFFC0B8.24454B25.IP)
  9. # [00:01] <ejpbruel_> bent: what does it mean for a worker to be suspended?
  10. # [00:01] * mcote is now known as mcote|afk
  11. # [00:01] <ejpbruel_> bent: does that mean we cant run any code on it?
  12. # [00:01] <bent> we basically block the worker in the operation callback
  13. # [00:02] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  14. # [00:02] * Quits: lmandel (lmandel@moz-60AD75.cable.teksavvy.com) (Input/output error)
  15. # [00:02] * Quits: myk (myk@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  16. # [00:02] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  17. # [00:03] * Quits: erahm (Adium@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  18. # [00:03] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  19. # [00:03] <bent> ejpbruel_, it wakes up for control runnables,
  20. # [00:03] <bent> ejpbruel_, but your debugger server thing will need to be aware that no js is actually running
  21. # [00:04] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  22. # [00:04] * Quits: jammink_ (textual@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  23. # [00:04] <ejpbruel_> bent: how do you mean?
  24. # [00:05] <bent> well what happens if your server thing gets a command to pause js
  25. # [00:05] <bent> break or whatever
  26. # [00:05] <bent> and inspect variables
  27. # [00:05] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  28. # [00:05] * Joins: myk (myk@moz-BBE3ABD.mv.mozilla.com)
  29. # [00:05] <bent> but the worker is suspended
  30. # [00:05] <ejpbruel_> bent: i think the way the API works
  31. # [00:05] <ejpbruel_> bent: is that you dont tell the debugger server to break
  32. # [00:05] * Joins: jammink_ (textual@moz-BBE3ABD.mv.mozilla.com)
  33. # [00:05] <ejpbruel_> bent: but to set a breakpoint
  34. # [00:06] * Quits: robertbindar (Thunderbir@78A65DEE.7FBC8CF6.2B3D3D4.IP) (Ping timeout)
  35. # [00:07] <bent> ok, so maybe nothing to worry about
  36. # [00:07] * jhopkins is now known as jhopkins|afk
  37. # [00:08] <ejpbruel_> bent: double checking
  38. # [00:08] * philor|away is now known as philor
  39. # [00:09] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  40. # [00:09] * Quits: briansmith (briansmith@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  41. # [00:09] * Joins: robertbindar (Thunderbir@78A65DEE.7FBC8CF6.2B3D3D4.IP)
  42. # [00:10] * ggp is now known as ggp|away
  43. # [00:10] * Quits: dew (Instantbir@moz-D2186B13.static.stls.mo.charter.com) (Ping timeout)
  44. # [00:10] * Joins: dew (Instantbir@moz-D2186B13.static.stls.mo.charter.com)
  45. # [00:11] <ejpbruel_> bent: i need to double check this with jimb
  46. # [00:11] <ejpbruel_> bent: its probably fine though if there is no worker code running
  47. # [00:11] <ejpbruel_> bent: btw
  48. # [00:12] <ejpbruel_> bent: it sounds like we will also need a control runnable for sending debugger messages
  49. # [00:12] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  50. # [00:12] * Joins: erahm (Adium@5AAE35B2.5EFFC0B8.24454B25.IP)
  51. # [00:12] <bent> definitely
  52. # [00:12] <ejpbruel_> bent: unless its ok for the debugger server to not respond until the worker is unsuspended
  53. # [00:12] <ejpbruel_> bent: oh, no
  54. # [00:12] <ejpbruel_> bent: because of the while (1) thing
  55. # [00:12] * Joins: Gijs (gijs@moz-DFD65C05.range81-159.btcentralplus.com)
  56. # [00:12] <ejpbruel_> bent: we might never receive the message otherwise
  57. # [00:12] <ejpbruel_> right
  58. # [00:13] <ejpbruel_> bent: first things first
  59. # [00:13] <ejpbruel_> bent: ill see if i can evaluate a debugger script using a control runnable
  60. # [00:13] <ejpbruel_> bent: thanks for your explanation
  61. # [00:14] <ejpbruel_> bent: it turned out to be more complex than i thought, as usual, so i really appreciate your help :)
  62. # [00:14] <bent> yeah, just avoid spinning loops
  63. # [00:14] <ejpbruel_> bent: oh
  64. # [00:14] <ejpbruel_> bent: thats another issue
  65. # [00:14] * Quits: dew (Instantbir@moz-D2186B13.static.stls.mo.charter.com) (Ping timeout)
  66. # [00:14] <ejpbruel_> bent: our idea for sending debugger messages from the debugger script to the main thread
  67. # [00:14] <ejpbruel_> bent: was to create a sync loop
  68. # [00:14] <ejpbruel_> bent: the reason for that is that we dont want any events to trigger on the main event loop while the debugger is active
  69. # [00:14] <drs> snorp: not sure if you noticed or not, but your bustage fix didn't work
  70. # [00:15] <ejpbruel_> bent: but as you just pointed out, we cant fire sync loops from control runnables
  71. # [00:15] * Joins: dew (Instantbir@moz-D2186B13.static.stls.mo.charter.com)
  72. # [00:15] <ejpbruel_> bent: and if we use control runnables to dispatch messages from the main thread to the debugger script
  73. # [00:15] <ejpbruel_> bent: that means we cant fire up a sync loop from the onmessage event handler...
  74. # [00:15] * Quits: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Textual IRC Client: www.textualapp.com)
  75. # [00:16] * Quits: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  76. # [00:16] * Quits: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  77. # [00:16] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  78. # [00:17] * Quits: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net) (Ping timeout)
  79. # [00:17] <ejpbruel_> bent: on the main thread we just use suppressEventHandling and suspendTimeouts
  80. # [00:17] <ejpbruel_> bent: could we do something similar on a worker?
  81. # [00:17] * Joins: aja (Instantbir@67322088.783FD75.C36B37E4.IP)
  82. # [00:18] * sheppy is now known as sheppy-offline
  83. # [00:19] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  84. # [00:19] * Joins: tonymec|away (tonymec@1524086B.761B2BF7.9D2324B7.IP)
  85. # [00:20] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  86. # [00:23] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  87. # [00:23] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  88. # [00:24] * Quits: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  89. # [00:25] * Joins: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  90. # [00:25] * Quits: robertbindar (Thunderbir@78A65DEE.7FBC8CF6.2B3D3D4.IP) (Ping timeout)
  91. # [00:25] * Joins: harth (harth@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  92. # [00:27] <gaston> memory/mozalloc/VolatileBufferFallback.cpp:34:2: error: "No memalign implementation found"
  93. # [00:27] <gaston> oh gawd, what now
  94. # [00:27] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  95. # [00:28] * Quits: Pike (chatzilla@moz-DFED5F91.pool.mediaways.net) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  96. # [00:28] * Joins: robertbindar (Thunderbir@78A65DEE.7FBC8CF6.2B3D3D4.IP)
  97. # [00:29] * Quits: erahm (Adium@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: Leaving.)
  98. # [00:29] * Quits: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  99. # [00:29] * Joins: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  100. # [00:29] * Joins: BigBro (ibrahim@moz-61EA4B93.fbx.proxad.net)
  101. # [00:29] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  102. # [00:29] * Joins: dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  103. # [00:29] * ChanServ sets mode: +ao dbaron dbaron
  104. # [00:29] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/b61023119a21 - Masatoshi Kimura - Bug 969728 - Make users using temporary profile possible to update using the maintenance service. r=bbondy a=lsblakk
  105. # [00:31] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  106. # [00:31] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  107. # [00:32] <NeilAway> ted: should I give up on removing nsICrashRepoter::SetEanbled?
  108. # [00:34] <bent> ejpbruel_, sorry, got pulled to something else
  109. # [00:34] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  110. # [00:34] <bent> ejpbruel_, so sync loops are useful for the worker script
  111. # [00:34] * Quits: abr (abr@moz-BBE3ABD.mv.mozilla.com) (Quit: AFK)
  112. # [00:35] <bent> ejpbruel_, i don't think they're really useful if you're running some code on another global
  113. # [00:35] <bent> ejpbruel_, you could just write that code expecting to block
  114. # [00:35] <bent> or maybe i'm not understanding
  115. # [00:35] * Joins: abr (abr@moz-BBE3ABD.mv.mozilla.com)
  116. # [00:36] * Quits: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP) (Quit: badescunicu)
  117. # [00:36] * Quits: Gijs (gijs@moz-DFD65C05.range81-159.btcentralplus.com) (Quit: sleep soon)
  118. # [00:37] * Quits: BigBro (ibrahim@moz-61EA4B93.fbx.proxad.net) (Quit: Leaving)
  119. # [00:38] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  120. # [00:39] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  121. # [00:39] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Quit: )
  122. # [00:39] * Joins: briansmith (briansmith@moz-C07D5168.p2p.sfo1.mozilla.com)
  123. # [00:40] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  124. # [00:40] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  125. # [00:41] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  126. # [00:41] * Quits: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  127. # [00:41] * Joins: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  128. # [00:41] * BenWa is now known as BenWa|email
  129. # [00:42] <dholbert> dolske, congrats! you and your fortress got some shout-outs in some helpful Firefox input from a user ( https://input.mozilla.org/en-US/dashboard/response/4204645 )
  130. # [00:42] <dholbert> er, meant that for #foxymonkies, but whatever
  131. # [00:42] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  132. # [00:42] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  133. # [00:42] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  134. # [00:43] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  135. # [00:43] <dholbert> [warning, nsfw language in that input link ^]
  136. # [00:43] * coop is now known as coop|afk
  137. # [00:43] * Quits: Six (Mibbit@moz-44EA82.rev.numericable.fr) (Quit: http://www.mibbit.com ajax IRC Client)
  138. # [00:43] <padenot> Platform
  139. # [00:43] <padenot> Adolf Hitler 88.0
  140. # [00:43] <padenot> seems legit
  141. # [00:43] <dholbert> yup
  142. # [00:43] <dholbert> I think we're dropping support for it soon, though
  143. # [00:43] <dholbert> after OS/2
  144. # [00:44] <padenot> yeah
  145. # [00:44] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Quit: ChatZilla 0.9.90.1 [Firefox 30.0a1/20140214030202])
  146. # [00:45] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  147. # [00:45] * Quits: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  148. # [00:45] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  149. # [00:47] <@ehsan> so I guess it's on me to back snorp out?
  150. # [00:47] <philor> only if you want an open inbound
  151. # [00:47] <@ehsan> philor: should I not?
  152. # [00:47] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  153. # [00:48] * Quits: curiousguy13 (chatzilla@B341425F.92764854.50E99975.IP) (Connection reset by peer)
  154. # [00:48] <philor> ehsan: entirely up to you - whoever wants it open can back him out
  155. # [00:48] <@ehsan> will do that
  156. # [00:48] * BenWa|email is now known as BenWa
  157. # [00:48] <shu> dholbert: i like his dedication to internationalization
  158. # [00:49] <dholbert> shu, heh
  159. # [00:49] <gw280> ehsan: I was going to, but if you want to then go for it :)
  160. # [00:49] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  161. # [00:49] <@ehsan> gw280: already on it
  162. # [00:49] <gw280> ehsan: <3
  163. # [00:49] <gw280> thanks
  164. # [00:49] <@ehsan> np
  165. # [00:49] <gw280> I just got home
  166. # [00:49] <@ehsan> I haven't left yet!
  167. # [00:49] <gw280> I spent the entire bus ride home loling at snorp over gtalk
  168. # [00:49] <@ehsan> you're clearly winning
  169. # [00:49] <@ehsan> haha
  170. # [00:50] <gw280> I'm taking over landing his patch
  171. # [00:50] * Joins: curiousguy13 (chatzilla@2D319931.36E7CFA7.50E99975.IP)
  172. # [00:50] <gw280> seeing as he's clearly incompetent :)
  173. # [00:51] <gw280> (jk, we love snorp really)
  174. # [00:51] <@ehsan> gw280: I would love to see some reds on your push ;)
  175. # [00:52] <gw280> ehsan: hah
  176. # [00:52] <gw280> ehsan: I'm pushing everything through the graphics branch first
  177. # [00:52] <@ehsan> gw280: that's technically cheating!
  178. # [00:52] <@ehsan> but it's good :)
  179. # [00:52] <gw280> ehsan: graphics branch is now my personal branch
  180. # [00:53] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/91dea745dd4a - Ehsan Akhgari - Backed out 2 changesets (bug 939276) because of build bustage
  181. # [00:53] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/6f78482c5792 - Jeff Muizelaar - Bug 973088. Use nsContentUtils::GetSecurityManager(). r=ehsan
  182. # [00:53] * Fallen|away is now known as Fallen
  183. # [00:53] <@ehsan> gw280: we should call it the G branch!
  184. # [00:53] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/0691948a0abe - Ehsan Akhgari - Bug 784739 follow-up: Use NULL in npruntime.h
  185. # [00:53] * Quits: abr (abr@moz-BBE3ABD.mv.mozilla.com) (Quit: AFK)
  186. # [00:53] <gw280> :P
  187. # [00:53] <@ehsan> ok, tree's open everyone
  188. # [00:53] <@ehsan> please be gentle
  189. # [00:53] <gw280> ehsan: yolo, land straight on m-c
  190. # [00:53] <gw280> duh
  191. # [00:54] <@ehsan> alright I'm calling it a night now
  192. # [00:54] <NeilAway> aargh, askmo's keyboard accessibility sucks
  193. # [00:55] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  194. # [00:55] <@ted> NeilAway: sounds like it
  195. # [00:55] <@ted> given that we're still using it in C++ tests (i forgot about those)
  196. # [00:56] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  197. # [00:56] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b11d40f3ba4b - Jeff Gilbert - Bug 972622 - MakeCurrent during WebGL.compressedTex(Sub)Image2D(). - r=kamidphish
  198. # [00:56] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/31b0e162f80e - Jeff Gilbert - Bug 972620 - MakeCurrent during WebGL.hint(). - r=kamidphish
  199. # [00:56] * Joins: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  200. # [00:57] <NeilAway> ted: ok
  201. # [00:57] <NeilAway> ted: I take it it works in xpcshell because that bit's part of libxul?
  202. # [00:58] * Joins: jimb (user@moz-ED4AA0F2.hsd1.wa.comcast.net)
  203. # [00:58] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  204. # [00:58] * Joins: alice (alice@moz-FB94486E.thefacebook.com)
  205. # [00:58] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  206. # [00:59] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/abe987db4368 - Randell Jesup - Bug 972097: fix merge failure (lost 'rtcp_') r=padenot
  207. # [01:01] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  208. # [01:02] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Ping timeout)
  209. # [01:02] * Quits: alice (alice@moz-FB94486E.thefacebook.com) (Client exited)
  210. # [01:03] * Joins: soumyaC2 (soumyaC@moz-E0F149F7.members.linode.com)
  211. # [01:03] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  212. # [01:04] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Ping timeout)
  213. # [01:04] * Joins: bgrins (Adium@C7203E51.FBD8ACDB.20F09BA6.IP)
  214. # [01:04] * Joins: jgriffin (jgriffin@moz-C55C3E25.hsd1.wa.comcast.net)
  215. # [01:05] * Quits: mt (mt@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  216. # [01:05] * Quits: soumyaC2 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  217. # [01:06] * Joins: alice (alice@moz-FB94486E.thefacebook.com)
  218. # [01:06] * Joins: mt (mt@moz-BBE3ABD.mv.mozilla.com)
  219. # [01:07] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Ping timeout)
  220. # [01:07] * Fallen is now known as Fallen|away
  221. # [01:08] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  222. # [01:08] * curtisk|afk is now known as curtisk
  223. # [01:09] * retornam is now known as retornam|away
  224. # [01:11] * jchen|away is now known as jchen
  225. # [01:11] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  226. # [01:12] * Quits: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: jet)
  227. # [01:13] * Quits: ekr (ekr@moz-8AB4C835.hfc.comcastbusiness.net) (Quit: ekr)
  228. # [01:14] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Ping timeout)
  229. # [01:15] * Joins: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  230. # [01:16] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  231. # [01:16] * Quits: flo-retina (Instantbir@moz-2C9D8405.ip-176-31-106.eu) (Ping timeout)
  232. # [01:16] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b057716623f9 - Bobby Holley - Bug 968335 - Use an AutoCxPusher directly in Auto{Entry,Incumbent}Global. r=bz
  233. # [01:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/cac7844c804d - Bobby Holley - Bug 968335 - Make Auto{Entry,Incumbent}Global inherit ScriptSettingsStackEntry. r=bz
  234. # [01:16] <till> bkero: ping
  235. # [01:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/2a530ceeac5d - Bobby Holley - Bug 968335 - Add an API to determine if a given AutoCxPusher corresponds to the stack-top cx push. r=bz
  236. # [01:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4fc776ee6852 - Bobby Holley - Bug 968335 - Tests. r=bz
  237. # [01:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/6a0ebe4ddd01 - Bobby Holley - Bug 968335 - Add accessors to the script settings stack entries themselves, not just the globals. r=bz
  238. # [01:16] <till> bkero: er, un-ping. I forgot that you aren't really working on PaaS stuff
  239. # [01:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4503fdf32a31 - Bobby Holley - Bug 968335 - Implement Cu.getWebIDLCallerPrincipal. r=bz
  240. # [01:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e7d697004921 - Bobby Holley - Bug 923904 - Tests. r=mccr8
  241. # [01:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5360c2573b11 - Bobby Holley - Bug 968335 - Implement GetCallerPrincipalOverride. r=bz
  242. # [01:17] <ejpbruel_> bent: ping
  243. # [01:17] <bent> ejpbruel_, about to head out
  244. # [01:17] <bent> ejpbruel_, sorry (
  245. # [01:17] <bent> :(
  246. # [01:17] <ejpbruel_> bent: :(
  247. # [01:17] <bkero> till: Hah, no problem :)
  248. # [01:18] * Quits: bent (chatzilla@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  249. # [01:18] * Quits: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP) (Quit: givanica)
  250. # [01:19] * Joins: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP)
  251. # [01:19] * Quits: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP) (Quit: givanica)
  252. # [01:19] * BenWa is now known as BenWa|email
  253. # [01:20] * Quits: kreeger (nickkreege@moz-4ECF67EB.hfc.comcastbusiness.net) (Ping timeout)
  254. # [01:20] * Quits: mt (mt@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  255. # [01:20] * jcranmer|away is now known as jcranmer
  256. # [01:21] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  257. # [01:22] * Joins: sicking (sicking@moz-8AB4C835.hfc.comcastbusiness.net)
  258. # [01:22] * Parts: aja (Instantbir@67322088.783FD75.C36B37E4.IP)
  259. # [01:22] * Joins: mt (mt@moz-BBE3ABD.mv.mozilla.com)
  260. # [01:24] * Quits: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net) (Quit: Leaving)
  261. # [01:25] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  262. # [01:26] <@ted> NeilAway: correct
  263. # [01:27] * Quits: myk (myk@moz-BBE3ABD.mv.mozilla.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  264. # [01:27] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  265. # [01:29] <romaxa> dholbert: ping
  266. # [01:30] * Joins: abr (abr@moz-BBE3ABD.mv.mozilla.com)
  267. # [01:30] <romaxa> dholbert: I have leak test detected on try... https://tbpl.mozilla.org/php/getParsedLog.php?id=34700758&tree=Try#error0, do you know how to execute that test locally?
  268. # [01:30] <romaxa> dholbert: or which test is that?
  269. # [01:31] * Joins: soumyaC3 (soumyaC@moz-E0F149F7.members.linode.com)
  270. # [01:31] * Quits: sicking (sicking@moz-8AB4C835.hfc.comcastbusiness.net) (Quit: sicking)
  271. # [01:32] * Quits: jib (Jan-Ivar@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  272. # [01:32] * Joins: jib (Jan-Ivar@moz-BBE3ABD.mv.mozilla.com)
  273. # [01:33] * BenWa|email is now known as BenWa
  274. # [01:34] * Quits: soumyaC3 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  275. # [01:34] <@smaug> romaxa: is that pointer capture thing?
  276. # [01:35] <@smaug> and if so, do you forget to release some capturing target
  277. # [01:35] * Quits: mreavy (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  278. # [01:37] * Joins: sicking (sicking@moz-8AB4C835.hfc.comcastbusiness.net)
  279. # [01:38] * Joins: ekr (ekr@moz-8AB4C835.hfc.comcastbusiness.net)
  280. # [01:38] * BenWa is now known as BenWa|email
  281. # [01:38] * curtisk is now known as curtisk|afk
  282. # [01:38] * Quits: ekr (ekr@moz-8AB4C835.hfc.comcastbusiness.net) (Quit: ekr)
  283. # [01:39] * Quits: hub (hub@moz-E12780DE.cable.teksavvy.com) (Ping timeout)
  284. # [01:39] * Joins: dholbert_ (dholbert@moz-6B6639BD.tmodns.net)
  285. # [01:39] * Quits: jesup (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  286. # [01:39] * Quits: dholbert_ (dholbert@moz-6B6639BD.tmodns.net) (Quit: Ex-Chat)
  287. # [01:40] <jgilbert> How are these counted?: Assertion count 2 is greater than expected range 0-0 assertions.
  288. # [01:40] <jgilbert> /what causes them?
  289. # [01:40] <jgilbert> NS_ASSERTION?
  290. # [01:40] <dholbert> romaxa, I don't know, but it sounds like maybe smaug does
  291. # [01:40] <romaxa> smaug: yes
  292. # [01:40] * Joins: ekr (ekr@moz-8AB4C835.hfc.comcastbusiness.net)
  293. # [01:41] <romaxa> smaug: it is capturing
  294. # [01:41] <dholbert> jgilbert, yeah
  295. # [01:41] <dholbert> jgilbert, NS_ASSERTION, NS_ERROR, NS_NOTREACHEC
  296. # [01:41] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Connection reset by peer)
  297. # [01:41] <romaxa> smaug: should I call SetCapturingContent(nullptr) at some point?
  298. # [01:41] <jgilbert> shouldn't they be printed in the log?
  299. # [01:41] <dholbert> *NOTREACHED
  300. # [01:41] <dholbert> jgilbert, all of our nonfatal assertions, basically
  301. # [01:41] <dholbert> jgilbert, they should indeed
  302. # [01:41] <@smaug> full log is a bit more useful
  303. # [01:42] <dholbert> jgilbert, though if you're looking at shortlog, it might be back a ways
  304. # [01:42] <dholbert> and hence not visible
  305. # [01:42] <@smaug> romaxa: isn't capturing content keeping strong ref to the target
  306. # [01:42] <@smaug> in which case setting it to null is needed
  307. # [01:42] <romaxa> smaug: https://tbpl.mozilla.org/php/getParsedLog.php?id=34700758&tree=Try&full=1#error0 - full log
  308. # [01:42] * Joins: kreeger (nickkreege@BFF832CB.D02B26E5.A36C57B9.IP)
  309. # [01:42] <@smaug> yeah, I was looking at that
  310. # [01:42] <@smaug> leaking the world
  311. # [01:43] <romaxa> smaug: would it be easier to use weakRef pointer?
  312. # [01:43] * Quits: robertbindar (Thunderbir@78A65DEE.7FBC8CF6.2B3D3D4.IP) (Ping timeout)
  313. # [01:44] <@smaug> romaxa: that might be actually safer yes
  314. # [01:44] <@smaug> a bit slower
  315. # [01:44] <romaxa> smaug: ah
  316. # [01:44] * Quits: ekr (ekr@moz-8AB4C835.hfc.comcastbusiness.net) (Quit: ekr)
  317. # [01:45] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  318. # [01:45] * Quits: sicking (sicking@moz-8AB4C835.hfc.comcastbusiness.net) (Quit: sicking)
  319. # [01:45] <jgilbert> dholbert, any ideas what to grep for? I'm not seeing anything
  320. # [01:45] <romaxa> smaug: anyway do you know how to reproduce this leak error locally?
  321. # [01:45] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Input/output error)
  322. # [01:45] <romaxa> smaug: I tried to run ./mach mochitest-plain layout/base/tests/test_scroll_event_ordering.html
  323. # [01:46] <romaxa> smaug: which is right abot that leak error
  324. # [01:46] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  325. # [01:46] <romaxa> smaug: but don't see any leak on shutdown
  326. # [01:46] * BenWa|email is now known as BenWa
  327. # [01:47] * Joins: ekr (ekr@moz-8AB4C835.hfc.comcastbusiness.net)
  328. # [01:47] * Joins: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  329. # [01:48] <@smaug> http://mochi.test:8888/tests/layout/base/tests/test_bug968148.html is leaked
  330. # [01:48] <@smaug> that url at least
  331. # [01:48] <romaxa> smaug: ah, ok got it
  332. # [01:48] <@smaug> and http://mochi.test:8888/tests/layout/base/tests/bug512295-2-ref.html
  333. # [01:48] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  334. # [01:48] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c566eedcc375 - Vivien Nicolas - Bug 970937 - [JavaScript Error: 'parentDocShell is null'] in LayoutHelpers.jsm. r=paul
  335. # [01:48] * Quits: bwc (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  336. # [01:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/c5753881ad5a - Vivien Nicolas - Bug 970101 - Remove a |const| leftover in ContentHandler.js. r=fabrice
  337. # [01:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a3cea57d7fab - Vivien Nicolas - Bug 965805 - Calling nsITabParent::InjectTouchEvent can results into an out of sync TabParent::mEventCaptureDepth. r=kats
  338. # [01:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a534331a6c44 - Vivien Nicolas - Bug 972085 - Use clearUserPref in settings.js for APZC related settings. r=kats
  339. # [01:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/fc09cccba55c - Vivien Nicolas - Bug 970995 - Activate devtools-layers tracking for the system app. r=janx
  340. # [01:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e75276f3bcc0 - Vivien Nicolas - Bug 972081 - Highlighting seems broken with APZC enabled. r=kats,fabrice
  341. # [01:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a23dfaabbe18 - Vivien Nicolas - Bug 968237 - Use a pref to set the threshold of the event loop lag tracker. r=ted
  342. # [01:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/30b62226a4d8 - Vivien Nicolas - Bug 969827 - Map a preference to a Gaia setting to configure the jank threshold. r=fabrice
  343. # [01:49] * Joins: soumyaC4 (soumyaC@moz-E0F149F7.members.linode.com)
  344. # [01:50] * Joins: jkitch (Thunderbir@moz-DFDE45D4.lns20.adl2.internode.on.net)
  345. # [01:51] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  346. # [01:51] * Joins: ericjung|phone (androirc@B0E757B3.F9C282AE.284344F5.IP)
  347. # [01:51] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/8cdaaf3da9f8 - Brian Smith - Bug 896620: Make marketplace certs work on in all products, r=keeler
  348. # [01:51] * Joins: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  349. # [01:52] <firebot> http://hg.mozilla.org/mozilla-central/rev/5d8fc2d51ec2 - Brian Smith - Bug 967153: Update to NSS 3.16 beta 2 (NSS_3_16_BETA2), r=me
  350. # [01:52] * Quits: RealRaven (Thunderbir@9C717A50.89AEBC9F.C3498625.IP) (Quit: RealRaven)
  351. # [01:52] * Quits: soumyaC4 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  352. # [01:52] * BenWa is now known as BenWa|email
  353. # [01:52] * Quits: mt (mt@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  354. # [01:52] * Joins: mt (mt@moz-BBE3ABD.mv.mozilla.com)
  355. # [01:53] * Quits: ehugg (ehugg@moz-C836293F.cisco.com) (Quit: ehugg)
  356. # [01:54] * Parts: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  357. # [01:54] * Quits: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  358. # [01:55] * Quits: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  359. # [01:55] * Quits: bgrins (Adium@C7203E51.FBD8ACDB.20F09BA6.IP) (Quit: Leaving.)
  360. # [01:56] * jchen is now known as jchen|away
  361. # [02:00] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e947cee33a92 - Masayuki Nakano - Bug 969247 part.1 Remove or replace DOM_VK_ENTER and NS_VK_ENTER users r=smaug
  362. # [02:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e2e9eba7dd1f - Masayuki Nakano - Bug 969247 part.2 Remove DOM_VK_ENTER and NS_VK_ENTER definition r=smaug, sr=smaug
  363. # [02:00] * BenWa|email is now known as BenWa
  364. # [02:00] * Quits: NeilZZZ (neil@moz-D4036112.cable.virginm.net) (Ping timeout)
  365. # [02:01] * Quits: ekr (ekr@moz-8AB4C835.hfc.comcastbusiness.net) (Quit: ekr)
  366. # [02:02] * Joins: soumyaC5 (soumyaC@moz-E0F149F7.members.linode.com)
  367. # [02:02] * Joins: ekr (ekr@moz-8AB4C835.hfc.comcastbusiness.net)
  368. # [02:02] * Joins: NeilZZZ (neil@moz-D4036112.cable.virginm.net)
  369. # [02:02] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  370. # [02:04] * Quits: sfoster (sfoster@moz-961AB6F2.hsd1.or.comcast.net) (Ping timeout)
  371. # [02:05] * Quits: soumyaC5 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  372. # [02:06] * Quits: ekr (ekr@moz-8AB4C835.hfc.comcastbusiness.net) (Quit: ekr)
  373. # [02:06] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  374. # [02:06] <NeilAway> smaug: hmm, I thought there was another VK_ENTER bug around somewhere
  375. # [02:07] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  376. # [02:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e5ac6baf6d0b - Masayuki Nakano - Bug 971489 Simplify constructor of WidgetSimpleGestureEvent r=smaug
  377. # [02:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/07bb55ce62e3 - Masayuki Nakano - Bug 970248 Simplify constructor of InternalUIEvent r=smaug
  378. # [02:09] * Quits: RyanVM|afk (Thunderbir@moz-37FED3AC.phlapa.fios.verizon.net) (Quit: RyanVM|afk)
  379. # [02:10] * Quits: abr (abr@moz-BBE3ABD.mv.mozilla.com) (Quit: AFK)
  380. # [02:13] * Quits: ericjung|phone (androirc@B0E757B3.F9C282AE.284344F5.IP) (Connection reset by peer)
  381. # [02:13] * Joins: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  382. # [02:13] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  383. # [02:13] * Quits: drno (nohlmeier@moz-BBE3ABD.mv.mozilla.com) (Quit: drno)
  384. # [02:14] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  385. # [02:14] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  386. # [02:14] * joshua-s is now known as joshua-s|zzz
  387. # [02:14] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  388. # [02:14] * Quits: mccr8 (mccr8@moz-F6A7B612.dsl.dynamic.sonic.net) (Quit: )
  389. # [02:15] * jlund is now known as jlund|afk
  390. # [02:15] * Joins: soumyaC6 (soumyaC@moz-E0F149F7.members.linode.com)
  391. # [02:15] * ctalbert is now known as ctalbert|afk
  392. # [02:15] * Joins: jbeich (jbeich@moz-EF57E39A.tor.uwaterloo.ca)
  393. # [02:16] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  394. # [02:16] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/3a17ca9fd87d - Terrence Cole - No Bug - Fix opt builds of generational GC when zeal is enabled; r=themaid
  395. # [02:16] * Joins: JPeterson (JPeterson@moz-E3F8E691.tbcn.telia.com)
  396. # [02:17] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  397. # [02:17] * Quits: soumyaC6 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  398. # [02:17] * Quits: wlach (wlach@moz-B77B0E55.stationc.isp.ip4b.net) (Quit: Leaving)
  399. # [02:18] * ctalbert|afk is now known as ctalbert
  400. # [02:18] * BenWa is now known as BenWa|email
  401. # [02:18] <jbeich> when re-uploading a reviewed patch with trivial changes should I always explicitly say "carrying over r+"? and should I mask original r+ with mine? see bug 968432
  402. # [02:19] * ewong|away is now known as ewong
  403. # [02:19] * Quits: jgriffin (jgriffin@moz-C55C3E25.hsd1.wa.comcast.net) (Quit: jgriffin)
  404. # [02:19] * Quits: alice (alice@moz-FB94486E.thefacebook.com) (Client exited)
  405. # [02:21] <jbeich> found in http://krijnhoetmer.nl/irc-logs/developers/20120806 Ms2ger advised me to leave r+ alone ...
  406. # [02:21] * Quits: jib (Jan-Ivar@moz-BBE3ABD.mv.mozilla.com) (Quit: jib)
  407. # [02:21] * Joins: drno (nohlmeier@moz-BBE3ABD.mv.mozilla.com)
  408. # [02:22] * Joins: alice (alice@moz-FB94486E.thefacebook.com)
  409. # [02:22] * Joins: jdm (jdm@E595D12E.1196002C.7DBB297B.IP)
  410. # [02:22] <@dolske> dholbert: "Platform Adolf Hitler 88.0
  411. # [02:22] <@dolske> lol
  412. # [02:22] <NeilAway> jbeich: aha, that was the link I wanted a few days ago :s
  413. # [02:22] * Quits: mt (mt@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  414. # [02:23] * Quits: spohl|afk (Adium@514F4E33.F8C24747.473D6A24.IP) (Quit: Leaving.)
  415. # [02:24] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  416. # [02:24] * NeilAway bookmarks it in case
  417. # [02:25] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  418. # [02:26] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  419. # [02:26] * jchen|away is now known as jchen
  420. # [02:31] * Joins: jib (Jan-Ivar@moz-7B0110AD.mv.mozilla.com)
  421. # [02:31] * Quits: drno (nohlmeier@moz-BBE3ABD.mv.mozilla.com) (Quit: drno)
  422. # [02:36] * Quits: jimb (user@moz-ED4AA0F2.hsd1.wa.comcast.net) (Ping timeout)
  423. # [02:37] * Quits: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP) (Quit: bbye all )
  424. # [02:37] * Quits: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  425. # [02:37] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Ping timeout)
  426. # [02:37] * Quits: jduell (jduell@moz-2AA1D99C.hsd1.wa.comcast.net) (Ping timeout)
  427. # [02:37] * BenWa|email is now known as BenWa
  428. # [02:37] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  429. # [02:38] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  430. # [02:39] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  431. # [02:39] * Joins: soumyaC7 (soumyaC@moz-E0F149F7.members.linode.com)
  432. # [02:41] * Joins: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz)
  433. # [02:41] * Quits: soumyaC7 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  434. # [02:42] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  435. # [02:44] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  436. # [02:44] * BenWa is now known as BenWa|email
  437. # [02:45] * Quits: ggp|away (ggp@moz-F6E24D9A.dsl.telesp.net.br) (Quit: Leaving...)
  438. # [02:48] * Joins: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net)
  439. # [02:48] * Quits: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  440. # [02:48] * Joins: jgilbert_ (jgilbert@moz-BBE3ABD.mv.mozilla.com)
  441. # [02:48] * philor is now known as philor|away
  442. # [02:49] * Quits: jgilbert (jgilbert@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  443. # [02:51] * Quits: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  444. # [02:51] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/f6781d5f2816 - Michael Comella - Bug 961526 - Part 1: Fix SQLiteConstraintException in FHR. r=rnewman, r=mcomella, a=lsblakk
  445. # [02:51] * terrence is now known as terrence-afk
  446. # [02:51] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/ca9e82e4c79a - Richard Newman - Bug 961526 - Part 2: More thorough handling of search recording events. r=mcomella, a=lsblakk
  447. # [02:52] * Joins: dholbert_ (dholbert@moz-2DBFC5C4.static.sonic.net)
  448. # [02:52] * Joins: Niharika (Happiness@FC26FEFB.7940327E.74119F78.IP)
  449. # [02:52] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  450. # [02:52] * Quits: dholbert_ (dholbert@moz-2DBFC5C4.static.sonic.net) (Client exited)
  451. # [02:52] * Quits: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: jet)
  452. # [02:53] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  453. # [02:53] * Quits: alice (alice@moz-FB94486E.thefacebook.com) (Client exited)
  454. # [02:55] * Quits: aklotz (Thunderbir@moz-36664323.cg.shawcable.net) (Input/output error)
  455. # [02:57] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  456. # [02:57] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  457. # [02:57] * Joins: tomatoeblue (textual@moz-5C3A2631.cpe.distributel.net)
  458. # [02:58] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  459. # [02:59] * Joins: jimb (user@moz-ED4AA0F2.hsd1.wa.comcast.net)
  460. # [02:59] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Quit: ChatZilla 0.9.90.1 [Firefox 30.0a1/20140214030202])
  461. # [02:59] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  462. # [03:00] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  463. # [03:00] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  464. # [03:01] * Quits: jammink_ (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  465. # [03:01] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  466. # [03:02] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/46223ef9b330 - Mats Palmgren - Bug 971933 - Calculate the desired height for the FieldSetFrame correctly. r=roc
  467. # [03:03] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/af811e70b7ad - Mats Palmgren - Bug 971655 - The inner (-moz-fieldset-content) frame have the correct padding area and is the abs.pos. containing block so don't use the outer FieldSetFrame. r=roc
  468. # [03:03] * Quits: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net) (Ping timeout)
  469. # [03:04] * Joins: alice (alice@moz-FB94486E.thefacebook.com)
  470. # [03:05] * Joins: abr (abr@moz-C15ECBB9.eug.clearwire-dns.net)
  471. # [03:07] * Quits: jib (Jan-Ivar@moz-7B0110AD.mv.mozilla.com) (Quit: jib)
  472. # [03:08] * Fallen|away is now known as Fallen
  473. # [03:09] * hwine is now known as hwine-ooo
  474. # [03:09] * Joins: flo-retina (Instantbir@moz-2C9D8405.ip-176-31-106.eu)
  475. # [03:10] * Joins: sewardj__ (sewardj@moz-2065A442.dip0.t-ipconnect.de)
  476. # [03:11] * Quits: sewardj_ (sewardj@moz-E91D8948.dip0.t-ipconnect.de) (Ping timeout)
  477. # [03:11] * Joins: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net)
  478. # [03:12] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: Mook_as)
  479. # [03:12] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  480. # [03:13] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  481. # [03:13] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  482. # [03:15] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Ping timeout)
  483. # [03:16] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  484. # [03:16] * Quits: harth (harth@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  485. # [03:17] * Fallen is now known as Fallen|away
  486. # [03:19] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  487. # [03:19] * Quits: dagnir (chatzilla@A1D3E7F1.DBF4469E.7E8D5209.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0/20140127194636])
  488. # [03:21] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  489. # [03:22] * Quits: bdahl (bdahl@125EF623.B2666F0E.66399531.IP) (Input/output error)
  490. # [03:23] * Quits: alice (alice@moz-FB94486E.thefacebook.com) (Client exited)
  491. # [03:23] * Joins: dbaron (dbaron@moz-B3F1D17A.dsl.dynamic.sonic.net)
  492. # [03:23] * ChanServ sets mode: +ao dbaron dbaron
  493. # [03:24] * Quits: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net) (Quit: Leaving)
  494. # [03:24] * Joins: bnicholson (bnicholson@moz-46A94A2D.hsd1.ca.comcast.net)
  495. # [03:25] * Quits: sunfish (chatzilla@moz-C06D9702.mtv1.mozilla.com) (Ping timeout)
  496. # [03:26] * Quits: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  497. # [03:27] * Joins: bwc1 (Adium@moz-536549A9.dsl.static.sonic.net)
  498. # [03:28] * Quits: @smaug (chatzilla@moz-7AE16235.elisa-laajakaista.fi) (Ping timeout)
  499. # [03:28] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  500. # [03:29] * philor|away is now known as philor
  501. # [03:31] <philor> huh, so it actually took *four* pushes to break inbound again?
  502. # [03:31] * Quits: abr (abr@moz-C15ECBB9.eug.clearwire-dns.net) (Quit: AFK)
  503. # [03:31] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  504. # [03:31] * Joins: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net)
  505. # [03:33] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  506. # [03:34] * Joins: twi (Adium@BC1E56B6.55F3F843.839F6EC0.IP)
  507. # [03:34] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  508. # [03:36] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  509. # [03:37] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  510. # [03:37] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  511. # [03:38] * Quits: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net) (Ping timeout)
  512. # [03:39] * Quits: chewey (chewey@moz-2D49DF0C.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  513. # [03:39] * Quits: Dagger (Dagger@moz-2B01C171.cable.virginm.net) (Ping timeout)
  514. # [03:39] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1e8c2e85575a - Phil Ringnalda - Back out 4fc776ee6852:6a0ebe4ddd01 (bug 968335) and e7d697004921 (bug 923904) for b2g emulator build bustage
  515. # [03:39] * Joins: chewey (chewey@moz-BBA7CB8F.dip0.t-ipconnect.de)
  516. # [03:40] * Joins: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  517. # [03:40] * Quits: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP) (Ping timeout)
  518. # [03:41] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  519. # [03:43] * Quits: mshal (mshal@moz-A890D35A.washdc.fios.verizon.net) (Quit: leaving)
  520. # [03:43] * Quits: KWierso|afk (chatzilla@moz-3D85277A.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 1.9.0.17/2009122204])
  521. # [03:44] * Quits: tomatoeblue (textual@moz-5C3A2631.cpe.distributel.net) (Quit: Textual IRC Client: www.textualapp.com)
  522. # [03:44] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  523. # [03:48] * Joins: soumyaC8 (soumyaC@moz-E0F149F7.members.linode.com)
  524. # [03:49] * Quits: soumyaC8 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  525. # [03:53] * Quits: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  526. # [03:54] <tetsuharu> jdm: I'll request to give me the committer lv.3 in the near future. so could you vouch me when I request it?
  527. # [03:56] * Quits: briansmith (briansmith@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  528. # [03:57] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  529. # [03:58] <jdm> tetsuharu: sure
  530. # [03:58] <tetsuharu> jdm: thank you very much!!!!!
  531. # [04:00] * Quits: azakai (alon@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  532. # [04:00] * Quits: maxli (maxli@moz-F47DD19B.student.cs.uwaterloo.ca) (Quit: Leaving.)
  533. # [04:00] <philor> mikedeboer: ping
  534. # [04:02] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  535. # [04:02] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  536. # [04:03] * bz_away is now known as bz
  537. # [04:04] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  538. # [04:04] * Joins: arky (arky@moz-391C8369.unishanoi.org)
  539. # [04:04] * Joins: spohl (Adium@moz-8D263F35.static.hvvc.us)
  540. # [04:05] * Quits: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Ping timeout)
  541. # [04:06] * Quits: spohl (Adium@moz-8D263F35.static.hvvc.us) (Ping timeout)
  542. # [04:12] * Quits: jtcranmer (jcranmer@moz-E60570D0.csl.tjhsst.edu) (Ping timeout)
  543. # [04:12] * Joins: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  544. # [04:16] * Quits: KaiRo_away (robert@moz-BCAD4CEB.adsl.highway.telekom.at) (Ping timeout)
  545. # [04:16] * Joins: KaIRC (robert@moz-1CA4DAC.adsl.highway.telekom.at)
  546. # [04:20] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  547. # [04:21] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  548. # [04:22] * Quits: blassey (quassel@moz-A4899051.hsd1.ma.comcast.net) (Ping timeout)
  549. # [04:22] * Quits: Niharika (Happiness@FC26FEFB.7940327E.74119F78.IP) (Connection reset by peer)
  550. # [04:22] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  551. # [04:23] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/31bc303caa56 - Doug Sherk - Bug 970578: Add tests for preventDefault and long tap behavior to gtest. r=kats
  552. # [04:23] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Quit: Leaving.)
  553. # [04:23] * Joins: jgilbert__ (jgilbert@moz-BBE3ABD.mv.mozilla.com)
  554. # [04:24] * Quits: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net) (Ping timeout)
  555. # [04:24] * Quits: jgilbert_ (jgilbert@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  556. # [04:24] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  557. # [04:24] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  558. # [04:25] <philor> no, actually I didn't forget to reopen it
  559. # [04:26] * Quits: KaIRC (robert@moz-1CA4DAC.adsl.highway.telekom.at) (Input/output error)
  560. # [04:32] * Quits: soreau (soreau@moz-6626C024.clsp.qwest.net) (Client exited)
  561. # [04:35] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  562. # [04:35] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  563. # [04:37] * Quits: ejpbruel_ (ejpbruel@DCCE2C03.138B9563.9DFDF413.IP) (Ping timeout)
  564. # [04:37] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Ping timeout)
  565. # [04:39] * Joins: ericjung|phone (androirc@moz-2DECD516.tmodns.net)
  566. # [04:40] * Joins: briansmith (briansmith@moz-C07D5168.p2p.sfo1.mozilla.com)
  567. # [04:41] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  568. # [04:41] * Joins: WG9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net)
  569. # [04:43] * jchen is now known as jchen|away
  570. # [04:44] * Joins: elin (elin@1FE2C4CC.9480D763.89D78A4.IP)
  571. # [04:45] * Joins: jhlin (jhlin@DEB347CD.3A7C8B79.3137B32F.IP)
  572. # [04:45] * Quits: twi (Adium@BC1E56B6.55F3F843.839F6EC0.IP) (Quit: Leaving.)
  573. # [04:45] * Quits: jdm (jdm@E595D12E.1196002C.7DBB297B.IP) (Quit: Lost terminal)
  574. # [04:46] * Joins: vichen (vichen@ACEC71C9.8D17903.52BFBD3E.IP)
  575. # [04:46] * Quits: jhlin (jhlin@DEB347CD.3A7C8B79.3137B32F.IP) (Ping timeout)
  576. # [04:48] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/b80f7eece913 - Brian Smith - Bug 896620: Revert deletion of security/build/b2g-app-root-cert.der, which was intended for bug 972201, r=me (thanks Ehsan)
  577. # [04:51] * Quits: raydeo (raydeo@moz-64F4C306.dynamic.uiowa.edu) (Quit: )
  578. # [04:51] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  579. # [04:51] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  580. # [04:53] * Quits: cers (csonne@moz-39FBFF3C.cpe.webspeed.dk) (Ping timeout)
  581. # [04:53] * Quits: WG9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 27.0/20140203120101])
  582. # [04:53] * Joins: mixedpuppy (mixedpuppy@FAD454DC.CDDF2711.C4CBE0CB.IP)
  583. # [04:53] * Quits: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Quit: gwagner)
  584. # [04:54] * Joins: cers (csonne@moz-39FBFF3C.cpe.webspeed.dk)
  585. # [04:55] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Input/output error)
  586. # [04:55] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  587. # [04:55] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  588. # [04:56] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  589. # [04:56] * Quits: flo-retina (Instantbir@moz-2C9D8405.ip-176-31-106.eu) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  590. # [04:57] * Quits: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com) (Quit: pcwalton)
  591. # [04:57] * Joins: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  592. # [04:57] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  593. # [04:59] * Quits: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  594. # [04:59] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Quit: Jesse)
  595. # [04:59] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  596. # [05:00] * Quits: mixedpuppy (mixedpuppy@FAD454DC.CDDF2711.C4CBE0CB.IP) (Quit: mixedpuppy)
  597. # [05:00] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  598. # [05:00] * Joins: twi (Adium@BC1E56B6.55F3F843.839F6EC0.IP)
  599. # [05:01] * Joins: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca)
  600. # [05:02] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  601. # [05:03] * Quits: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca) (Input/output error)
  602. # [05:04] * Joins: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca)
  603. # [05:05] * Quits: arky (arky@moz-391C8369.unishanoi.org) (Ping timeout)
  604. # [05:05] * Joins: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP)
  605. # [05:06] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  606. # [05:07] * Quits: ericjung|phone (androirc@moz-2DECD516.tmodns.net) (Client exited)
  607. # [05:07] * Joins: ericjung|phone (androirc@moz-2DECD516.tmodns.net)
  608. # [05:09] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  609. # [05:09] * Quits: jimb (user@moz-ED4AA0F2.hsd1.wa.comcast.net) (Ping timeout)
  610. # [05:10] * Joins: WG9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net)
  611. # [05:10] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  612. # [05:10] * Quits: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca) (Input/output error)
  613. # [05:11] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Quit: Leaving.)
  614. # [05:11] * Joins: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca)
  615. # [05:11] * Quits: ericjung|phone (androirc@moz-2DECD516.tmodns.net) (Connection reset by peer)
  616. # [05:11] <WG9s> I am confused by inbound closure. THis would seem to be caused by the last checkin, so just back it out already!
  617. # [05:12] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  618. # [05:12] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  619. # [05:14] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  620. # [05:18] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  621. # [05:18] * Joins: soumyaC10 (soumyaC@moz-E0F149F7.members.linode.com)
  622. # [05:18] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  623. # [05:18] * Quits: briansmith (briansmith@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  624. # [05:19] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  625. # [05:19] * Quits: serge (Thunderbir@FED1E923.DDE84BFE.DBBCD276.IP) (Ping timeout)
  626. # [05:19] * Quits: soumyaC10 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  627. # [05:21] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  628. # [05:21] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  629. # [05:22] * Joins: jdm (jdm@DFC6E2EA.EDD2F557.D938BA7F.IP)
  630. # [05:29] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  631. # [05:29] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  632. # [05:30] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  633. # [05:34] * Joins: briansmith (briansmith@moz-C07D5168.p2p.sfo1.mozilla.com)
  634. # [05:35] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  635. # [05:36] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  636. # [05:37] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  637. # [05:38] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Ping timeout)
  638. # [05:38] * Joins: arky (arky@moz-391C8369.unishanoi.org)
  639. # [05:39] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  640. # [05:41] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  641. # [05:41] * Joins: ericjung|phone (androirc@B22F4F06.F9C282AE.284344F5.IP)
  642. # [05:42] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  643. # [05:42] * Quits: arky (arky@moz-391C8369.unishanoi.org) (Connection reset by peer)
  644. # [05:44] * Quits: till (till@34E8ECDF.DC2C3734.616A18A6.IP) (Input/output error)
  645. # [05:47] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  646. # [05:47] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  647. # [05:47] * Quits: ericjung|phone (androirc@B22F4F06.F9C282AE.284344F5.IP) (Connection reset by peer)
  648. # [05:48] * Quits: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  649. # [05:49] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  650. # [05:49] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  651. # [05:50] * Quits: elin (elin@1FE2C4CC.9480D763.89D78A4.IP) (Quit: elin)
  652. # [05:50] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  653. # [05:50] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  654. # [05:52] * Quits: Bas (chatzilla@moz-EC262A19.ftth.concepts.nl) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  655. # [05:54] <@dbaron> WG9s, no, looks like the hg server is returning "500 Internal Server Error"
  656. # [05:54] <@dbaron> WG9s, well, actually, there's bustage too
  657. # [05:55] <bz> Could be worse. Could be "200 Internal Server Error"
  658. # [05:56] <philor> another paired-question to ask is "when did we last do the builds which trigger our b2g tests, and what is above that?"
  659. # [05:56] <@dbaron> philor, which builds are those?
  660. # [05:56] <philor> b2g ics emu
  661. # [05:56] <@dbaron> anyway, I'll do the backout if nobody else is
  662. # [05:57] <philor> and the 500s are just noise, we retry on that
  663. # [05:57] <philor> I'd rather you didn't
  664. # [05:57] <philor> the last time I backed out bustage and left the tree closed, someone reopened it
  665. # [05:57] <philor> this way seems to be holding closed better
  666. # [05:57] <@dbaron> philor, what's the other reason to hold the tree closed?
  667. # [05:57] <WG9s> dbaron: yes i sis not notice the 500 errors the bustage seems to be caused by the last checkin.
  668. # [05:58] * philor backspaces quite a lot
  669. # [05:58] <WG9s> if it is closed for the 500 errors then i would think all trees should be closed.
  670. # [05:58] <philor> dbaron: because we landed a crapton of b2g on top of b2g bustage, so we haven't tested it yet
  671. # [05:58] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7cd180ea79fe - L. David Baron - Backed out changeset 31bc303caa56 (bug 970578) for failing to compile on many platforms, on a CLOSED TREE.
  672. # [05:58] * ewong is now known as ewong|away
  673. # [05:58] * philor is now known as philor|away
  674. # [05:59] * Joins: elin (elin@1FE2C4CC.9480D763.89D78A4.IP)
  675. # [06:00] <@dbaron> philor|away, so the condition you propose for reopening is that a "b2g ics emu" build runs, and tests run on it?
  676. # [06:00] <@dbaron> philor|away, is that not what happened on your backout push?
  677. # [06:02] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Quit: ChatZilla 0.9.90.1 [Firefox 30.0a1/20140214030202])
  678. # [06:02] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  679. # [06:03] * Quits: Matti (Matti@moz-EF4B2D73.dip0.t-ipconnect.de) (Ping timeout)
  680. # [06:04] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  681. # [06:07] * Joins: Matti_away (Matti@moz-6768C3BA.dip0.t-ipconnect.de)
  682. # [06:07] * Matti_away is now known as Matti
  683. # [06:09] * Quits: tn (tim@moz-2E73ACE4.wp.shawcable.net) (Ping timeout)
  684. # [06:09] * Joins: tn (tim@moz-2E73ACE4.wp.shawcable.net)
  685. # [06:10] * Joins: soumyaC11 (soumyaC@moz-E0F149F7.members.linode.com)
  686. # [06:11] * Quits: soumyaC11 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  687. # [06:12] * Quits: WG9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 27.0/20140203120101])
  688. # [06:12] * Quits: briansmith (briansmith@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: Leaving)
  689. # [06:12] * Quits: elin (elin@1FE2C4CC.9480D763.89D78A4.IP) (Quit: elin)
  690. # [06:15] * Quits: jdm (jdm@DFC6E2EA.EDD2F557.D938BA7F.IP) (Quit: Lost terminal)
  691. # [06:16] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  692. # [06:16] * Quits: jgilbert__ (jgilbert@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  693. # [06:16] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  694. # [06:21] * Joins: mixedpuppy (mixedpuppy@15F08F76.1257EE14.F0219BEF.IP)
  695. # [06:23] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Client exited)
  696. # [06:25] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Connection reset by peer)
  697. # [06:26] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  698. # [06:26] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  699. # [06:28] * Quits: simo (simo@9FD712B2.1E73AC39.8A1F9AD.IP) (Ping timeout)
  700. # [06:28] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  701. # [06:29] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Ping timeout)
  702. # [06:30] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  703. # [06:30] <@dbaron> I think that test run is mostly looking good at this point (most are green, one seemingly-known-intermittent orange, a few left to finish)
  704. # [06:30] * jcranmer is now known as jcranmer|away
  705. # [06:32] * Quits: mixedpuppy (mixedpuppy@15F08F76.1257EE14.F0219BEF.IP) (Quit: mixedpuppy)
  706. # [06:32] * Joins: mixedpuppy (mixedpuppy@15F08F76.1257EE14.F0219BEF.IP)
  707. # [06:32] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/dd1f8adbfecc - L. David Baron - Bug 480888 patch 4: Draw outline around the union of border boxes, SVG, and text, rather than the visual overflow area. r=roc
  708. # [06:32] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/488467210d84 - L. David Baron - Bug 972088: Make nsIFrame::Preserves3DChildren not call nsStyleDisplay::HasTransform (pure refactoring). r=mattwoodrow
  709. # [06:32] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/d659d5d5f45f - L. David Baron - Bug 480888 patch 2: Remove always-true aStoreRectProperties parameter to ComputeEffectsRect. r=roc
  710. # [06:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/6e53e28ec256 - L. David Baron - Bug 541855: Add in the error tolerance before calling the timing function, so that we allow more error for steeper functions, and less error for most. r=dholbert
  711. # [06:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/1ff86655c1d0 - L. David Baron - Bug 480888 patch 1: Rename ComputeOutlineAndEffectsRect to ComputeEffectsRect. r=roc
  712. # [06:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/8ebf78b46aae - L. David Baron - Bug 480888 patch 3: Refactor a common pattern into a FrameMaintainsOverflow helper function. r=roc
  713. # [06:34] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  714. # [06:34] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  715. # [06:39] * Quits: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  716. # [06:39] * Quits: curiousguy13 (chatzilla@2D319931.36E7CFA7.50E99975.IP) (Ping timeout)
  717. # [06:39] * Joins: curiousguy13_ (chatzilla@2D319931.36E7CFA7.50E99975.IP)
  718. # [06:39] * curiousguy13_ is now known as curiousguy13
  719. # [06:40] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  720. # [06:41] * Quits: mwu_ (mwu@moz-2E883D31.hsd1.nj.comcast.net) (Ping timeout)
  721. # [06:42] * Joins: Bas (chatzilla@moz-EC262A19.ftth.concepts.nl)
  722. # [06:43] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Ping timeout)
  723. # [06:43] * Joins: simo (simo@8C721AC3.882337F1.12E82FEE.IP)
  724. # [06:43] * Quits: mixedpuppy (mixedpuppy@15F08F76.1257EE14.F0219BEF.IP) (Quit: mixedpuppy)
  725. # [06:47] * Joins: ericjung|phone (androirc@27EA5B5C.F9C282AE.284344F5.IP)
  726. # [06:48] * Quits: twi (Adium@BC1E56B6.55F3F843.839F6EC0.IP) (Quit: Leaving.)
  727. # [06:49] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  728. # [06:49] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  729. # [06:49] * Joins: mixedpuppy (mixedpuppy@15F08F76.1257EE14.F0219BEF.IP)
  730. # [06:50] * Quits: curiousguy13 (chatzilla@2D319931.36E7CFA7.50E99975.IP) (Ping timeout)
  731. # [06:52] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Client exited)
  732. # [06:52] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  733. # [06:53] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  734. # [06:54] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  735. # [06:54] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  736. # [06:55] * Joins: curiousguy13 (chatzilla@65044DF2.640B238F.85BF2EFC.IP)
  737. # [06:57] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  738. # [06:57] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  739. # [06:57] * Quits: ericjung|phone (androirc@27EA5B5C.F9C282AE.284344F5.IP) (Connection reset by peer)
  740. # [06:58] * Quits: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  741. # [06:58] * Joins: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net)
  742. # [06:58] * Joins: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  743. # [06:59] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  744. # [07:00] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  745. # [07:00] * Quits: curiousguy13 (chatzilla@65044DF2.640B238F.85BF2EFC.IP) (Ping timeout)
  746. # [07:01] * Joins: m_gol (m_gol@F3E90C2A.2BE51E56.888BF55D.IP)
  747. # [07:01] * Joins: till (till@34E8ECDF.DC2C3734.616A18A6.IP)
  748. # [07:02] * Quits: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Quit: gwagner)
  749. # [07:03] * Quits: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  750. # [07:06] * Joins: nil1511 (nil1511@8E6C34C1.A3F9767A.1C37C358.IP)
  751. # [07:06] * Quits: kreeger (nickkreege@BFF832CB.D02B26E5.A36C57B9.IP) (Ping timeout)
  752. # [07:07] * Joins: curiousguy13 (chatzilla@AA2DD20B.3C8FA362.50E99975.IP)
  753. # [07:07] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  754. # [07:08] * Joins: jesup (chatzilla@F981A702.ED8DACAE.49D91E5E.IP)
  755. # [07:10] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  756. # [07:10] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  757. # [07:10] * Fallen|away is now known as Fallen
  758. # [07:10] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  759. # [07:13] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  760. # [07:13] * Quits: jonasfj (jonasfj@moz-F9C6FBE1.hsd1.ca.comcast.net) (Ping timeout)
  761. # [07:15] * jchen|away is now known as jchen
  762. # [07:16] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  763. # [07:17] * Quits: mixedpuppy (mixedpuppy@15F08F76.1257EE14.F0219BEF.IP) (Quit: mixedpuppy)
  764. # [07:17] * Quits: m_gol (m_gol@F3E90C2A.2BE51E56.888BF55D.IP) (Connection reset by peer)
  765. # [07:17] * Joins: m_gol (m_gol@F3E90C2A.2BE51E56.888BF55D.IP)
  766. # [07:19] * Fallen is now known as Fallen|away
  767. # [07:21] * Joins: squeakytoy2 (squeakytoy@moz-79070305.dynamic.se.alltele.net)
  768. # [07:22] * Quits: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net) (Ping timeout)
  769. # [07:22] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  770. # [07:23] * Quits: till (till@34E8ECDF.DC2C3734.616A18A6.IP) (Input/output error)
  771. # [07:23] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  772. # [07:24] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  773. # [07:24] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  774. # [07:25] * jchen is now known as jchen|away
  775. # [07:25] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Input/output error)
  776. # [07:26] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  777. # [07:28] * Joins: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net)
  778. # [07:28] * Quits: squeakytoy2 (squeakytoy@moz-79070305.dynamic.se.alltele.net) (Ping timeout)
  779. # [07:32] * Joins: mixedpuppy (mixedpuppy@15F08F76.1257EE14.F0219BEF.IP)
  780. # [07:32] * Joins: jgilbert (jgilbert@moz-5918CE12.hsd1.ca.comcast.net)
  781. # [07:32] * Joins: Jerry (hshih@399B4195.9EE4A888.241036C9.IP)
  782. # [07:34] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  783. # [07:34] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  784. # [07:36] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  785. # [07:36] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  786. # [07:37] * Joins: bdahl (bdahl@moz-102118C9.hsd1.or.comcast.net)
  787. # [07:41] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Input/output error)
  788. # [07:41] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Input/output error)
  789. # [07:41] * Joins: recursive (recursive@B07811B5.933E581B.547774E7.IP)
  790. # [07:42] * Joins: kreeger (nickkreege@BFF832CB.D02B26E5.A36C57B9.IP)
  791. # [07:43] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  792. # [07:44] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  793. # [07:45] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  794. # [07:50] <curiousguy13> hey, how do i run git on the mozilla shell?
  795. # [07:50] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  796. # [07:50] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  797. # [07:52] * Quits: mixedpuppy (mixedpuppy@15F08F76.1257EE14.F0219BEF.IP) (Quit: mixedpuppy)
  798. # [07:52] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  799. # [07:55] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  800. # [07:57] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  801. # [07:58] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  802. # [07:59] * Joins: arky (arky@moz-391C8369.unishanoi.org)
  803. # [08:00] * Quits: arky (arky@moz-391C8369.unishanoi.org) (Quit: Leaving)
  804. # [08:01] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  805. # [08:01] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  806. # [08:03] * Quits: jesup (chatzilla@F981A702.ED8DACAE.49D91E5E.IP) (Ping timeout)
  807. # [08:05] * Quits: m_gol (m_gol@F3E90C2A.2BE51E56.888BF55D.IP) (Ping timeout)
  808. # [08:06] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  809. # [08:10] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Input/output error)
  810. # [08:12] * Joins: hub (hub@moz-E12780DE.cable.teksavvy.com)
  811. # [08:13] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  812. # [08:15] * Quits: botond|issaquah (chatzilla@moz-31BB7607.public.wayport.net) (Quit: ChatZilla 0.9.90.1 [Firefox 20.0/20130417085609])
  813. # [08:26] * Quits: a-865 (fmcz@moz-EFF8C062.cable.mindspring.com) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.24/20140131081547])
  814. # [08:26] * Joins: ericjung|phone (androirc@61D2F162.F9C282AE.284344F5.IP)
  815. # [08:27] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  816. # [08:28] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  817. # [08:30] * Joins: a-865 (fmcz@moz-EFF8C062.cable.mindspring.com)
  818. # [08:30] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  819. # [08:32] * Joins: dholbert_ (dholbert@moz-2DBFC5C4.static.sonic.net)
  820. # [08:33] * Quits: ericjung|phone (androirc@61D2F162.F9C282AE.284344F5.IP) (Connection reset by peer)
  821. # [08:34] * Joins: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net)
  822. # [08:36] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Quit: )
  823. # [08:36] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Ping timeout)
  824. # [08:41] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  825. # [08:45] * @dbaron needs to back out, I guess
  826. # [08:46] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  827. # [08:46] * Joins: gargsms (gargsms@7FDD62B0.DEBD96D2.1C37C358.IP)
  828. # [08:46] * Joins: Manishearth (manisheart@moz-F9058B8A.net)
  829. # [08:46] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  830. # [08:47] * Quits: bdahl (bdahl@moz-102118C9.hsd1.or.comcast.net) (Input/output error)
  831. # [08:47] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  832. # [08:47] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  833. # [08:48] * Quits: jgilbert (jgilbert@moz-5918CE12.hsd1.ca.comcast.net) (Ping timeout)
  834. # [08:49] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b1feb66af4ff - L. David Baron - Back out changeset dd1f8adbfecc (bug 480888 patch 4) for failing reftests 402338-1.html and 412352-2.html on Android and B2G only.
  835. # [08:53] * Quits: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca) (Quit: Leaving.)
  836. # [08:54] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  837. # [08:54] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  838. # [08:55] * Quits: vichen (vichen@ACEC71C9.8D17903.52BFBD3E.IP) (Quit: vichen)
  839. # [08:55] * Quits: native (Mibbit@9B9315E1.A6025CA.1C37C358.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  840. # [08:59] * Fallen|away is now known as Fallen
  841. # [09:00] * Joins: robertbindar (Thunderbir@78A65DEE.7FBC8CF6.2B3D3D4.IP)
  842. # [09:03] * Quits: scott (user@moz-C8680A4B.dclient.hispeed.ch) (Client exited)
  843. # [09:06] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  844. # [09:06] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  845. # [09:07] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  846. # [09:07] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  847. # [09:10] * Quits: gargsms (gargsms@7FDD62B0.DEBD96D2.1C37C358.IP) (Ping timeout)
  848. # [09:11] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  849. # [09:13] * Quits: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net) (Ping timeout)
  850. # [09:16] * Quits: C4RNAGE (Anders@moz-980F7CD3.bb.online.no) (Connection reset by peer)
  851. # [09:19] * Quits: baku|away (baku@moz-4038023A.ghst.net) (Ping timeout)
  852. # [09:20] * mattwoodrow|away is now known as mattwoodrow
  853. # [09:21] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  854. # [09:22] * Joins: soumyaC2 (soumyaC@moz-E0F149F7.members.linode.com)
  855. # [09:23] * Quits: soumyaC2 (soumyaC@moz-E0F149F7.members.linode.com) (Connection reset by peer)
  856. # [09:24] * Quits: chewey (chewey@moz-BBA7CB8F.dip0.t-ipconnect.de) (Ping timeout)
  857. # [09:24] * Quits: tn (tim@moz-2E73ACE4.wp.shawcable.net) (Ping timeout)
  858. # [09:25] * Joins: gargsms (gargsms@71CBC134.DEBD96D2.1C37C358.IP)
  859. # [09:26] * Joins: chewey (chewey@moz-93BB76BA.dip0.t-ipconnect.de)
  860. # [09:28] * Joins: tn (tim@moz-2E73ACE4.wp.shawcable.net)
  861. # [09:31] * Quits: tn (tim@moz-2E73ACE4.wp.shawcable.net) (Ping timeout)
  862. # [09:31] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  863. # [09:32] * Joins: tn (tim@moz-2E73ACE4.wp.shawcable.net)
  864. # [09:32] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  865. # [09:35] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  866. # [09:35] * Quits: tn (tim@moz-2E73ACE4.wp.shawcable.net) (Ping timeout)
  867. # [09:35] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  868. # [09:36] * Quits: nil1511 (nil1511@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  869. # [09:36] * Joins: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP)
  870. # [09:36] * Joins: tn (tim@moz-2E73ACE4.wp.shawcable.net)
  871. # [09:38] * Joins: nil1511 (nil1511@8E6C34C1.A3F9767A.1C37C358.IP)
  872. # [09:39] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  873. # [09:39] * Quits: tn (tim@moz-2E73ACE4.wp.shawcable.net) (Ping timeout)
  874. # [09:40] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  875. # [09:40] * Joins: tn (tim@moz-2E73ACE4.wp.shawcable.net)
  876. # [09:42] * Joins: dne0 (Mibbit@AAD71C28.29E0BAFB.1957C0DA.IP)
  877. # [09:42] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  878. # [09:42] * Joins: jesup (chatzilla@F981A702.ED8DACAE.49D91E5E.IP)
  879. # [09:43] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  880. # [09:46] * Joins: ejpbruel (ejpbruel@DCCE2C03.138B9563.9DFDF413.IP)
  881. # [09:48] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  882. # [09:48] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  883. # [09:49] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  884. # [09:49] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  885. # [09:50] <dne0> Fallen: hi. I checked few days ago there were 3 projects on Calendar for GSOC. Now, I couldn't find any of them here- https://wiki.mozilla.org/Community:SummerOfCode14:Brainstorming
  886. # [09:50] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Client exited)
  887. # [09:51] * Joins: TheComputerGuy0010 (thecompute@E1FAA876.1ED70DBC.1CE56A7.IP)
  888. # [09:52] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  889. # [09:52] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  890. # [09:52] * Quits: tn (tim@moz-2E73ACE4.wp.shawcable.net) (Ping timeout)
  891. # [09:52] * Quits: gargsms (gargsms@71CBC134.DEBD96D2.1C37C358.IP) (Ping timeout)
  892. # [09:53] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  893. # [09:53] * Joins: tn (tim@moz-2E73ACE4.wp.shawcable.net)
  894. # [09:55] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  895. # [09:56] * Joins: twi (Adium@39764A76.97859A74.2FA748D.IP)
  896. # [09:56] * Quits: ejpbruel (ejpbruel@DCCE2C03.138B9563.9DFDF413.IP) (Ping timeout)
  897. # [09:56] <dne0> Fallen: Oh sorry, didn't check this page- https://wiki.mozilla.org/Community:SummerOfCode14
  898. # [09:59] * mattwoodrow is now known as mattwoodrow|away
  899. # [09:59] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  900. # [10:00] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  901. # [10:00] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  902. # [10:00] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  903. # [10:01] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Quit: ChatZilla 0.9.90.1 [Firefox 30.0a1/20140214030202])
  904. # [10:01] * Joins: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP)
  905. # [10:02] * Quits: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  906. # [10:03] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  907. # [10:03] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  908. # [10:05] * Quits: twi (Adium@39764A76.97859A74.2FA748D.IP) (Ping timeout)
  909. # [10:05] * Quits: TheComputerGuy0010 (thecompute@E1FAA876.1ED70DBC.1CE56A7.IP) (Connection reset by peer)
  910. # [10:10] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  911. # [10:12] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  912. # [10:13] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  913. # [10:14] * Joins: twi (Adium@moz-2C6F05F7.pa.nsw.optusnet.com.au)
  914. # [10:15] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  915. # [10:15] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  916. # [10:18] * Quits: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP) (Quit: givanica)
  917. # [10:18] * Joins: jackneill (jackneill@moz-543EECA8.pool.digikabel.hu)
  918. # [10:19] * Quits: jesup (chatzilla@F981A702.ED8DACAE.49D91E5E.IP) (Ping timeout)
  919. # [10:21] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  920. # [10:21] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  921. # [10:23] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Ping timeout)
  922. # [10:24] * Joins: astroduck (astroduck@BB116D.78701726.388CF16F.IP)
  923. # [10:26] * Quits: astroduck (astroduck@BB116D.78701726.388CF16F.IP) (Quit: Peace Out!)
  924. # [10:29] * Joins: RealRaven (Thunderbir@9C717A50.89AEBC9F.C3498625.IP)
  925. # [10:31] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  926. # [10:31] * Quits: janv (varga@6D31C391.82C5AE5C.4F33160D.IP) (Ping timeout)
  927. # [10:32] * Quits: dne0 (Mibbit@AAD71C28.29E0BAFB.1957C0DA.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  928. # [10:33] * Joins: ericjung|phone (androirc@moz-7F962C5C.tmodns.net)
  929. # [10:33] * Joins: dne0 (Mibbit@CCB566CF.CD1E2C26.BE3C3C1D.IP)
  930. # [10:34] * Quits: Optimizer (Optimizer@F68F6D8A.AF519A72.BE4CF869.IP) (Ping timeout)
  931. # [10:35] * Joins: msucan (mihai@A8BA4AAE.C830DE9.7C5F70AF.IP)
  932. # [10:36] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c4ff618cf72b - Chris Pearce - Bug 973139 - Don't treat EOS of one stream as EOS of all streams when decoding with GStreamer. r=alessandro.d
  933. # [10:36] * Joins: janv (varga@1A300B7F.8735F85C.4F33160D.IP)
  934. # [10:36] * Joins: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP)
  935. # [10:37] * Quits: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP) (Quit: givanica)
  936. # [10:39] * Quits: ericjung|phone (androirc@moz-7F962C5C.tmodns.net) (Connection reset by peer)
  937. # [10:43] * Joins: Optimizer (Optimizer@C5E00EC7.13A3D53C.BE4CF869.IP)
  938. # [10:44] * Quits: simo (simo@8C721AC3.882337F1.12E82FEE.IP) (Ping timeout)
  939. # [10:44] * Joins: simo (simo@4880D667.E2DAD3F4.BDA7A6F4.IP)
  940. # [10:45] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  941. # [10:46] * Quits: kreeger (nickkreege@BFF832CB.D02B26E5.A36C57B9.IP) (Ping timeout)
  942. # [10:48] * Quits: janv (varga@1A300B7F.8735F85C.4F33160D.IP) (Ping timeout)
  943. # [10:52] * Joins: janv (varga@D4AA423D.CAD7ADDA.4F33160D.IP)
  944. # [10:55] * Joins: heftig (heftig@moz-9804B6DE.dip0.t-ipconnect.de)
  945. # [10:57] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f79959add4b3 - Vaibhav Agarwal - Bug 970925 - convert testing/mochitest/android.json into skip-if statements in mochitest.ini files; r=jmaher
  946. # [10:57] * Joins: jviereck (Adium@moz-D35D063.dip0.t-ipconnect.de)
  947. # [10:58] * Joins: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP)
  948. # [11:00] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  949. # [11:00] * Joins: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP)
  950. # [11:01] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  951. # [11:06] * Joins: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca)
  952. # [11:07] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  953. # [11:08] * Quits: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca) (Ping timeout)
  954. # [11:09] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  955. # [11:10] * Quits: nil1511 (nil1511@8E6C34C1.A3F9767A.1C37C358.IP) (Input/output error)
  956. # [11:10] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Quit: Jesse)
  957. # [11:15] * Joins: kreeger (nickkreege@BFF832CB.D02B26E5.A36C57B9.IP)
  958. # [11:18] * Quits: kreeger (nickkreege@BFF832CB.D02B26E5.A36C57B9.IP) (Ping timeout)
  959. # [11:18] * Quits: @dbaron (dbaron@moz-B3F1D17A.dsl.dynamic.sonic.net) (Ping timeout)
  960. # [11:21] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Quit: Leaving.)
  961. # [11:24] * Joins: till (till@34E8ECDF.DC2C3734.616A18A6.IP)
  962. # [11:24] * Quits: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP) (Ping timeout)
  963. # [11:25] * Joins: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP)
  964. # [11:25] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  965. # [11:25] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  966. # [11:26] * Quits: till (till@34E8ECDF.DC2C3734.616A18A6.IP) (Ping timeout)
  967. # [11:26] * Quits: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP) (Ping timeout)
  968. # [11:27] * Joins: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP)
  969. # [11:29] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Quit: )
  970. # [11:31] * Quits: RealRaven (Thunderbir@9C717A50.89AEBC9F.C3498625.IP) (Ping timeout)
  971. # [11:32] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  972. # [11:33] * Joins: protz (jonathan@moz-7F6750F6.xulforum.org)
  973. # [11:33] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Client exited)
  974. # [11:33] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  975. # [11:33] <steve> hey all. so trying to get my head around gecko core rendering. have a test page with one animated gif on it. nothing else. stepping through .... please make it more complicated :)
  976. # [11:34] * Joins: Ms2ger (Ms2ger@moz-CB2E71FA.adsl-dyn.isp.belgacom.be)
  977. # [11:34] <steve> at some point NS_FRAME_DESCENDANT_NEEDS_PAINT gets set which through some voodoo triggers a repaint on windows but its not hitting an InvalidateRect as far as I can see so how is the repaint triggered ?
  978. # [11:35] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  979. # [11:35] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  980. # [11:37] <steve> 1 GB source tree for a webpage renderer. perhaps that's a little excessive. needs some serious modularization work in here.
  981. # [11:37] <steve> feedback on firefox is it's getting slow and bloaty. when you step through you see why.
  982. # [11:38] <steve> suggest core devs follow what I've just done. one animated gif. step through. note all that's going on & ask yourself - is there a more straightforward way of doing this ?
  983. # [11:39] * Quits: victorporof (victorporo@8F761026.B5EF4AF6.E96CA9D8.IP) (Ping timeout)
  984. # [11:39] <steve> retire directx9 and remove it from the tree. use opengl on windowsxp - which is dead anyhow, so all that junk can get stripped.
  985. # [11:44] <steve> *goes back to debug hell. wish I had more time to help streamline this monster.
  986. # [11:46] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Quit: Leaving.)
  987. # [11:47] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Client exited)
  988. # [11:47] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  989. # [11:47] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  990. # [11:50] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  991. # [11:50] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  992. # [11:52] * Quits: twi (Adium@moz-2C6F05F7.pa.nsw.optusnet.com.au) (Ping timeout)
  993. # [11:52] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  994. # [11:53] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  995. # [11:56] * Joins: twi (Adium@moz-43F87C2A.pa.nsw.optusnet.com.au)
  996. # [11:57] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Quit: Leaving.)
  997. # [12:01] * Joins: sbeta (Thunderbir@BEE20185.D07DB6FE.4A5F0685.IP)
  998. # [12:01] * Joins: Dagger (Dagger@moz-2B01C171.cable.virginm.net)
  999. # [12:05] * Joins: till (till@34E8ECDF.DC2C3734.616A18A6.IP)
  1000. # [12:08] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1001. # [12:08] <steve> void
  1002. # [12:08] <steve> nsIFrame::InvalidateFrameWithRect(const nsRect& aRect, uint32_t aDisplayItemKey)
  1003. # [12:08] <steve> {
  1004. # [12:08] <steve> bool hasDisplayItem =
  1005. # [12:08] <steve> !aDisplayItemKey || FrameLayerBuilder::HasRetainedDataFor(this, aDisplayItemKey);
  1006. # [12:08] <steve> bool alreadyInvalid = false;
  1007. # [12:08] <steve> if (!HasAnyStateBits(NS_FRAME_NEEDS_PAINT)) {
  1008. # [12:08] <steve> InvalidateFrameInternal(this, hasDisplayItem);
  1009. # [12:08] * steve was kicked by killer (Stop flooding!)
  1010. # [12:08] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1011. # [12:09] <steve> would you turn that stupid flood nerd thing off. sometimes shit needs saying.
  1012. # [12:09] <steve> this : nsIFrame::InvalidateFrameWithRect(const nsRect& aRect, uint32_t aDisplayItemKey)
  1013. # [12:10] <steve> then goes into some bonkers overly complex joyride.
  1014. # [12:10] <steve> all it needs to do is extend the dirtyrect as required.
  1015. # [12:10] <steve> it's one line not an entire subtree of bizarre complexity. ffs.
  1016. # [12:11] * Quits: till (till@34E8ECDF.DC2C3734.616A18A6.IP) (Input/output error)
  1017. # [12:11] <steve> in a foul mood. l8r.
  1018. # [12:11] * Quits: protz (jonathan@moz-7F6750F6.xulforum.org) (Quit: Leaving)
  1019. # [12:11] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  1020. # [12:18] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1021. # [12:18] <steve> coding style.
  1022. # [12:18] <steve> this :
  1023. # [12:18] <steve> if (!aHasDisplayItem) {
  1024. # [12:18] <steve> return;
  1025. # [12:18] <steve> }
  1026. # [12:18] <steve> who does that ????
  1027. # [12:19] <steve> if (!aHasDisplayItem)
  1028. # [12:19] <steve> return;
  1029. # [12:19] <steve> one line ifs do not require curly braces.
  1030. # [12:19] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/454a5c2523c9 - ffxbld - No bug, Automated blocklist update from host bld-linux64-ec2-034 - a=blocklist-update
  1031. # [12:19] * Joins: victorporof (victorporo@8F761026.B5EF4AF6.E96CA9D8.IP)
  1032. # [12:21] <steve> & the first brace should be on its own line so it matches with the lower one imo but that's not such a big deal.
  1033. # [12:21] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/b749ee0f8a0a - ffxbld - No bug, Automated blocklist update from host bld-linux64-spot-065 - a=blocklist-update
  1034. # [12:22] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1035. # [12:22] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  1036. # [12:23] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/f6ab28f98ee5 - ffxbld - No bug, Automated HSTS preload list update from host bld-linux64-spot-071 - a=hsts-update
  1037. # [12:23] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1038. # [12:26] * Quits: sbeta (Thunderbir@BEE20185.D07DB6FE.4A5F0685.IP) (Quit: sbeta)
  1039. # [12:26] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1040. # [12:26] <steve> NS_FRAME_NEEDS_PAINT
  1041. # [12:27] <steve> its not netscape anymore. GECKO_FRAME_NEEDS_PAINT if you must do it that way.
  1042. # [12:28] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  1043. # [12:35] * Quits: victorporof (victorporo@8F761026.B5EF4AF6.E96CA9D8.IP) (Quit: victorporof)
  1044. # [12:39] * Joins: Swatinem (Instantbir@moz-AAABC99.vie.surfer.at)
  1045. # [12:39] * Joins: ericjung|phone (androirc@F5EA1D61.5F599954.284344F5.IP)
  1046. # [12:40] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1047. # [12:41] <steve> so, you've got gecko, which is a platform independent webpage renderer. and a bunch of other stuff. gecko should be in its own subtree for those of us who do not require whatever is going on in the rest of that 1 GB of source.
  1048. # [12:43] * Joins: sayan_paul (sayan@AF945038.BA49F3C8.C842849F.IP)
  1049. # [12:44] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  1050. # [12:44] * Joins: gargsms (gargsms@7FDD62B0.DEBD96D2.1C37C358.IP)
  1051. # [12:45] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1052. # [12:45] <steve> if (HasInvalidFrameInSubtree()) {
  1053. # [12:45] * Quits: ericjung|phone (androirc@F5EA1D61.5F599954.284344F5.IP) (Connection reset by peer)
  1054. # [12:45] <steve> for (nsIFrame* f = aParent;
  1055. # [12:45] <steve> f && !f->HasAnyStateBits(NS_FRAME_DESCENDANT_NEEDS_PAINT);
  1056. # [12:45] <steve> f = nsLayoutUtils::GetCrossDocParentFrame(f)) {
  1057. # [12:45] <steve> f->AddStateBits(NS_FRAME_DESCENDANT_NEEDS_PAINT);
  1058. # [12:45] <steve> }
  1059. # [12:45] <steve> }
  1060. # [12:46] <steve> lol. the whole point of using bools is that you can just do a logical or. you don't check to see if it's set & if it's not then set it.
  1061. # [12:46] <steve> flags |= MY_FLAG
  1062. # [12:47] <steve> inefficient: if (!(flags & MY_FLAG) ) flags |= MY_FLAG
  1063. # [12:48] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1064. # [12:49] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1065. # [12:51] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1066. # [12:53] * Quits: recursive (recursive@B07811B5.933E581B.547774E7.IP) (Quit: Leaving...)
  1067. # [12:57] * Joins: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net)
  1068. # [12:59] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  1069. # [12:59] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  1070. # [13:01] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1071. # [13:03] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1072. # [13:04] <NeilAway> steve: actually in that particular case that's a while, not an if
  1073. # [13:04] <NeilAway> steve: also people have been bikeshedding over single-line ifs for years, personally I don't brace them but lots of gecko developers do
  1074. # [13:06] * Joins: smaug (chatzilla@moz-7AE16235.elisa-laajakaista.fi)
  1075. # [13:06] * ChanServ sets mode: +o smaug
  1076. # [13:07] * Quits: curiousguy13 (chatzilla@AA2DD20B.3C8FA362.50E99975.IP) (Ping timeout)
  1077. # [13:07] * Joins: curiousguy13 (chatzilla@B4564A70.3190F03D.3ACD75DE.IP)
  1078. # [13:09] <steve> neil: it's a boolean rectangle extend when it comes down to it. thanks for the feedback.
  1079. # [13:09] * Quits: jviereck (Adium@moz-D35D063.dip0.t-ipconnect.de) (Quit: Leaving.)
  1080. # [13:10] <Ms2ger> NeilAway, you're wrong ;)
  1081. # [13:11] <steve> ah: there is a for there - it's split onto multiple lines. thanks.
  1082. # [13:12] <steve> trying to absorb tons of code by speed reading. guess I should slow down a little. guess things are done for a reason even if I don't get it yet.
  1083. # [13:12] <steve> though its still just a boolean rect extend at the end of the day and that's not an expensive operation.
  1084. # [13:13] <steve> my hunch is all the backflips you're doing in whatever is going on in there turns out slower.
  1085. # [13:13] <steve> and it's way less maintainable than the obvious solution.
  1086. # [13:14] <steve> geometry boolean rect extend. not binary of course. union to give it the proper term.
  1087. # [13:14] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1088. # [13:15] * Joins: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP)
  1089. # [13:16] * Quits: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  1090. # [13:16] * Joins: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP)
  1091. # [13:16] * Quits: sayan_paul (sayan@AF945038.BA49F3C8.C842849F.IP) (Ping timeout)
  1092. # [13:16] <steve> overall_dirty_rect.UnionRect(overall_dirty_rect, current_frame_dirty_rect);
  1093. # [13:18] <steve> is the one line solution. then InvalidateRect the result of that when you're done or the region if you want to invalidate multiple rects that don't overlap.
  1094. # [13:18] * Quits: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP) (Ping timeout)
  1095. # [13:18] * Quits: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net) (Quit: rcirc on GNU Emacs 24.3.50.1)
  1096. # [13:19] <steve> apology in advance if I'm being thick and you have an optimal solution I don't yet understand.
  1097. # [13:20] * Quits: @smaug (chatzilla@moz-7AE16235.elisa-laajakaista.fi) (Ping timeout)
  1098. # [13:21] <steve> the bit I'm trying to figure out is where does that whole flow end up - what is it that does the final windows Invalidate.
  1099. # [13:22] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1100. # [13:22] <steve> Ms2ger: you're in the {{{{{{{{{{{{{{{{{{{{}}}}}}}}}}}}}}}}}}}}}} camp I guess. mate, you're wrong.
  1101. # [13:23] <steve> do what is required and no more than is required. cause we all have to read it and unnecessary bs slows us down.
  1102. # [13:23] <Manishearth> steve: {} improves readability for me
  1103. # [13:23] <Manishearth> Though indents solve that as well
  1104. # [13:24] <Manishearth> But it adds a crucial thing: It can be logically modified. No need to worry about adding braces when you want to add another statement
  1105. # [13:24] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  1106. # [13:24] <steve> lets have this conversation another day. adding braces when it's multi line is not a big deal. anyone who can't do that shouldn't be here.
  1107. # [13:24] <Manishearth> True
  1108. # [13:25] <Manishearth> I think Fx code (at least the parts I've worked on) uses no-brace ifs. Confusing, but manageable.
  1109. # [13:26] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Ping timeout)
  1110. # [13:26] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  1111. # [13:30] * Joins: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP)
  1112. # [13:30] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Quit: dria)
  1113. # [13:30] <steve> *wonders aloud how long I'll look through this code before commenting the whole lot out & replacing it with the way I'd do it.
  1114. # [13:33] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Quit: ChatZilla 0.9.90.1 [Firefox 28.0/20140213172947])
  1115. # [13:33] * Joins: valenting (Thunderbir@9A1975C1.39CE2EE.E400A05F.IP)
  1116. # [13:33] * NeilAway directs steve to the /me command
  1117. # [13:34] <steve> * appreciates the advice but thinks learning irc tricks can wait until another day.
  1118. # [13:35] * Parts: Swatinem (Instantbir@moz-AAABC99.vie.surfer.at)
  1119. # [13:35] <Manishearth> steve: I get that feeling a lot. Not so much with Mozilla code (I love the way it's designed), but with other open source things Ive worked with
  1120. # [13:35] * Joins: KaiRo (robert@moz-1CA4DAC.adsl.highway.telekom.at)
  1121. # [13:36] <steve> that's code. starts simple then this gets added that gets added nobody knows why xyz is there but dare not change it so throw a layer on top.
  1122. # [13:36] <steve> the one day someone goes ... errrrr ..... wtf ?
  1123. # [13:36] <steve> and that's how we make it better.
  1124. # [13:37] <steve> general point : the code is poorly commented in my opinion - in a lot of places. when something is not obvious a comment explaining why it's being done helps keep confusion to the minimum and aids maintainablity.
  1125. # [13:38] <steve> realize we all have lots going on & getting stuff working then onto the next bit usually comes first.
  1126. # [13:39] <steve> and not in favour of comments that just explain the obvious. that just bloats the source.
  1127. # [13:41] <steve> so ... no InvalidateRgn used. so it must be an InvalidateRect . running a patched version so guess I go back to vanilla moz and throw in a few breakpoints & work back from that end. joy. another full compile.
  1128. # [13:41] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  1129. # [13:43] * Quits: dougc (dougc@moz-F16BC551.static.rev.eftel.com) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131209183133])
  1130. # [13:43] <twi> steve you seem to be willing to put enough effort in whatever you're doing, which is admirable
  1131. # [13:44] <twi> but I would consider a slightly different approach
  1132. # [13:44] * Quits: macmaN (chezburger@moz-A62EF0B7.dyn.estpak.ee) (Ping timeout)
  1133. # [13:44] <twi> for example, try to state clearly what you're doing and ask for help, instead of pontificating on code you barely know
  1134. # [13:45] <twi> (eg, ./mach build binaries after (un)patching things shouldn't take that long)
  1135. # [13:45] * Quits: simo (simo@4880D667.E2DAD3F4.BDA7A6F4.IP) (Ping timeout)
  1136. # [13:45] <steve> one can't state clearly when one is running an undisclosed private fork as a webpage renderrer in a 3D web browser one is just about to launch.
  1137. # [13:45] <steve> ooops.
  1138. # [13:45] <steve> http://advance-software.com
  1139. # [13:46] * Joins: macmaN (chezburger@moz-A62EF0B7.dyn.estpak.ee)
  1140. # [13:46] <steve> wouldn't take long if my main dev machine motherboard hadn't died yesterday. down to an old core2 duo laptop until new board shows up. thats my problem though.
  1141. # [13:46] * Joins: therube (chatzilla@moz-532294F.hsd1.md.comcast.net)
  1142. # [13:47] <steve> motivated 100% to get this fixed. got this far. just the last little annoying bit.
  1143. # [13:47] * Joins: jviereck (Adium@moz-D35D063.dip0.t-ipconnect.de)
  1144. # [13:48] <steve> when I get the other side of this, think it's time to open source our gecko plugin & move to chromium. all this bloat does my head in.
  1145. # [13:48] <twi> good luck with that
  1146. # [13:48] <steve> but mozilla is what it is. you do your own thing and that's cool.
  1147. # [13:48] <steve> thanks
  1148. # [13:48] * joshua-s|zzz is now known as joshua-s
  1149. # [13:49] <Manishearth> fff/crap
  1150. # [13:49] <Manishearth> oops
  1151. # [13:50] <Manishearth> (trying to run /crapbuster on the irssi page, fail)
  1152. # [13:51] * Quits: jviereck (Adium@moz-D35D063.dip0.t-ipconnect.de) (Quit: Leaving.)
  1153. # [13:52] <steve> pontificating on code I barely know - thinking aloud in the unlikely event it provides useful insight into a hunch I have that there is core functionality in need of a rewrite to improve the performance & maintainability of gecko.
  1154. # [13:52] * Joins: simo (simo@743A83E0.5B9B0F47.12E82FEE.IP)
  1155. # [13:53] <steve> which is something we all care about. if I'm wrong, I make myself look stupid. not the end of the world.
  1156. # [13:54] * Quits: jbeich (jbeich@moz-EF57E39A.tor.uwaterloo.ca) (Client exited)
  1157. # [13:54] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Client exited)
  1158. # [13:55] <steve> right ... outta here. thanks for putting up with my bs. will hopefully be in a better mood later. thanks to everyone for your hard work. aside from addressable issues, this is a good tree.
  1159. # [13:56] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1160. # [13:56] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  1161. # [13:57] * Quits: twi (Adium@moz-43F87C2A.pa.nsw.optusnet.com.au) (Ping timeout)
  1162. # [13:58] * Joins: Archaeopteryx (itsme@1D34A441.73D4BC9A.1AF5A838.IP)
  1163. # [14:06] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  1164. # [14:06] * Joins: annevk (annevk@56A6AE85.4F390C2A.420B7681.IP)
  1165. # [14:07] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0/20140204101407])
  1166. # [14:10] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1167. # [14:11] <firebot> Check-in:
  1168. # [14:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/fbcd1f3a1703 - Jim Mathies - Bug 967671 - Set nsGfxScrollFrame's mOriginOfLastScroll default to 'other', insures apzc will receive a scroll offset update when frames are created. Also remove display
  1169. # [14:11] <firebot> port reset in metrofx front end code when window size changes. r=kats, tnikkel
  1170. # [14:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/aaa3019c7653 - Jim Mathies - Bug 972608 - Update feedback charm entry strings. r=sfoster
  1171. # [14:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/af48e36fd5a3 - Kartikaya Gupta - Bug 967671 - Insure apzc always acknowledges scroll offset updates. r=botond
  1172. # [14:11] <steve> so ... to boil down my ranty ponificating into a professional response. I suggest a code review of nsFrame InvalidateFrameInternal to ensure an optimal solution is in place. it's dull and boring but its core and important.
  1173. # [14:12] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1174. # [14:13] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1175. # [14:18] * Quits: dne0 (Mibbit@CCB566CF.CD1E2C26.BE3C3C1D.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1176. # [14:25] * Joins: Steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1177. # [14:26] * Joins: recursive (recursive@71958799.4D49EC71.6815CE39.IP)
  1178. # [14:27] * Quits: jkitch (Thunderbir@moz-DFDE45D4.lns20.adl2.internode.on.net) (Ping timeout)
  1179. # [14:27] * Quits: Steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0/20140127194636])
  1180. # [14:32] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  1181. # [14:32] * Quits: simo (simo@743A83E0.5B9B0F47.12E82FEE.IP) (Ping timeout)
  1182. # [14:41] * Fallen is now known as Fallen|away
  1183. # [14:45] * Fallen|away is now known as Fallen
  1184. # [14:45] * Joins: ericjung|phone (androirc@86D1A00.5F599954.284344F5.IP)
  1185. # [14:47] * Joins: simo (simo@2ED0E560.D4EF5E84.330E81BB.IP)
  1186. # [14:48] <gargsms> where can I find the complete official ideas list for GSoC 2014?
  1187. # [14:49] * Quits: shorlander-away (shorlander@moz-93A7049A.dhcp.insightbb.com) (Quit: )
  1188. # [14:52] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Client exited)
  1189. # [14:52] * Quits: ericjung|phone (androirc@86D1A00.5F599954.284344F5.IP) (Connection reset by peer)
  1190. # [14:52] <Fallen> gargsms: https://wiki.mozilla.org/Community:SummerOfCode14:Brainstorming and https://wiki.mozilla.org/Community:SummerOfCode14
  1191. # [14:52] <Fallen> or for all of gsoc?
  1192. # [14:52] <NeilAway> bah, one of my opt builds won't link, but the other ones are OK
  1193. # [14:53] <gargsms> Fallen, just for Mozilla.
  1194. # [14:53] <gargsms> I saw both of those. They are so little populated.
  1195. # [14:53] <Fallen> I guess there will be more as time progresses
  1196. # [14:54] <Fallen> but thats the official list
  1197. # [14:55] <Fallen> gargsms: what kind of project are you looking for?
  1198. # [14:55] <Ms2ger> Didn't we need to send in the list yesterday?
  1199. # [14:56] <gargsms> I am looking for developing a Gaia module. Sound recorder to be specific
  1200. # [14:56] <Fallen> You can propose anything in your application. I'd suggest asking around in #gaia during weekdays
  1201. # [14:56] <gargsms> Ms2ger, exactly. 14 was the deadline.
  1202. # [14:57] <gargsms> I was redirected from #gaia to #ffos_media for this module.
  1203. # [14:57] <gargsms> Fallen, anyone specifically?
  1204. # [15:00] * Joins: fakedrake (user@moz-B5DC2DF4.dsl.dyn.forthnet.gr)
  1205. # [15:00] <fakedrake> hello!
  1206. # [15:01] <Fallen> gargsms: Hmm I know a name or two, but no idea if they are available as mentors. I'm surprised they sent you somewhere else than #gaia
  1207. # [15:01] <fakedrake> sorry about flooding all your channels with this, maybe someone here can help me... Is there a way to run javascript code on a firefox instance externally, like over dbus?
  1208. # [15:02] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Quit: RealRaven)
  1209. # [15:02] <gargsms> Fallen, at least I can ask them and brush up till the time for GSoC.
  1210. # [15:02] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1211. # [15:03] <gargsms> I was redirected because this is basically a media component only.
  1212. # [15:03] <gargsms> I had a look at module owners for Gaia too, but I couldn't find the proper person to discuss.
  1213. # [15:08] <Fallen> gargsms: Before I suggest someone who doesn't have anything to do with it, I think it would be better to ask again on a weekday. Monday is a holiday, but if you come around on Tuesday and get punted around between channels again, get back to me and I'm sure we'll find someone who is at least willing to find the right person :-)
  1214. # [15:08] <Fallen> fakedrake: you could take a look at mozmill/jsbridge or marionette
  1215. # [15:09] <gargsms> Fallen, sure. Thanks.
  1216. # [15:09] <Fallen> fakedrake: meant for UI tests, but if you have a specific use case it might work out. There is nothing builtin though
  1217. # [15:12] <Manishearth> Ms2ger: I think yesterday was the deadline for Mozilal telling Google that they are participating
  1218. # [15:12] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/072725b2ef45 - Robert Longson - Bug 971285 - Fix intermittent failure in smil/anim-path-d-01.svg. r=dholbert
  1219. # [15:14] <fakedrake> Fallen: thank you. I was kind of looking into how this https://github.com/harthur/firefox-client does things
  1220. # [15:14] <fakedrake> not very good with node.js yet (and js in general) though so I am a bit slow with it.
  1221. # [15:14] <Fallen> fakedrake: that uses the developer tools debugger server
  1222. # [15:15] <Fallen> i.e "remote debugging" support in Firefox
  1223. # [15:15] <fakedrake> Fallen: that sounds quite like something I would want.
  1224. # [15:16] <fakedrake> The whole story is that I want to be able to tell emacs "send this region of code to firefox"
  1225. # [15:16] <fakedrake> I am also using vimperator
  1226. # [15:16] <Fallen> you mean execute the code in a specific tab?
  1227. # [15:16] <fakedrake> Hmm didn't really think about that one, but the active tab would do I guess
  1228. # [15:17] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1229. # [15:18] <Fallen> fakedrake: briefly looking at that lib, you can call the selectedTab method on the client, get the Console for the tab object, then use the evaluateJS method on that
  1230. # [15:19] <fakedrake> Fallen: yes that should do.
  1231. # [15:19] <fakedrake> Thank you very much
  1232. # [15:20] <Fallen> to get the server set up, you need to start the remote debugger server. I think with release builds you need to start the "Browser Debugger" and then use port 6080. There will be different ways to start it with bug 942756 fixed
  1233. # [15:22] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1234. # [15:24] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  1235. # [15:25] <fakedrake> Looking at the firefox-client code it looks like there is a json-based protocol that the remote debugger understands. Is there any documentation for that?
  1236. # [15:25] <fakedrake> What i need is pretty specific so I might be able to do it over telnet or sth
  1237. # [15:26] <fakedrake> and not have to deal with node.js which I am not yet comfortable with at all
  1238. # [15:28] * Joins: rednaks (rednaks@23173BB8.B3501FB9.55FFA9B4.IP)
  1239. # [15:32] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: )
  1240. # [15:35] <Fallen> fakedrake: doing it manually might be a little more work, afaik its documented though
  1241. # [15:36] <Fallen> https://wiki.mozilla.org/Remote_Debugging_Protocol
  1242. # [15:36] <Fallen> the node stuff is really not that hard to do
  1243. # [15:42] * Joins: amphibulus (Mibbit@8E6C34C1.A3F9767A.1C37C358.IP)
  1244. # [15:47] * Quits: recursive (recursive@71958799.4D49EC71.6815CE39.IP) (Ping timeout)
  1245. # [15:49] <RealRaven> does anybdoy know from which version onwards THunderbird / SeaMOney / POstbox support javascript promises?
  1246. # [15:49] <RealRaven> (*if they do)
  1247. # [15:52] * Quits: dholbert_ (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  1248. # [15:53] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1249. # [15:53] <RealRaven> hmm. seems it is not supported yet: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise - I tested it Fx 26 but getting a message: "Live example not available as your browser doesn't support the Promise interface."
  1250. # [15:54] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  1251. # [15:54] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Quit: RealRaven)
  1252. # [15:55] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1253. # [15:55] * Joins: recursive (recursive@71958799.4D49EC71.6815CE39.IP)
  1254. # [15:56] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  1255. # [16:01] * Quits: recursive (recursive@71958799.4D49EC71.6815CE39.IP) (Ping timeout)
  1256. # [16:03] * Quits: rednaks (rednaks@23173BB8.B3501FB9.55FFA9B4.IP) (Ping timeout)
  1257. # [16:04] * Joins: stefanh (stefanh@moz-3EED0162.customers.ownit.se)
  1258. # [16:04] * stefanh is now known as stefanh|away
  1259. # [16:07] * Quits: Honza_ (chatzilla@F8BF899B.23B79DE4.D0083327.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  1260. # [16:07] * Joins: dholbert_ (dholbert@moz-2DBFC5C4.static.sonic.net)
  1261. # [16:09] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Connection reset by peer)
  1262. # [16:10] * Joins: arnaud_bienner (arno@moz-A1109EC1.dsl.sta.abo.bbox.fr)
  1263. # [16:15] * Joins: kushagra (kushagra@3DA1DE58.F2AFF267.520CDC98.IP)
  1264. # [16:15] * Joins: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca)
  1265. # [16:25] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d8462ffa097d - Alexander Surkov - Bug 638684 - Accessible::GetFirstAvailableAccessible needs resuse the accessible tree walker, r=tbsaunde
  1266. # [16:26] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  1267. # [16:28] * Fallen is now known as Fallen|away
  1268. # [16:30] * Fallen|away is now known as Fallen
  1269. # [16:33] * Joins: flo-retina (Instantbir@moz-2C9D8405.ip-176-31-106.eu)
  1270. # [16:34] * Joins: WG9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net)
  1271. # [16:34] * JosiahOne|Away is now known as JosiahOne
  1272. # [16:35] * Joins: askalski (akuda@2BA4E5A7.CC7751E8.6712E96B.IP)
  1273. # [16:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/3305c1509a28 - Doug Sherk - Bug 970578: Add tests for preventDefault and long tap behavior to gtest. r=kats
  1274. # [16:39] <Fallen> RealRaven: promises should be available already to chrome, just maybe not to content code
  1275. # [16:39] * Joins: raniere_ (raniere@moz-B4872F1.dsl.telesp.net.br)
  1276. # [16:39] * Quits: raniere (raniere@E5ACADC7.4D289118.9ADA3DFF.IP) (Ping timeout)
  1277. # [16:39] <Fallen> you might have to Cu.import something
  1278. # [16:40] * raniere_ is now known as raniere
  1279. # [16:40] * Quits: askalski (akuda@2BA4E5A7.CC7751E8.6712E96B.IP) (Quit: Wychodzi)
  1280. # [16:41] * Quits: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  1281. # [16:41] <Fallen> website demo works in nightly builds
  1282. # [16:43] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Ping timeout)
  1283. # [16:45] * Joins: abr (abr@46B5412F.3597C859.3AF705F3.IP)
  1284. # [16:47] * Quits: abr (abr@46B5412F.3597C859.3AF705F3.IP) (Ping timeout)
  1285. # [16:48] * Quits: amphibulus (Mibbit@8E6C34C1.A3F9767A.1C37C358.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1286. # [16:49] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1287. # [16:52] * Joins: ericjung|phone (androirc@moz-A04BB255.tmodns.net)
  1288. # [16:52] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  1289. # [16:52] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  1290. # [16:53] * Joins: meep (unlol@moz-DF071F27.range81-155.btcentralplus.com)
  1291. # [16:54] * Quits: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP) (Quit: givanica)
  1292. # [16:54] * Quits: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca) (Input/output error)
  1293. # [16:55] * Joins: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca)
  1294. # [16:57] * Joins: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP)
  1295. # [16:58] * Quits: kushagra (kushagra@3DA1DE58.F2AFF267.520CDC98.IP) (Ping timeout)
  1296. # [16:58] * Quits: ericjung|phone (androirc@moz-A04BB255.tmodns.net) (Connection reset by peer)
  1297. # [16:59] * Joins: kushagra (kushagra@1CC42003.E5007E99.520CDC98.IP)
  1298. # [16:59] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Client exited)
  1299. # [16:59] * Quits: emerson (Icedove@6F3CD6F5.77F4443F.66AE2FF3.IP) (Quit: emerson)
  1300. # [17:00] * Joins: dne0 (Mibbit@AAD71C28.29E0BAFB.1957C0DA.IP)
  1301. # [17:00] * Joins: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP)
  1302. # [17:01] * Joins: ejpbruel (ejpbruel@moz-366E8346.cm-11-1b.dynamic.ziggo.nl)
  1303. # [17:02] <dne0> Fallen: hi
  1304. # [17:03] * Quits: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca) (Ping timeout)
  1305. # [17:03] * Quits: flo-retina (Instantbir@moz-2C9D8405.ip-176-31-106.eu) (Ping timeout)
  1306. # [17:04] * Joins: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca)
  1307. # [17:06] <dne0> Fallen: can you please tell me how to get started with 'Improve Calendar backends' project?
  1308. # [17:08] * Quits: kushagra (kushagra@1CC42003.E5007E99.520CDC98.IP) (Client exited)
  1309. # [17:10] <Fallen> dne0: sure thing. First of all I'd suggest getting the calendar build environment set up. As we are using the Thunderbird build system there might be some quirks. But you should start out at https://developer.mozilla.org/En/Simple_Thunderbird_build making sure to enable the calendar option
  1310. # [17:11] <dne0> Fallen: already done that :)
  1311. # [17:11] <dne0> what to do next?
  1312. # [17:12] <Fallen> ah cool. Then I'd suggest getting the storage calendar patch from the first bug in the list and apply it. The best way to do that is to use mq, you can do hg qimport http://url/to/path
  1313. # [17:12] <Fallen> then hg qpush
  1314. # [17:13] <Fallen> the patch might not apply cleanly, the first thing to do would be to correct that
  1315. # [17:13] * Quits: valenting (Thunderbir@9A1975C1.39CE2EE.E400A05F.IP) (Ping timeout)
  1316. # [17:13] <dne0> ok. Let me give it a try and if there is some problem I will ask :)
  1317. # [17:13] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1318. # [17:15] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1319. # [17:17] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  1320. # [17:18] <dne0> patch failed as you said
  1321. # [17:18] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1322. # [17:19] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1323. # [17:20] <dne0> should I post the error and *.rej files because I am not familiar with the code base so I don't know how to fix it?
  1324. # [17:20] * Joins: lmandel (lmandel@moz-60AD75.cable.teksavvy.com)
  1325. # [17:22] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Ping timeout)
  1326. # [17:22] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1327. # [17:22] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  1328. # [17:23] * Joins: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  1329. # [17:25] <Fallen> dne0: well, this is kind of part of the challenge. The errors are obvious, some hunks failed. There are two ways to fix it: 1) view each of the files together with the respective .rej file and apply the changes manually 2) for the failed files, unapply each patch that was written until the real patch applies. You can use hg log path/to/file to get the changesets, and hg log -r <cset> -p to get the patch to unapply.
  1330. # [17:26] <Fallen> the first method is probably easier to do, but will take longer. the second method requires a few more commands, but since this is quite a large patch might be faster
  1331. # [17:26] * Joins: valenting (Thunderbir@9A1975C1.39CE2EE.E400A05F.IP)
  1332. # [17:27] <dne0> oh ok, thanks :)
  1333. # [17:28] * Quits: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP) (Quit: givanica)
  1334. # [17:29] * Quits: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP) (Quit: Textual IRC Client: www.textualapp.com)
  1335. # [17:30] * Quits: lmandel (lmandel@moz-60AD75.cable.teksavvy.com) (Input/output error)
  1336. # [17:30] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  1337. # [17:30] <Fallen> dne0: this might help, especially the section on rejects and patches: http://hgbook.red-bean.com/read/managing-change-with-mercurial-queues.html
  1338. # [17:31] * Joins: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP)
  1339. # [17:32] * Parts: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP)
  1340. # [17:32] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Ping timeout)
  1341. # [17:34] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1342. # [17:35] * Quits: Dagger (Dagger@moz-2B01C171.cable.virginm.net) (Ping timeout)
  1343. # [17:36] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1344. # [17:38] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1345. # [17:39] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Ping timeout)
  1346. # [17:39] * Joins: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP)
  1347. # [17:39] * Joins: Dagger (Dagger@moz-2B01C171.cable.virginm.net)
  1348. # [17:40] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Quit: RealRaven)
  1349. # [17:41] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1350. # [17:41] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1351. # [17:41] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  1352. # [17:42] * Quits: gozala (uid5923@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1353. # [17:42] * Quits: davidillsley (sid18481@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1354. # [17:42] * Quits: sai (uid11786@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1355. # [17:42] * Quits: Unfocused (sid2622@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1356. # [17:42] * Quits: dietrich_ (sid2731@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1357. # [17:42] * Quits: sid0 (sid2934@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1358. # [17:42] * Quits: wycats (sid79@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1359. # [17:42] * Quits: mhenretty (sid11899@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1360. # [17:42] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1361. # [17:42] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  1362. # [17:44] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Quit: RealRaven)
  1363. # [17:44] * Joins: sai (uid11786@moz-5F4AA75A.irccloud.com)
  1364. # [17:44] * Joins: Unfocused (sid2622@moz-5F4AA75A.irccloud.com)
  1365. # [17:44] * Joins: gozala (uid5923@moz-5F4AA75A.irccloud.com)
  1366. # [17:44] * Joins: sid0 (sid2934@moz-5F4AA75A.irccloud.com)
  1367. # [17:44] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1368. # [17:45] * Joins: dietrich_ (sid2731@moz-5F4AA75A.irccloud.com)
  1369. # [17:45] * Joins: serge (Thunderbir@FED1E923.DDE84BFE.DBBCD276.IP)
  1370. # [17:45] * Joins: wycats (sid79@moz-5F4AA75A.irccloud.com)
  1371. # [17:45] * Joins: mhenretty_ (sid11899@moz-5F4AA75A.irccloud.com)
  1372. # [17:46] * Joins: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net)
  1373. # [17:46] * Joins: davidillsley (sid18481@moz-5F4AA75A.irccloud.com)
  1374. # [17:48] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Quit: RealRaven)
  1375. # [17:48] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1376. # [17:51] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Quit: RealRaven)
  1377. # [17:51] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1378. # [17:52] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  1379. # [17:53] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1380. # [17:55] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  1381. # [17:55] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4fadd825bf81 - Christian Holler - Bug 972951 - Make gcparam only accept positive integers. r=evilpie
  1382. # [17:56] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1383. # [17:56] * Quits: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP) (Ping timeout)
  1384. # [17:56] * Joins: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP)
  1385. # [17:57] <Fallen> dne0: how is it going?
  1386. # [17:58] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1387. # [18:00] * Quits: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP) (Ping timeout)
  1388. # [18:00] * Joins: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP)
  1389. # [18:00] * Quits: annevk (annevk@56A6AE85.4F390C2A.420B7681.IP) (Input/output error)
  1390. # [18:00] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  1391. # [18:01] * Joins: emerson (Icedove@6F3CD6F5.77F4443F.66AE2FF3.IP)
  1392. # [18:01] * Quits: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP) (Client exited)
  1393. # [18:08] * Joins: smaug (chatzilla@moz-7AE16235.elisa-laajakaista.fi)
  1394. # [18:08] * ChanServ sets mode: +o smaug
  1395. # [18:10] <dne0> Fallen: I found a command line tool to resolve conflicts automatically but it's not working great
  1396. # [18:10] <dne0> I think I should try method 1 now
  1397. # [18:12] <Fallen> dne0: I can give you a patch that reverts about 10 commits and lets the storage patch apply. What you can do is take this patch, apply the storage patch on top of it, and then manually undo everything this patch does by changing the code again.
  1398. # [18:12] <dne0> I have resolved the conflicts for file calStorageUpgrade.jsm using that tool but there seems to be problem using it on file calStorageCalendar.js
  1399. # [18:12] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1400. # [18:13] * Joins: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP)
  1401. # [18:13] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: dealloc)
  1402. # [18:14] <Fallen> dne0: yeah, lots of changes there…http://diff.pastebin.mozilla.org/4300815
  1403. # [18:14] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1404. # [18:14] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Ping timeout)
  1405. # [18:15] <Fallen> with this revert-patch applied you can apply the storage patch cleanly, you just have to make sure the features of that patch are not lost
  1406. # [18:16] * Quits: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP) (Ping timeout)
  1407. # [18:16] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1408. # [18:17] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1409. # [18:17] * Quits: simo (simo@2ED0E560.D4EF5E84.330E81BB.IP) (Ping timeout)
  1410. # [18:18] * Quits: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP) (Quit: givanica)
  1411. # [18:18] <dne0> Fallen: the diff link you gave, its the revert patch, right?
  1412. # [18:19] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1413. # [18:19] <Fallen> gne0: yes
  1414. # [18:19] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1415. # [18:19] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Quit: RealRaven)
  1416. # [18:19] <dne0> I am not much familiar with mercurial. I have been a git user for a long time.
  1417. # [18:19] * Joins: heftig_ (heftig@moz-68433A86.dip0.t-ipconnect.de)
  1418. # [18:20] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1419. # [18:20] * Quits: heftig (heftig@moz-9804B6DE.dip0.t-ipconnect.de) (Ping timeout)
  1420. # [18:21] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1421. # [18:21] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1422. # [18:22] * Fallen is now known as Fallen|away
  1423. # [18:23] * Quits: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com) (Ping timeout)
  1424. # [18:23] * Quits: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP) (Client exited)
  1425. # [18:23] * Fallen|away is now known as Fallen
  1426. # [18:23] * Joins: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP)
  1427. # [18:23] * Joins: Xaquseg (xaquseg@moz-D4633F43.pixelhunger.com)
  1428. # [18:25] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Quit: RealRaven)
  1429. # [18:25] * Quits: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP) (Ping timeout)
  1430. # [18:25] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1431. # [18:27] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Client exited)
  1432. # [18:27] * Joins: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP)
  1433. # [18:28] * Joins: Morris (Morris@BE0D0558.7123AD28.89D78A4.IP)
  1434. # [18:29] * Joins: bdahl (bdahl@moz-102118C9.hsd1.or.comcast.net)
  1435. # [18:30] <dne0> Fallen: storage patch applied cleanly
  1436. # [18:31] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  1437. # [18:32] * Joins: simo (simo@A95A4602.E6A9FA13.BDA7A6F4.IP)
  1438. # [18:32] * Quits: coop|afk (coop@moz-31B14B88.dsl.teksavvy.com) (Ping timeout)
  1439. # [18:33] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Ping timeout)
  1440. # [18:34] * Quits: @smaug (chatzilla@moz-7AE16235.elisa-laajakaista.fi) (Ping timeout)
  1441. # [18:34] * Joins: coop (coop@moz-31B14B88.dsl.teksavvy.com)
  1442. # [18:34] * Quits: valenting (Thunderbir@9A1975C1.39CE2EE.E400A05F.IP) (Ping timeout)
  1443. # [18:36] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  1444. # [18:37] * Joins: jviereck (Adium@moz-B8899D53.dclient.hispeed.ch)
  1445. # [18:37] * Joins: squib (squib@8BCF11D9.5F77D495.B41F1B80.IP)
  1446. # [18:37] * Quits: squib (squib@8BCF11D9.5F77D495.B41F1B80.IP) (Client exited)
  1447. # [18:37] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Ping timeout)
  1448. # [18:37] <dne0> Fallen: hey, what should I do next?
  1449. # [18:38] <Fallen> dne0: great :) Now give it a whirl and see if it actually works as expected. As the SoC hasn't really started yet it probably doesn't make sense to fix specific issues, but you could think about how to solve the issue with the timezone upgrades and look through the calendar code for places that call functions like getItem() and expect the listener to be called synchronously. There is an example location in the caldav provider where I wrote "TODO not any
  1450. # [18:39] <Fallen> if gsoc would be starting right now I would suggest porting the patch to use Task.jsm and promises
  1451. # [18:39] <Fallen> https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise https://developer.mozilla.org/en-US/docs/Mozilla/JavaScript_code_modules/Task.jsm
  1452. # [18:39] * Joins: harth (harth@moz-42412102.hsd1.ca.comcast.net)
  1453. # [18:40] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  1454. # [18:41] <Fallen> for the application I would suggest doing the analysis part, putting up a test plan on how to make sure that this whole change won't break everything and estimate how much work you think this patch will be, and how many of the other bugs you think should also be part of the project.
  1455. # [18:41] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  1456. # [18:41] * Quits: jviereck (Adium@moz-B8899D53.dclient.hispeed.ch) (Quit: Leaving.)
  1457. # [18:42] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  1458. # [18:43] * Quits: heftig_ (heftig@moz-68433A86.dip0.t-ipconnect.de) (Ping timeout)
  1459. # [18:43] * Joins: jrm2k6 (jrm2k6@moz-75741FA5.lightspeed.mtryca.sbcglobal.net)
  1460. # [18:43] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  1461. # [18:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b3a9c9540bfc - Mats Palmgren - Bug 969756. r=cam
  1462. # [18:44] <dne0> Fallen: ok, thanks :)
  1463. # [18:46] * Quits: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net) (Quit: Leaving.)
  1464. # [18:46] * Quits: coop (coop@moz-31B14B88.dsl.teksavvy.com) (Quit: coop)
  1465. # [18:47] <Fallen> dne0: if you have some extra time and want to go a step further than just the analysis, the promises part is probably a good starter. I can also refer you some other bugs that might be easier for getting started
  1466. # [18:47] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  1467. # [18:48] * Joins: kushagra (kushagra@CBF4C22E.FC85E14A.520CDC98.IP)
  1468. # [18:48] * Quits: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP) (Ping timeout)
  1469. # [18:48] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  1470. # [18:48] * Joins: heftig_ (heftig@moz-68433A86.dip0.t-ipconnect.de)
  1471. # [18:49] * Joins: coop (coop@moz-31B14B88.dsl.teksavvy.com)
  1472. # [18:50] <dne0> Yeah, I think it would be better if you could assign me some easy bugs so that I can get familiar with the code base
  1473. # [18:50] * Quits: Morris (Morris@BE0D0558.7123AD28.89D78A4.IP) (Quit: Morris)
  1474. # [18:50] * Quits: kushagra (kushagra@CBF4C22E.FC85E14A.520CDC98.IP) (Ping timeout)
  1475. # [18:50] * Joins: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP)
  1476. # [18:52] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  1477. # [18:53] * Quits: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP) (Ping timeout)
  1478. # [18:53] * Joins: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP)
  1479. # [18:55] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  1480. # [18:55] * Quits: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP) (Ping timeout)
  1481. # [18:56] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  1482. # [18:56] * Joins: jdm (jdm@E595D12E.1196002C.7DBB297B.IP)
  1483. # [18:57] * Joins: smaug (chatzilla@moz-7AE16235.elisa-laajakaista.fi)
  1484. # [18:57] * ChanServ sets mode: +o smaug
  1485. # [18:57] * philor|away is now known as philor
  1486. # [18:57] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1487. # [18:58] * Joins: ericjung|phone (androirc@A478BA1B.F9C282AE.284344F5.IP)
  1488. # [18:58] <Fallen> dne0: there are a few good first bugs here: http://www.joshmatthews.net/bugsahoy/?calendar=1
  1489. # [18:59] <Fallen> dne0: if none of these sound good to you, get back to me and I'll look for some more specific ones
  1490. # [18:59] * Joins: tetsuhar_ (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1491. # [19:00] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1492. # [19:01] * Quits: tetsuhar_ (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1493. # [19:03] * Joins: milan (milan@A20BA4E7.691E9493.4B2DF651.IP)
  1494. # [19:04] <NeilAway> aargh, what is it with these explicit constructors?
  1495. # [19:04] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  1496. # [19:04] * Quits: ericjung|phone (androirc@A478BA1B.F9C282AE.284344F5.IP) (Connection reset by peer)
  1497. # [19:05] * Joins: ericjung|phone (androirc@A478BA1B.F9C282AE.284344F5.IP)
  1498. # [19:06] * Quits: jrm2k6 (jrm2k6@moz-75741FA5.lightspeed.mtryca.sbcglobal.net) (Client exited)
  1499. # [19:07] <dne0> Fallen: sure
  1500. # [19:07] * Quits: dne0 (Mibbit@AAD71C28.29E0BAFB.1957C0DA.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1501. # [19:07] * Quits: ericjung|phone (androirc@A478BA1B.F9C282AE.284344F5.IP) (Ping timeout)
  1502. # [19:07] * Quits: curiousguy13 (chatzilla@B4564A70.3190F03D.3ACD75DE.IP) (Ping timeout)
  1503. # [19:08] * Joins: curiousguy13 (chatzilla@8FFC5F8A.98825706.50E99975.IP)
  1504. # [19:08] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Quit: Leaving.)
  1505. # [19:11] * Quits: bdahl (bdahl@moz-102118C9.hsd1.or.comcast.net) (Input/output error)
  1506. # [19:13] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  1507. # [19:13] * Joins: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP)
  1508. # [19:13] * Quits: badescunicu (Thunderbir@80709F0.6CB9EB9D.47FB7864.IP) (Quit: badescunicu)
  1509. # [19:13] * Quits: milan (milan@A20BA4E7.691E9493.4B2DF651.IP) (Input/output error)
  1510. # [19:14] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Quit: Leaving.)
  1511. # [19:18] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  1512. # [19:19] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  1513. # [19:21] * Quits: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Quit: Textual IRC Client: www.textualapp.com)
  1514. # [19:21] * Quits: dcamp (sid6663@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1515. # [19:21] * Quits: davidillsley (sid18481@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1516. # [19:21] * Quits: mrchrisadams (sid1367@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1517. # [19:21] * Quits: eseidel (sid5595@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1518. # [19:21] * Quits: markh (uid24855@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1519. # [19:21] * Quits: sheppy-offline (sid12424@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1520. # [19:21] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1521. # [19:22] * Joins: valenting (Thunderbir@9A1975C1.39CE2EE.E400A05F.IP)
  1522. # [19:22] * Quits: lightofapollo|baby (sid11987@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1523. # [19:23] * Joins: eseidel (sid5595@moz-5F4AA75A.irccloud.com)
  1524. # [19:23] * Joins: sheppy (sid12424@moz-5F4AA75A.irccloud.com)
  1525. # [19:23] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1526. # [19:23] * Joins: davidillsley (sid18481@moz-5F4AA75A.irccloud.com)
  1527. # [19:25] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1528. # [19:25] * Joins: mrchrisadams (sid1367@moz-5F4AA75A.irccloud.com)
  1529. # [19:25] * Joins: dcamp (sid6663@moz-5F4AA75A.irccloud.com)
  1530. # [19:25] * Joins: lightofapollo|baby (sid11987@moz-5F4AA75A.irccloud.com)
  1531. # [19:26] * Quits: arnaud_bienner (arno@moz-A1109EC1.dsl.sta.abo.bbox.fr) (Quit: Ex-Chat)
  1532. # [19:28] * Joins: jrm2k6 (jrm2k6@moz-75741FA5.lightspeed.mtryca.sbcglobal.net)
  1533. # [19:30] * Joins: dbaron (dbaron@moz-B3F1D17A.dsl.dynamic.sonic.net)
  1534. # [19:30] * ChanServ sets mode: +ao dbaron dbaron
  1535. # [19:30] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  1536. # [19:30] * Joins: markh (uid24855@moz-5F4AA75A.irccloud.com)
  1537. # [19:32] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  1538. # [19:33] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Ping timeout)
  1539. # [19:34] * Fallen is now known as Fallen|away
  1540. # [19:35] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  1541. # [19:36] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  1542. # [19:36] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  1543. # [19:37] * Quits: @smaug (chatzilla@moz-7AE16235.elisa-laajakaista.fi) (Ping timeout)
  1544. # [19:40] * Joins: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP)
  1545. # [19:42] * Joins: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP)
  1546. # [19:43] * Quits: jrm2k6 (jrm2k6@moz-75741FA5.lightspeed.mtryca.sbcglobal.net) (Client exited)
  1547. # [19:44] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  1548. # [19:45] * Joins: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net)
  1549. # [19:46] * Quits: gargsms (gargsms@7FDD62B0.DEBD96D2.1C37C358.IP) (Quit: Leaving.)
  1550. # [19:47] * Joins: Six (Mibbit@moz-44EA82.rev.numericable.fr)
  1551. # [19:48] <firebot> Check-in:
  1552. # [19:48] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  1553. # [19:48] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/90c1ec4ae807 - Daniel Holbert - Bug 969460 part 2: Use EnsureBlockDisplay to determine the 'display' of the root node, and let nsCSSFrameConstructor::ConstructDocElementFrame create flex containers.
  1554. # [19:48] <firebot> r=bz
  1555. # [19:48] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/509cfc636986 - Daniel Holbert - Bug 969460 part 3: regression tests for "display:flex" on root node. r=bz
  1556. # [19:48] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ddac6a90ceb6 - Daniel Holbert - Bug 969460 part 1: Give EnsureBlockDisplay a second parameter, to determine whether it converts 'display:list-item' to block. r=bz
  1557. # [19:49] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1558. # [19:50] * Parts: fakedrake (user@moz-B5DC2DF4.dsl.dyn.forthnet.gr) (ERC Version 5.3 (IRC client for Emacs))
  1559. # [19:50] * Quits: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP) (Ping timeout)
  1560. # [19:50] * Joins: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  1561. # [19:51] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1562. # [19:51] * Quits: dholbert_ (dholbert@moz-2DBFC5C4.static.sonic.net) (Quit: Ex-Chat)
  1563. # [19:53] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Quit: Leaving.)
  1564. # [19:53] * Quits: coop (coop@moz-31B14B88.dsl.teksavvy.com) (Ping timeout)
  1565. # [19:53] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1566. # [19:54] * Quits: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP) (Ping timeout)
  1567. # [19:54] * Joins: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP)
  1568. # [19:54] * Joins: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP)
  1569. # [19:56] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  1570. # [19:56] * Quits: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP) (Ping timeout)
  1571. # [19:56] * Joins: coop (coop@moz-31B14B88.dsl.teksavvy.com)
  1572. # [19:57] * Quits: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Quit: gwagner)
  1573. # [19:58] * Joins: Steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1574. # [19:59] <Steve> so to answer my own q: FlushDirtyRegionToWidget ...
  1575. # [19:59] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  1576. # [19:59] <Steve> apologies. got a patch bug. it's not moz. shouldn't bother you with it.
  1577. # [19:59] * Quits: harth (harth@moz-42412102.hsd1.ca.comcast.net) (Input/output error)
  1578. # [20:00] * Quits: Steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1579. # [20:01] * Quits: coop (coop@moz-31B14B88.dsl.teksavvy.com) (Ping timeout)
  1580. # [20:01] * Quits: markh (uid24855@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1581. # [20:01] * Quits: dcamp (sid6663@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1582. # [20:01] * Quits: lightofapollo|baby (sid11987@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1583. # [20:01] * Quits: mrchrisadams (sid1367@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1584. # [20:01] * Quits: mhenretty_ (sid11899@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1585. # [20:01] * Quits: timeless (sid4015@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1586. # [20:01] * Quits: sheppy (sid12424@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1587. # [20:01] * Quits: gfritzsche (sid7586@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1588. # [20:01] * Quits: wycats (sid79@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1589. # [20:01] * Quits: biesi_ (sid8099@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1590. # [20:01] * Quits: jryans (sid12941@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1591. # [20:01] * Quits: sawrubh (uid6719@moz-5F4AA75A.irccloud.com) (Ping timeout)
  1592. # [20:03] * Joins: coop (coop@moz-31B14B88.dsl.teksavvy.com)
  1593. # [20:03] * Joins: markh (uid24855@moz-5F4AA75A.irccloud.com)
  1594. # [20:03] * Joins: wycats (sid79@moz-5F4AA75A.irccloud.com)
  1595. # [20:03] * Joins: sheppy (sid12424@moz-5F4AA75A.irccloud.com)
  1596. # [20:03] * Joins: gfritzsche (sid7586@moz-5F4AA75A.irccloud.com)
  1597. # [20:03] * Joins: jryans (sid12941@moz-5F4AA75A.irccloud.com)
  1598. # [20:03] * Joins: biesi_ (sid8099@moz-5F4AA75A.irccloud.com)
  1599. # [20:03] * Joins: lightofapollo|baby (sid11987@moz-5F4AA75A.irccloud.com)
  1600. # [20:03] * Joins: dcamp (sid6663@moz-5F4AA75A.irccloud.com)
  1601. # [20:04] * Joins: mhenretty_ (sid11899@moz-5F4AA75A.irccloud.com)
  1602. # [20:04] * Joins: timeless (sid4015@moz-5F4AA75A.irccloud.com)
  1603. # [20:05] * Joins: sawrubh (uid6719@moz-5F4AA75A.irccloud.com)
  1604. # [20:05] * Joins: mrchrisadams (sid1367@moz-5F4AA75A.irccloud.com)
  1605. # [20:06] * Parts: pranavk (pranav@6BFC1AC1.7B79ED8.1C37C358.IP)
  1606. # [20:07] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/5f96175bb23d - Brian Nicholson - Bug 970081 - Add try/catch around Toast.makeText to prevent crashes. r=mfinkle a=lsblakk
  1607. # [20:09] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1608. # [20:10] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Input/output error)
  1609. # [20:12] * Quits: Six (Mibbit@moz-44EA82.rev.numericable.fr) (Quit: http://www.mibbit.com ajax IRC Client)
  1610. # [20:13] * Quits: flo-retina (Instantbir@349BF4A0.9D3B35B.7E5C23C9.IP) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  1611. # [20:13] * Joins: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net)
  1612. # [20:13] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Ping timeout)
  1613. # [20:15] * Joins: pranavk (pranav@6BFC1AC1.7B79ED8.1C37C358.IP)
  1614. # [20:15] * BenWa|email is now known as BenWa
  1615. # [20:18] * Quits: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP) (Quit: givanica)
  1616. # [20:19] * Joins: rednaks (rednaks@23173BB8.B3501FB9.55FFA9B4.IP)
  1617. # [20:20] * Joins: ekr (ekr@moz-7B0110AD.mv.mozilla.com)
  1618. # [20:20] * Joins: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP)
  1619. # [20:21] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1620. # [20:21] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  1621. # [20:22] * Quits: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net) (Ping timeout)
  1622. # [20:22] * Quits: Rik|afk (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Input/output error)
  1623. # [20:22] * Joins: jviereck (Adium@moz-B8899D53.dclient.hispeed.ch)
  1624. # [20:23] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Ping timeout)
  1625. # [20:25] * Joins: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net)
  1626. # [20:26] * Joins: kushagra (kushagra@CBF4C22E.FC85E14A.520CDC98.IP)
  1627. # [20:27] * Joins: kushagra_ (kushagra@8C90049F.CC7FD817.520CDC98.IP)
  1628. # [20:27] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  1629. # [20:28] * Quits: kushagra (kushagra@CBF4C22E.FC85E14A.520CDC98.IP) (Ping timeout)
  1630. # [20:29] * Quits: valenting (Thunderbir@9A1975C1.39CE2EE.E400A05F.IP) (Ping timeout)
  1631. # [20:32] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  1632. # [20:32] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  1633. # [20:33] * Quits: rednaks (rednaks@23173BB8.B3501FB9.55FFA9B4.IP) (Quit: Téléportation !)
  1634. # [20:34] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  1635. # [20:34] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Ping timeout)
  1636. # [20:34] * Parts: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  1637. # [20:34] * Quits: ejpbruel (ejpbruel@moz-366E8346.cm-11-1b.dynamic.ziggo.nl) (Ping timeout)
  1638. # [20:35] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  1639. # [20:36] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1640. # [20:38] * Joins: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  1641. # [20:39] <steve> got my head around it now. you register update region in paint thread, then accumulate & invalidate in update thread. keeps paint thread fast I guess. not convinced its worth the complexity but unless I can be bothered implementing the alternative, guess we'll never know :)
  1642. # [20:39] * Quits: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  1643. # [20:42] <Ms2ger> Any ircop who can kick izi from #e10s?
  1644. # [20:45] * Joins: ejpbruel (ejpbruel@moz-366E8346.cm-11-1b.dynamic.ziggo.nl)
  1645. # [20:49] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1646. # [20:51] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1647. # [20:53] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  1648. # [20:54] * Quits: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net) (Quit: Leaving.)
  1649. # [20:55] * Joins: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP)
  1650. # [20:56] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Ping timeout)
  1651. # [20:56] * Joins: jhlin (jhlin@DEB347CD.3A7C8B79.3137B32F.IP)
  1652. # [20:57] * Joins: ejpbruel__ (ejpbruel@moz-366E8346.cm-11-1b.dynamic.ziggo.nl)
  1653. # [20:57] * Quits: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP) (Ping timeout)
  1654. # [20:57] <firebot> Check-in:
  1655. # [20:58] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/cc9e070dd294 - Jonathan Kew - Bug 970710 - Ensure GetTrimmedOffsets is called with consistent parameters from PropertyProvider::InitializeForMeasure and SetupJustificationSpacing. r=roc, a=abillings
  1656. # [20:58] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/7e47e1271dd5 - Bobby Holley - Bug 972478 - Docshell scriptability should only affect non-immune principals. r=bz, a=lsblakk
  1657. # [20:58] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/532f97dd8d56 - Mike Connor - Bug 947275 - Update Bing branding for desktop and Metro. r=gavin, a=lsblakk
  1658. # [20:58] * Quits: jhlin (jhlin@DEB347CD.3A7C8B79.3137B32F.IP) (Ping timeout)
  1659. # [21:00] * Quits: ejpbruel__ (ejpbruel@moz-366E8346.cm-11-1b.dynamic.ziggo.nl) (Quit: ejpbruel__)
  1660. # [21:02] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  1661. # [21:02] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  1662. # [21:02] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  1663. # [21:03] * Joins: Mook (mook@moz-9BCD4A60.dsl.teksavvy.com)
  1664. # [21:03] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Client exited)
  1665. # [21:03] * Quits: Optimizer (Optimizer@C5E00EC7.13A3D53C.BE4CF869.IP) (Quit: Time to optimize myself)
  1666. # [21:04] * Quits: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  1667. # [21:04] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  1668. # [21:05] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  1669. # [21:10] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1670. # [21:10] * Joins: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  1671. # [21:10] * Quits: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net) (Ping timeout)
  1672. # [21:11] * Quits: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  1673. # [21:12] * Quits: jviereck (Adium@moz-B8899D53.dclient.hispeed.ch) (Quit: Leaving.)
  1674. # [21:12] * jcranmer|away is now known as jcranmer
  1675. # [21:12] * Joins: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net)
  1676. # [21:12] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1677. # [21:12] * Joins: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net)
  1678. # [21:13] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1679. # [21:16] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  1680. # [21:19] <steve> no ... I was right the first time.
  1681. # [21:19] * Joins: givanica (Thunderbir@64CF0E24.4D6D914F.FB866788.IP)
  1682. # [21:21] * Quits: ejpbruel (ejpbruel@moz-366E8346.cm-11-1b.dynamic.ziggo.nl) (Ping timeout)
  1683. # [21:21] * Joins: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  1684. # [21:22] <steve> nsFrame.cpp / InvalidateFrameInternal is the dirty rectangle registration entrypoint ... dirty rects are then retained and flagged, then later in the same thread FlushDirtyRegionToWidget performs a region union and calls platform specific invalidate.
  1685. # [21:24] <steve> union is a commutative operation - i.e. it doesn't matter the order the region is expanded so it'll be more efficient to just expand the region as you go, then when you're done call the platform specific invalidate. no need to retain all that information.
  1686. # [21:24] <steve> so, there's that code review.
  1687. # [21:24] * Joins: harth (harth@CB167D3E.3778D849.1D6E592A.IP)
  1688. # [21:25] * Joins: jviereck (Adium@moz-B8899D53.dclient.hispeed.ch)
  1689. # [21:25] <steve> so unless anyone has an objection, that's going in bugzilla.
  1690. # [21:26] * retornam|away is now known as retornam
  1691. # [21:27] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  1692. # [21:28] * Quits: Archaeopteryx (itsme@1D34A441.73D4BC9A.1AF5A838.IP) (Quit: Goodbye)
  1693. # [21:30] * Quits: kushagra_ (kushagra@8C90049F.CC7FD817.520CDC98.IP) (Ping timeout)
  1694. # [21:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/20d7a9037429 - Ms2ger - Bug 968856 - Move unconditional LOCAL_INCLUDES into moz.build; r=mshal
  1695. # [21:30] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/3a37d3be57fa - Ms2ger - Bug 968900 - Move LOCAL_INCLUDES to moz.build in toolkit/; r=mshal
  1696. # [21:31] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1697. # [21:31] <steve> only issue I can see is hierarchy. if some frame has a bunch of children that invalidate & the parent does too, only need to add the parent's invalidate rect but should be able to figure that out in the initial traverse as you go top down into the recursion.
  1698. # [21:31] * Quits: Ms2ger (Ms2ger@moz-CB2E71FA.adsl-dyn.isp.belgacom.be) (Quit: nn)
  1699. # [21:32] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  1700. # [21:32] * Joins: kushagra (kushagra@8C90049F.CC7FD817.520CDC98.IP)
  1701. # [21:34] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Ping timeout)
  1702. # [21:34] * Quits: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Quit: gwagner)
  1703. # [21:37] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Ping timeout)
  1704. # [21:37] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Ping timeout)
  1705. # [21:37] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1706. # [21:38] * Quits: kushagra (kushagra@8C90049F.CC7FD817.520CDC98.IP) (Client exited)
  1707. # [21:40] * Joins: kushagra (kushagra@CBF4C22E.FC85E14A.520CDC98.IP)
  1708. # [21:40] * Joins: benvie (bbenvie@49869947.3778D849.1D6E592A.IP)
  1709. # [21:42] * Quits: kushagra (kushagra@CBF4C22E.FC85E14A.520CDC98.IP) (Ping timeout)
  1710. # [21:42] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  1711. # [21:44] * Joins: vikstrous (v@moz-BD899AAF.cpe.net.cable.rogers.com)
  1712. # [21:46] * Joins: soumyaC2 (soumyaC@moz-E0F149F7.members.linode.com)
  1713. # [21:47] * Quits: harth (harth@CB167D3E.3778D849.1D6E592A.IP) (Input/output error)
  1714. # [21:47] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1715. # [21:49] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1716. # [21:50] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1717. # [21:50] * Joins: Optimizer (Optimizer@C5E00EC7.13A3D53C.BE4CF869.IP)
  1718. # [21:51] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1719. # [21:52] * Joins: botond|issaquah (chatzilla@moz-31BB7607.public.wayport.net)
  1720. # [21:53] * Quits: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Ping timeout)
  1721. # [21:53] * Joins: smaug (chatzilla@moz-7AE16235.elisa-laajakaista.fi)
  1722. # [21:53] * ChanServ sets mode: +o smaug
  1723. # [21:54] * Quits: benvie (bbenvie@49869947.3778D849.1D6E592A.IP) (Ping timeout)
  1724. # [21:54] * Joins: harth (harth@5320A7E.3778D849.1D6E592A.IP)
  1725. # [21:55] * Quits: harth (harth@5320A7E.3778D849.1D6E592A.IP) (Input/output error)
  1726. # [21:56] * Quits: coop (coop@moz-31B14B88.dsl.teksavvy.com) (Ping timeout)
  1727. # [21:56] * Joins: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP)
  1728. # [21:56] * Joins: coop (coop@moz-31B14B88.dsl.teksavvy.com)
  1729. # [21:58] * Quits: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP) (Ping timeout)
  1730. # [21:58] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  1731. # [21:58] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  1732. # [21:59] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  1733. # [21:59] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  1734. # [22:00] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Ping timeout)
  1735. # [22:01] * Joins: harth (harth@89BA202A.3778D849.1D6E592A.IP)
  1736. # [22:01] * Quits: harth (harth@89BA202A.3778D849.1D6E592A.IP) (Input/output error)
  1737. # [22:01] * Joins: harth (harth@89BA202A.3778D849.1D6E592A.IP)
  1738. # [22:02] * Joins: rniwa (rniwa@moz-A1630E64.hsd1.ca.comcast.net)
  1739. # [22:02] * Quits: harth (harth@89BA202A.3778D849.1D6E592A.IP) (Connection reset by peer)
  1740. # [22:03] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  1741. # [22:04] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Ping timeout)
  1742. # [22:05] * Quits: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Input/output error)
  1743. # [22:08] * Quits: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net) (Quit: Leaving.)
  1744. # [22:09] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  1745. # [22:09] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  1746. # [22:09] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  1747. # [22:09] * Quits: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP) (Quit: Textual IRC Client: www.textualapp.com)
  1748. # [22:09] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Client exited)
  1749. # [22:11] * Quits: therube (chatzilla@moz-532294F.hsd1.md.comcast.net) (Ping timeout)
  1750. # [22:12] * Joins: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  1751. # [22:13] * Quits: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Quit: gwagner)
  1752. # [22:13] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1753. # [22:14] * Quits: jackneill (jackneill@moz-543EECA8.pool.digikabel.hu) (Ping timeout)
  1754. # [22:14] <steve> so ... unless I'm missing something, and I don't think I am, that's an entire hierarchy traverse pass than can be eliminated.
  1755. # [22:14] <steve> *that
  1756. # [22:15] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1757. # [22:17] * Joins: glosoli (glosoli@8FE3D9B2.E4E9242D.F07881E5.IP)
  1758. # [22:21] * Joins: harth (harth@B6CADF01.3778D849.1D6E592A.IP)
  1759. # [22:21] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Quit: RealRaven)
  1760. # [22:21] * Quits: msucan (mihai@A8BA4AAE.C830DE9.7C5F70AF.IP) (Quit: Leaving.)
  1761. # [22:22] * Joins: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP)
  1762. # [22:23] * Quits: harth (harth@B6CADF01.3778D849.1D6E592A.IP) (Input/output error)
  1763. # [22:24] * Joins: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP)
  1764. # [22:25] * Quits: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP) (Quit: bbye all )
  1765. # [22:26] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  1766. # [22:26] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  1767. # [22:30] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  1768. # [22:33] * Quits: drs (drs@moz-8A7708E6.members.linode.com) (User has been banned from Mozilla (no spamming here))
  1769. # [22:33] * Quits: padenot (paul@moz-8A7708E6.members.linode.com) (User has been banned from Mozilla (no spamming here))
  1770. # [22:33] * Quits: benjamin (benjamin@moz-8A7708E6.members.linode.com) (User has been banned from Mozilla (no spamming here))
  1771. # [22:37] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  1772. # [22:39] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  1773. # [22:39] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1774. # [22:40] <steve> me again. this hangs prior to main launch screen in ff. works chrome & ie.
  1775. # [22:40] <steve> http://moshi.kano.me/#
  1776. # [22:41] <steve> hmmm ... just started ok ff. so looks to be an intermitant initialize bug. those are fun to fix.
  1777. # [22:41] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1778. # [22:41] * Joins: doug (uid23713@moz-E77DEB21.irccloud.com)
  1779. # [22:43] * Joins: drs (drs@moz-8A7708E6.members.linode.com)
  1780. # [22:45] * Joins: espadrine (ttyl@moz-D378BD68.w92-128.abo.wanadoo.fr)
  1781. # [22:45] * Quits: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net) (Quit: Leaving)
  1782. # [22:46] * Joins: benjamin (benjamin@moz-8A7708E6.members.linode.com)
  1783. # [22:46] * sam113101 is now known as YourBestFriend
  1784. # [22:48] * Quits: bz (bzbarsky@moz-72881629.bstnma.fios.verizon.net) (Ping timeout)
  1785. # [22:49] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1786. # [22:50] * Joins: paul1 (paul@moz-8A7708E6.members.linode.com)
  1787. # [22:50] * Joins: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com)
  1788. # [22:51] <steve> weird. that locked up for me the first time I ran it. every other time it's been ok. others have said it's buggy in ff & I've noticed it misbehave once.
  1789. # [22:51] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1790. # [22:51] * Quits: steve (chatzilla@moz-C720AC99.range86-166.btcentralplus.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1791. # [22:52] * Quits: rniwa (rniwa@moz-A1630E64.hsd1.ca.comcast.net) (Quit: rniwa)
  1792. # [22:54] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  1793. # [22:54] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1794. # [22:56] * Joins: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP)
  1795. # [22:56] * Joins: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net)
  1796. # [22:59] * Quits: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP) (Ping timeout)
  1797. # [22:59] * Joins: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP)
  1798. # [23:01] * Quits: kk1fff (kk1fff@4572D2F7.6B1C403D.7BAEB36B.IP) (Ping timeout)
  1799. # [23:04] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  1800. # [23:04] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1801. # [23:04] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  1802. # [23:05] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1803. # [23:06] <@dbaron> philor, btw, I changed the error-tolerance mechanism in test_transitions.html to fix bug 541855... hopefully the new approach won't yield intermittent failures, but it's possible it will need a little further adjustment
  1804. # [23:07] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  1805. # [23:11] <philor> dbaron: you know the classic sign that someone isn't learning in a college class, "Is this going to be on the final exam?" - after the third time through reading the comment for that change, I started wondering whether that was going to be on the final :)
  1806. # [23:12] <@dbaron> philor, eh?
  1807. # [23:12] * Quits: RealRaven (Thunderbir@C602FEC9.F9D1B245.C3498625.IP) (Client exited)
  1808. # [23:14] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  1809. # [23:15] <philor> dbaron: I've got too little background, and too little ability to hold multiple abstractions in my head, so I'm going to stick with "yay, it shouldn't fail"
  1810. # [23:15] * ericjung is now known as Rasbora
  1811. # [23:16] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: dealloc)
  1812. # [23:16] * Quits: joshua-s (Thunderbir@moz-E24EA8A.syrcny.east.verizon.net) (Ping timeout)
  1813. # [23:17] * Joins: joshua-s (Thunderbir@moz-E24EA8A.syrcny.east.verizon.net)
  1814. # [23:26] * Joins: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com)
  1815. # [23:27] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1816. # [23:29] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  1817. # [23:29] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1818. # [23:30] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  1819. # [23:32] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1820. # [23:33] * Joins: jduell (jduell@moz-2AA1D99C.hsd1.wa.comcast.net)
  1821. # [23:35] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  1822. # [23:37] * Quits: jduell (jduell@moz-2AA1D99C.hsd1.wa.comcast.net) (Input/output error)
  1823. # [23:37] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  1824. # [23:38] * Quits: robertbindar (Thunderbir@78A65DEE.7FBC8CF6.2B3D3D4.IP) (Ping timeout)
  1825. # [23:39] * Joins: rednaks (rednaks@23173BB8.B3501FB9.55FFA9B4.IP)
  1826. # [23:39] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1827. # [23:39] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  1828. # [23:44] * Quits: serge (Thunderbir@FED1E923.DDE84BFE.DBBCD276.IP) (Ping timeout)
  1829. # [23:49] <reuben> today's nightly is super crashy
  1830. # [23:49] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  1831. # [23:50] * Joins: jrmuizel (jrmuizel@moz-5518169F.dsl.teksavvy.com)
  1832. # [23:51] * Rasbora is now known as ericjung
  1833. # [23:51] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  1834. # [23:52] * Joins: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP)
  1835. # [23:55] * Joins: jduell (jduell@moz-2AA1D99C.hsd1.wa.comcast.net)
  1836. # [23:55] <evilpie> I need some bugzilla admin
  1837. # [23:56] * Joins: mwu_ (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  1838. # [23:56] * Joins: milan (milan@A20BA4E7.691E9493.4B2DF651.IP)
  1839. # [23:57] * Quits: Dwight_Stegall (Pony_Expre@moz-EE25458F.client.mchsi.com) (Quit: ChatZilla 0.9.90.1 [Firefox 28.0/20140213172947])
  1840. # [23:57] * Joins: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP)
  1841. # [23:58] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Input/output error)
  1842. # [23:58] * Quits: jviereck (Adium@moz-B8899D53.dclient.hispeed.ch) (Quit: Leaving.)
  1843. # [23:59] * Quits: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net) (Ping timeout)
  1844. # [23:59] * Quits: lpy (lpy@3481A86.D40F0E75.E99F7FDB.IP) (Ping timeout)
  1845. # Session Close: Sun Feb 16 00:00:00 2014

The end :)