/irc-logs / freenode / #whatwg / 2011-09-30 / end

Options:

  1. # Session Start: Fri Sep 30 00:00:01 2011
  2. # Session Ident: #whatwg
  3. # [00:00] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  4. # [00:00] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  5. # [00:03] * Joins: Rik`_ (~Rik`@2a01:e34:ec0f:1570:d510:37e4:8b8b:4ebf)
  6. # [00:03] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  7. # [00:03] * Quits: xtoph (~xtoph@213.47.185.206)
  8. # [00:05] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  9. # [00:08] * Quits: hober (~ted@unaffiliated/hober) (Read error: Connection reset by peer)
  10. # [00:08] * Quits: Rik`_ (~Rik`@2a01:e34:ec0f:1570:d510:37e4:8b8b:4ebf) (Ping timeout: 240 seconds)
  11. # [00:08] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Operation timed out)
  12. # [00:09] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  13. # [00:12] * Joins: sicking (~chatzilla@34.198.247.173.mozilla-sfo1.web-pass.com)
  14. # [00:14] * Joins: davidb_ (~davidb@bas4-kitchener06-1128762076.dsl.bell.ca)
  15. # [00:14] * Joins: weinig (~weinig@17.245.91.79)
  16. # [00:16] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
  17. # [00:21] * Quits: stefan-__ (~music@wall.wi2.uni-trier.de) (Quit: Verlassend)
  18. # [00:24] * Quits: rniwa (rniwa@nat/google/x-qxydvoaztcxcdzkb) (Quit: rniwa)
  19. # [00:31] * Quits: charlvn (~charlvn@2001:0:53aa:64c:8df:3ee7:adb4:5bbb) (Quit: Ik ga weg)
  20. # [00:34] * Quits: jwalden (~waldo@2620:101:8003:200:221:6aff:fe6e:d10) (Quit: ChatZilla 0.9.86-rdmsoft [XULRunner 1.9.2.22/20110906122925])
  21. # [00:34] * Joins: ojan (ojan@nat/google/x-seyvimupwchqlwcc)
  22. # [00:37] * Quits: weinig (~weinig@17.245.91.79) (Quit: weinig)
  23. # [00:41] * Joins: danbeam (~bitlbee@unaffiliated/danbeam)
  24. # [00:41] * Quits: smaug____ (~chatzilla@GZYMKDCII.gprs.sl-laajakaista.fi) (Ping timeout: 255 seconds)
  25. # [00:42] * Quits: davidb_ (~davidb@bas4-kitchener06-1128762076.dsl.bell.ca) (Quit: davidb_)
  26. # [00:42] * Quits: Amorphous (jan@unaffiliated/amorphous) (Read error: Operation timed out)
  27. # [00:44] * Joins: hober2 (~ted@unaffiliated/hober)
  28. # [00:45] * _bga is now known as bga_|away
  29. # [00:45] * hober2 is now known as hober
  30. # [00:46] <hober> Hixie: in #pixel-manipulation, this text is unfortunately in an example and not in the main prose: "The data returned by getImageData () is at the resolution of the canvas backing store, which is likely to not be one device pixel to each CSS pixel if the display used is a high resolution display."
  31. # [00:47] <danbeam> dbaron: question about css3-transitions - if I add two classes in quick succession to an element, and one class adds a -webkit-transition: -webkit-transform 1s; and the other adds -webkit-transform: scale(2); (for example), what should happen?
  32. # [00:48] * bga_|away is now known as bga_
  33. # [00:48] <hober> danbeam: if you added the classes in that order, the transition should apply
  34. # [00:49] * Joins: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp)
  35. # [00:49] * Joins: weinig (~weinig@17.245.91.79)
  36. # [00:53] <danbeam> hober: that was my thinking as well, however I'm having to wait til the next JS/UI turn by scheduling a setTimeout to add the trans*form* class (on some platforms)
  37. # [00:54] <danbeam> I think this is an implementation difference, not specified behavior, though (like as you said, it *should* work)
  38. # [00:56] <hober> oh, i see. yeah, it makes sense that you could see both behaviors
  39. # [00:56] <hober> and either behavior is justifiable
  40. # [00:57] <danbeam> because style updates aren't guaranteed to be instant for performance benefits?
  41. # [00:57] <danbeam> s/instant/sync/
  42. # [00:57] <hober> more or less
  43. # [00:58] <danbeam> I may try a .innerText access or a getComputedStyle() and see if this ensures things are flushed synchronously
  44. # [00:58] <divya> danbeam: afaik all browsers repaint at one go
  45. # [00:59] <divya> which is why you wont see changes unless you setTimeout
  46. # [00:59] * Joins: Amorphous (jan@unaffiliated/amorphous)
  47. # [00:59] <danbeam> divya: it's strange, Chromium for Linux and (it seems) OSX work fine in this regard, but on Windows it doesn't work unless I schedule a class addition later
  48. # [00:59] * Joins: rubys (~rubys@cpe-098-027-059-167.nc.res.rr.com)
  49. # [01:00] <divya> really? when I tested you had to do setTimeout
  50. # [01:00] <danbeam> anyways, I just wanted to see if it was specified or not (like I said)
  51. # [01:00] <divya> if you are changing immediately
  52. # [01:00] * Joins: othermaciej_ (~mjs@2620:149:4:1b01:b0b0:9ade:99cc:d10)
  53. # [01:00] <divya> e.g. addClass("blur"); removeclass("blur");
  54. # [01:01] <danbeam> divya: http://jsfiddle.net/X6EFX/ works for me on OSX, Chrome 14
  55. # [01:01] * danbeam inb4 "Y U NO Opera?"
  56. # [01:02] <danbeam> (sorry, just checking on Chrome for right now)
  57. # [01:03] <divya> danbeam: err thats not the case i referred to
  58. # [01:03] * Quits: othermaciej (~mjs@17.245.90.41) (Quit: othermaciej)
  59. # [01:03] * othermaciej_ is now known as othermaciej
  60. # [01:03] <divya> the case is when you add/remove classnames and expect it to trigger a transition
  61. # [01:03] * Quits: weinig (~weinig@17.245.91.79) (Quit: weinig)
  62. # [01:04] * Joins: jwalden (~waldo@2620:101:8003:200:221:6aff:fe6e:d10)
  63. # [01:05] <danbeam> divya: PM
  64. # [01:06] <divya> k
  65. # [01:07] * Parts: rubys (~rubys@cpe-098-027-059-167.nc.res.rr.com)
  66. # [01:11] * bga_ is now known as bga_|away
  67. # [01:11] <Hixie> hober: isn't there equivalent text outside the example?
  68. # [01:13] <dbaron> danbeam, hober, it's explicitly undefined in the spec, and one of the architectural issues with transitions
  69. # [01:14] * Joins: weinig (~weinig@17.245.91.79)
  70. # [01:14] <dbaron> "Since this specification does not define when computed values change, and thus what changes to computed values are considered simultaneous, authors should be aware that changing any of the transition properties a small amount of time after making a change that might transition can result in behavior that varies between implementations, since the changes might be considered simultaneous in some implementations but not others."
  71. # [01:15] <dbaron> er, wait, the case you mentioned is defined
  72. # [01:15] <dbaron> never mind
  73. # [01:15] <hober> Hixie: /me looks
  74. # [01:16] <dbaron> however, you might not get a transition if the element was never actually displayed with the previous value of transform
  75. # [01:18] <hober> Hixie: if there is I can't find it
  76. # [01:18] <Hixie> k let me look one sec
  77. # [01:19] <Hixie> i wonder if i broke this when i did the arraybuffer change
  78. # [01:20] <Hixie> no, looks like it was always broken
  79. # [01:20] <Hixie> ok
  80. # [01:20] * Quits: newsbad__com (~gfdffdfd@pool-74-111-197-200.lsanca.fios.verizon.net)
  81. # [01:21] <Hixie> can you send mail to whatwg mentioning that it doesn't say anywhere that getImageData() is to return the backing store directly?
  82. # [01:21] <hober> Hixie: will do
  83. # [01:21] <hober> Hixie: thanks
  84. # [01:21] <Hixie> thanks
  85. # [01:25] <ojan> TabAtkins: you there? i have moar flexbox questions.
  86. # [01:25] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (Read error: Connection reset by peer)
  87. # [01:27] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
  88. # [01:31] <Philip`> Hixie: Doesn't the "must result in no visible changes to the rendering" thing imply that getImageData must return the backing store, since anything else would be lossy?
  89. # [01:37] * bga_|away is now known as bga_
  90. # [01:37] * Joins: nessy (~Adium@124-168-52-143.dyn.iinet.net.au)
  91. # [01:38] * Quits: weinig (~weinig@17.245.91.79) (Quit: weinig)
  92. # [01:40] * Parts: boaz (~boaz@li326-230.members.linode.com)
  93. # [01:42] <danbeam> dbaron: where is the case I mentioned defined?
  94. # [01:43] * Quits: nessy (~Adium@124-168-52-143.dyn.iinet.net.au) (Quit: Leaving.)
  95. # [01:44] * Quits: KillerX (~anant@34.198.247.173.mozilla-sfo1.web-pass.com) (Quit: KillerX)
  96. # [01:46] <dbaron> danbeam, "When the computed value of an animatable property changes, implementations must decide what transitions to start based on the values of the ‘transition-property’, ‘transition-duration’, ‘transition-timing-function’, and ‘transition-delay’ properties at the time the animatable property would first have its new computed value. "
  97. # [01:48] <Hixie> Philip`: good point
  98. # [01:48] <Hixie> Philip`: maybe i should add a note to that effect?
  99. # [01:52] * Joins: scor (~scor@drupal.org/user/52142/view)
  100. # [01:56] <hober> Hixie: sounds good to me
  101. # [01:59] <Hixie> ok i'll turn the paragraph you (hober) quoted earlier into a note after the paragraph Philip` quoted
  102. # [01:59] <Hixie> sound good?
  103. # [02:00] <Hixie> aw man, bug 13328 is gonna be a pain
  104. # [02:00] <Hixie> i guess i should write a script to do the conversion automatically
  105. # [02:02] * Quits: rillian_ (~rillian@150.183.119.66.static.metrobridge.net) (Remote host closed the connection)
  106. # [02:04] <Hixie> ok i checked in the change above
  107. # [02:06] * Quits: ojan (ojan@nat/google/x-seyvimupwchqlwcc) (Quit: ojan)
  108. # [02:10] * bga_ is now known as bga_|away
  109. # [02:14] <danbeam> hober, dbaron: thank you for your help
  110. # [02:21] * bga_|away is now known as bga_
  111. # [02:24] * Quits: sicking (~chatzilla@34.198.247.173.mozilla-sfo1.web-pass.com) (Ping timeout: 260 seconds)
  112. # [02:26] * Joins: ap_ (~ap@17.245.91.215)
  113. # [02:26] * Quits: ap_ (~ap@17.245.91.215) (Remote host closed the connection)
  114. # [02:26] * Quits: ap (~ap@17.212.155.203) (Read error: Connection reset by peer)
  115. # [02:26] * Joins: ap (~ap@17.212.155.203)
  116. # [02:32] * Quits: ZombieLoffe (ZombieL@unaffiliated/zombieloffe)
  117. # [02:42] * Joins: agektmr (~Adium@u676029.xgsnu2.imtp.tachikawa.mopera.net)
  118. # [02:42] * Joins: shetech (~shetech@c-76-126-167-49.hsd1.ca.comcast.net)
  119. # [02:50] * Quits: astearns (~anonymous@192.150.22.5) (Ping timeout: 260 seconds)
  120. # [02:51] * Joins: yuuki (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp)
  121. # [02:54] * Quits: ap (~ap@17.212.155.203) (Quit: ap)
  122. # [02:55] * Quits: aho (~nya@fuld-590c62df.pool.mediaWays.net) (Quit: EXEC_over.METHOD_SUBLIMATION)
  123. # [03:05] * Joins: weinig (~weinig@17.212.155.228)
  124. # [03:05] * Quits: dave_levin (dave_levin@nat/google/x-xevzufummguexscd) (Quit: dave_levin)
  125. # [03:07] * bga_ is now known as bga_|away
  126. # [03:12] * Joins: miketaylr (~miketaylr@24.42.93.245)
  127. # [03:12] * Joins: nattokirai (~nattokira@rtr.mozilla.or.jp)
  128. # [03:14] * bga_|away is now known as bga_
  129. # [03:24] * bga_ is now known as bga_|away
  130. # [03:25] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 260 seconds)
  131. # [03:27] * Joins: temp01 (~temp01@unaffiliated/temp01)
  132. # [03:29] * Quits: mkanat (mkanat@nat/google/x-advdcxmyblfrrzas) (Quit: Ex-Chat)
  133. # [03:32] * Joins: othermaciej_ (~mjs@17.245.90.41)
  134. # [03:37] * bga_|away is now known as bga_
  135. # [03:39] * Joins: J_Voracek (~J_Voracek@ip-64-134-102-244.public.wayport.net)
  136. # [03:39] * Quits: J_Voracek (~J_Voracek@ip-64-134-102-244.public.wayport.net) (Client Quit)
  137. # [03:39] * Quits: dbaron (~dbaron@nat/mozilla/x-qgkrlatapxcqjxqv) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  138. # [03:41] * Quits: agektmr (~Adium@u676029.xgsnu2.imtp.tachikawa.mopera.net) (Quit: Leaving.)
  139. # [03:41] * bga_ is now known as bga_|away
  140. # [03:41] * Quits: bga_|away (~bga@ppp78-37-221-108.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
  141. # [03:46] * Quits: jwalden (~waldo@2620:101:8003:200:221:6aff:fe6e:d10) (Quit: ChatZilla 0.9.86-rdmsoft [XULRunner 1.9.2.22/20110906122925])
  142. # [03:47] * Quits: othermaciej (~mjs@2620:149:4:1b01:b0b0:9ade:99cc:d10) (Quit: othermaciej)
  143. # [03:47] * othermaciej_ is now known as othermaciej
  144. # [03:47] * Quits: roc (~chatzilla@60.234.54.74) (Ping timeout: 248 seconds)
  145. # [03:52] * Joins: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net)
  146. # [04:02] * Quits: jernoble (~jernoble@17.212.152.13) (Read error: No route to host)
  147. # [04:02] * Joins: jernoble (~jernoble@17.212.152.13)
  148. # [04:04] * Joins: dbaron (~dbaron@173.228.28.227)
  149. # [04:18] * Quits: jernoble (~jernoble@17.212.152.13) (Read error: Operation timed out)
  150. # [04:19] * Joins: jernoble (~jernoble@17.212.152.13)
  151. # [04:20] * Joins: agektmr (~Adium@220.109.219.244)
  152. # [04:21] * Joins: roc (~chatzilla@121.98.230.221)
  153. # [04:22] * Joins: jdong_ (~jdong@222.126.155.250)
  154. # [04:32] * Quits: miketaylr (~miketaylr@24.42.93.245) (Read error: Connection reset by peer)
  155. # [04:35] * Joins: miketaylr (~miketaylr@24.42.93.245)
  156. # [04:39] * Quits: weinig (~weinig@17.212.155.228) (Quit: weinig)
  157. # [05:07] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
  158. # [05:11] * Quits: othermaciej (~mjs@17.245.90.41) (Ping timeout: 245 seconds)
  159. # [05:22] * Joins: MikeSmith_ (~MikeSmith@EM1-112-116-139.pool.e-mobile.ne.jp)
  160. # [05:24] * Quits: MikeSmith (~MikeSmith@EM1-112-75-248.pool.e-mobile.ne.jp) (Ping timeout: 260 seconds)
  161. # [05:24] * MikeSmith_ is now known as MikeSmith
  162. # [05:37] * Joins: nessy (~Adium@124-168-52-143.dyn.iinet.net.au)
  163. # [05:39] * Joins: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net)
  164. # [05:43] * Quits: nonge_ (~nonge@p5B326C56.dip.t-dialin.net) (Ping timeout: 260 seconds)
  165. # [05:47] * Quits: benjoffe_ (~benjoffe_@CPE-203-51-100-177.lns10.cht.bigpond.net.au) (Remote host closed the connection)
  166. # [05:55] * Joins: miketaylr (~miketaylr@24.42.93.245)
  167. # [05:56] * Joins: benjoffe_ (~benjoffe_@CPE-203-51-100-177.lns10.cht.bigpond.net.au)
  168. # [06:06] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
  169. # [06:08] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  170. # [06:08] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  171. # [06:09] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  172. # [06:09] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  173. # [06:10] * Joins: Rik`_ (~Rik`@2a01:e34:ec0f:1570:44b9:f1f5:ec6d:84d1)
  174. # [06:10] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  175. # [06:11] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  176. # [06:13] * Quits: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net) (*.net *.split)
  177. # [06:13] * Quits: Amorphous (jan@unaffiliated/amorphous) (*.net *.split)
  178. # [06:13] * Quits: hober (~ted@unaffiliated/hober) (*.net *.split)
  179. # [06:13] * Quits: jennb (jennb@nat/google/x-hiuzvneuypvdojka) (*.net *.split)
  180. # [06:13] * Quits: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net) (*.net *.split)
  181. # [06:13] * Quits: annevk5 (u2483@gateway/web/irccloud.com/x-ubgbswcfqbkuybwx) (*.net *.split)
  182. # [06:13] * Quits: beverloo (beverloo@nat/google/x-mtquqrmpjilhrxnn) (*.net *.split)
  183. # [06:13] * Quits: yutak (~yutak@2401:fa00:4:1000:baac:6fff:fe99:adfb) (*.net *.split)
  184. # [06:13] * Quits: hoodow (~hoodow@pdpc/supporter/active/hoodow) (*.net *.split)
  185. # [06:13] * Quits: karlcow (~karl@nerval.la-grange.net) (*.net *.split)
  186. # [06:13] * Quits: payman (~payman@pat.se.opera.com) (*.net *.split)
  187. # [06:13] * Quits: gsnedders (~gsnedders@204.232.194.186) (*.net *.split)
  188. # [06:13] * Quits: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan) (*.net *.split)
  189. # [06:13] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (*.net *.split)
  190. # [06:13] * Quits: riven (~riven@pdpc/supporter/professional/riven) (*.net *.split)
  191. # [06:13] * Quits: Scorchin (u1242@gateway/web/irccloud.com/x-xrtewibgbvjyvkdu) (*.net *.split)
  192. # [06:13] * Quits: Rik`_ (~Rik`@2a01:e34:ec0f:1570:44b9:f1f5:ec6d:84d1) (*.net *.split)
  193. # [06:13] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (*.net *.split)
  194. # [06:13] * Quits: gavin___ (~gavin@76.14.70.183) (*.net *.split)
  195. # [06:13] * Quits: KolakCC (~KolakCC@unaffiliated/kolakcc) (*.net *.split)
  196. # [06:13] * Quits: jochen__ (jochen@nat/google/x-kzefzyzdavqhlznl) (*.net *.split)
  197. # [06:13] * Quits: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj) (*.net *.split)
  198. # [06:13] * Quits: arv (arv@nat/google/x-goylsyboktjbhvwk) (*.net *.split)
  199. # [06:13] * Quits: robman (~robman@eth4584.nsw.adsl.internode.on.net) (*.net *.split)
  200. # [06:13] * Quits: inimino (~inimino@boshi.inimino.org) (*.net *.split)
  201. # [06:13] * Quits: scheib1 (scheib@nat/google/x-qoykoaairoiucoej) (*.net *.split)
  202. # [06:13] * Quits: hamaji (~hamaji@220.109.219.244) (*.net *.split)
  203. # [06:13] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (*.net *.split)
  204. # [06:13] * Quits: jacobolu_ (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net) (*.net *.split)
  205. # [06:13] * Quits: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk) (*.net *.split)
  206. # [06:13] * Quits: twisted` (~twisted@205.189.73.45) (*.net *.split)
  207. # [06:13] * Quits: FireFly (~firefly@unaffiliated/firefly) (*.net *.split)
  208. # [06:13] * Quits: Workshiva (~Dashiva@74.125.57.33) (*.net *.split)
  209. # [06:13] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (*.net *.split)
  210. # [06:13] * Quits: takkaria (~takkaria@isparp.co.uk) (*.net *.split)
  211. # [06:13] * Quits: jmb (~jmb@mail.parsifal.org.uk) (*.net *.split)
  212. # [06:13] * Quits: gnarf (~gnarf@unaffiliated/gnarf) (*.net *.split)
  213. # [06:13] * Quits: pererik (~pe@unaffiliated/pererik) (*.net *.split)
  214. # [06:13] * Quits: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net) (*.net *.split)
  215. # [06:13] * Quits: romainhuet (u2533@gateway/web/irccloud.com/x-kgagqzjfsstfntxa) (*.net *.split)
  216. # [06:13] * Quits: slightlyoff (u1768@gateway/web/irccloud.com/x-leutuazhgomfkzqq) (*.net *.split)
  217. # [06:13] * Quits: tmzt_ (~tmzt@adsl-69-208-11-149.dsl.akrnoh.ameritech.net) (*.net *.split)
  218. # [06:13] * Quits: Marcosc (~Adium@cm-84.208.50.132.getinternet.no) (*.net *.split)
  219. # [06:13] * Quits: benschwarz (u2121@gateway/web/irccloud.com/x-arvwvlkaudklrkjq) (*.net *.split)
  220. # [06:13] * Quits: Hixie (~ianh@trivini.no) (*.net *.split)
  221. # [06:13] * Quits: reggna (~reggna@godis.olf.sgsnet.se) (*.net *.split)
  222. # [06:13] * Quits: Adawerk``` (~mven__@169.241.49.57) (*.net *.split)
  223. # [06:13] * Quits: roc (~chatzilla@121.98.230.221) (*.net *.split)
  224. # [06:13] * Quits: llrcombs (~llrcombs@64.130.210.214) (*.net *.split)
  225. # [06:13] * Quits: webben (~benjamin@173-203-84-17.static.cloud-ips.com) (*.net *.split)
  226. # [06:13] * Quits: AryehGregor (~Simetrica@mediawiki/simetrical) (*.net *.split)
  227. # [06:13] * Quits: salavas (~salavas@c83-248-102-83.bredband.comhem.se) (*.net *.split)
  228. # [06:13] * Quits: Jedi_ (~Jedi@jedi.org) (*.net *.split)
  229. # [06:13] * Quits: nigelb (~nigel@ubuntu/member/nigelb) (*.net *.split)
  230. # [06:13] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Write error: Connection reset by peer)
  231. # [06:13] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  232. # [06:13] * Quits: danheberden (~danheberd@li225-35.members.linode.com) (Ping timeout: 248 seconds)
  233. # [06:16] * Rik` is now known as 64MAAH39P
  234. # [06:16] * Quits: 64MAAH39P (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  235. # [06:16] * Joins: danheberden (~danheberd@li225-35.members.linode.com)
  236. # [06:16] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  237. # [06:16] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
  238. # [06:16] * Joins: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net)
  239. # [06:16] * Joins: roc (~chatzilla@121.98.230.221)
  240. # [06:16] * Joins: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net)
  241. # [06:16] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
  242. # [06:16] * Joins: Amorphous (jan@unaffiliated/amorphous)
  243. # [06:16] * Joins: hober (~ted@unaffiliated/hober)
  244. # [06:16] * Joins: karlcow (~karl@nerval.la-grange.net)
  245. # [06:16] * Joins: gavin___ (~gavin@76.14.70.183)
  246. # [06:16] * Joins: jennb (jennb@nat/google/x-hiuzvneuypvdojka)
  247. # [06:16] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
  248. # [06:16] * Joins: KolakCC (~KolakCC@unaffiliated/kolakcc)
  249. # [06:16] * Joins: jacobolu_ (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net)
  250. # [06:16] * Joins: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk)
  251. # [06:16] * Joins: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net)
  252. # [06:16] * Joins: hoodow (~hoodow@pdpc/supporter/active/hoodow)
  253. # [06:16] * Joins: yutak (~yutak@2401:fa00:4:1000:baac:6fff:fe99:adfb)
  254. # [06:16] * Joins: beverloo (beverloo@nat/google/x-mtquqrmpjilhrxnn)
  255. # [06:16] * Joins: annevk5 (u2483@gateway/web/irccloud.com/x-ubgbswcfqbkuybwx)
  256. # [06:16] * Joins: jochen__ (jochen@nat/google/x-kzefzyzdavqhlznl)
  257. # [06:16] * Joins: payman (~payman@pat.se.opera.com)
  258. # [06:16] * Joins: takkaria (~takkaria@isparp.co.uk)
  259. # [06:16] * Joins: gsnedders (~gsnedders@204.232.194.186)
  260. # [06:16] * Joins: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan)
  261. # [06:16] * Joins: romainhuet (u2533@gateway/web/irccloud.com/x-kgagqzjfsstfntxa)
  262. # [06:16] * Joins: slightlyoff (u1768@gateway/web/irccloud.com/x-leutuazhgomfkzqq)
  263. # [06:16] * Joins: tmzt_ (~tmzt@adsl-69-208-11-149.dsl.akrnoh.ameritech.net)
  264. # [06:16] * Joins: Marcosc (~Adium@cm-84.208.50.132.getinternet.no)
  265. # [06:16] * Joins: twisted` (~twisted@205.189.73.45)
  266. # [06:16] * Joins: FireFly (~firefly@unaffiliated/firefly)
  267. # [06:16] * Joins: benschwarz (u2121@gateway/web/irccloud.com/x-arvwvlkaudklrkjq)
  268. # [06:16] * Joins: jmb (~jmb@mail.parsifal.org.uk)
  269. # [06:16] * Joins: llrcombs (~llrcombs@64.130.210.214)
  270. # [06:16] * Joins: webben (~benjamin@173-203-84-17.static.cloud-ips.com)
  271. # [06:16] * Joins: gnarf (~gnarf@unaffiliated/gnarf)
  272. # [06:16] * Joins: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj)
  273. # [06:16] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
  274. # [06:16] * Joins: riven (~riven@pdpc/supporter/professional/riven)
  275. # [06:16] * Joins: Scorchin (u1242@gateway/web/irccloud.com/x-xrtewibgbvjyvkdu)
  276. # [06:16] * Joins: pererik (~pe@unaffiliated/pererik)
  277. # [06:16] * Joins: Workshiva (~Dashiva@74.125.57.33)
  278. # [06:16] * Joins: Hixie (~ianh@trivini.no)
  279. # [06:16] * Joins: reggna (~reggna@godis.olf.sgsnet.se)
  280. # [06:16] * Joins: Adawerk``` (~mven__@169.241.49.57)
  281. # [06:16] * Joins: arv (arv@nat/google/x-goylsyboktjbhvwk)
  282. # [06:16] * Joins: robman (~robman@eth4584.nsw.adsl.internode.on.net)
  283. # [06:16] * Joins: hamaji (~hamaji@220.109.219.244)
  284. # [06:16] * Joins: scheib1 (scheib@nat/google/x-qoykoaairoiucoej)
  285. # [06:16] * Joins: inimino (~inimino@boshi.inimino.org)
  286. # [06:16] * Joins: Jedi_ (~Jedi@jedi.org)
  287. # [06:16] * Joins: nigelb (~nigel@ubuntu/member/nigelb)
  288. # [06:16] * Joins: salavas (~salavas@c83-248-102-83.bredband.comhem.se)
  289. # [06:16] * Joins: AryehGregor (~Simetrica@mediawiki/simetrical)
  290. # [06:16] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  291. # [06:16] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  292. # [06:17] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  293. # [06:18] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  294. # [06:19] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  295. # [06:19] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  296. # [06:21] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  297. # [06:21] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  298. # [06:22] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  299. # [06:22] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  300. # [06:23] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  301. # [06:23] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  302. # [06:25] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  303. # [06:25] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  304. # [06:25] * Quits: cpearce (~chatzilla@60.234.54.74) (Ping timeout: 260 seconds)
  305. # [06:26] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  306. # [06:26] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  307. # [06:28] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  308. # [06:28] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  309. # [06:28] * Quits: benjoffe_ (~benjoffe_@CPE-203-51-100-177.lns10.cht.bigpond.net.au) (Remote host closed the connection)
  310. # [06:29] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:5960:ecc4:ce40:50fb)
  311. # [06:29] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  312. # [06:31] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  313. # [06:32] <Hixie> i like anne's newscaster style for the whatwg weeklies
  314. # [06:32] <Hixie> just needs some good music to go with it.
  315. # [06:34] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:5960:ecc4:ce40:50fb) (Ping timeout: 244 seconds)
  316. # [06:43] * nunnun is now known as nunnun_away
  317. # [07:04] * jacobolu_ is now known as jacobolus
  318. # [07:09] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
  319. # [07:10] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 255 seconds)
  320. # [07:15] <nessy> Hixie: would it be appropriate to send an email to whatwg about what is happening around webvtt at W3C?
  321. # [07:15] <Hixie> i'll do it once something actually happens
  322. # [07:16] <nessy> did you see http://www.w3.org/community/texttracks/ ?
  323. # [07:16] <nessy> the group actually got created today, so I thought it appropriate to explain why we're doing it
  324. # [07:16] <nessy> happy for you to do it if you prefer
  325. # [07:16] <Hixie> group creation doesn't count as "something actually happening" :-)
  326. # [07:17] * Quits: llrcombs (~llrcombs@64.130.210.214) (Read error: Operation timed out)
  327. # [07:17] <nessy> fair enough :-)
  328. # [07:17] * Joins: llrcombs (~llrcombs@64.130.210.214)
  329. # [07:17] <Hixie> annevk5: http://www.youtube.com/watch?v=1Bg5BPnmj68
  330. # [07:17] <Hixie> enjoy :-)
  331. # [07:21] <nessy> lol
  332. # [07:35] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 248 seconds)
  333. # [07:41] * Quits: hij1nx (~hij1nx@cpe-98-14-168-178.nyc.res.rr.com) (Quit: hij1nx)
  334. # [07:52] * Joins: Ankheg (~Ankheg@91.224.77.4)
  335. # [08:05] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 252 seconds)
  336. # [08:12] * Joins: rniwa (~rniwa@c-67-188-230-129.hsd1.ca.comcast.net)
  337. # [08:13] * Joins: jochen___ (jochen@nat/google/x-ghooecnybkcwymyy)
  338. # [08:14] * Quits: jochen__ (jochen@nat/google/x-kzefzyzdavqhlznl) (Ping timeout: 240 seconds)
  339. # [08:14] * jochen___ is now known as jochen__
  340. # [08:15] * Quits: rniwa (~rniwa@c-67-188-230-129.hsd1.ca.comcast.net) (Remote host closed the connection)
  341. # [08:16] * Joins: rniwa (~rniwa@216.239.45.130)
  342. # [08:19] * Joins: stalled (~stalled@unaffiliated/stalled)
  343. # [08:32] * Joins: silverroots (~silverroo@144.187.148.25)
  344. # [08:34] * Joins: mokush (~quassel@188.24.43.235)
  345. # [08:48] * Quits: dbaron (~dbaron@173.228.28.227) (Read error: Operation timed out)
  346. # [09:03] * Joins: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net)
  347. # [09:04] * Joins: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
  348. # [09:05] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
  349. # [09:05] * Joins: woef (~woef@91.183.84.141)
  350. # [09:05] * Joins: dbaron (~dbaron@173-228-28-227.dsl.dynamic.sonic.net)
  351. # [09:13] * Joins: temp01 (~temp01@unaffiliated/temp01)
  352. # [09:14] * Quits: dbaron (~dbaron@173-228-28-227.dsl.dynamic.sonic.net) (Ping timeout: 260 seconds)
  353. # [09:14] <annevk5> haha
  354. # [09:15] * Joins: ezoe (~ezoe@203-140-91-133f1.kyt1.eonet.ne.jp)
  355. # [09:33] * Quits: jdong_ (~jdong@222.126.155.250) (Remote host closed the connection)
  356. # [09:34] * Joins: jdong_ (~quassel@222.126.155.250)
  357. # [09:38] * Quits: ParadoX- (~para@hades.spexhost.com) (Read error: Connection reset by peer)
  358. # [09:39] * Joins: ParadoX- (parad0x@hades.spexhost.com)
  359. # [09:40] * Joins: smaug____ (~chatzilla@GGYKMDCXCIII.gprs.sl-laajakaista.fi)
  360. # [09:55] * Joins: Neiluj (~Julien@195.200.175.214)
  361. # [10:03] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
  362. # [10:10] * Joins: virtuelv (~virtuelv_@pat-tdc.opera.com)
  363. # [10:11] * Joins: rtuin (~rtuin@213.125.175.250)
  364. # [10:15] * Quits: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr)
  365. # [10:16] * Joins: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se)
  366. # [10:20] <annevk5> nessy, maybe announce the WebVTT CG and whether it plans to fork or not on the WHATWG list?
  367. # [10:20] * Joins: david_carlisle (~chatzilla@86.188.197.189)
  368. # [10:20] * Joins: cygri (~cygri@188.201.86.194)
  369. # [10:20] <annevk5> nessy, somewhat unclear what the relation to the WHATWG is from your blog post
  370. # [10:21] * Joins: ZombieLoffe (ZombieL@unaffiliated/zombieloffe)
  371. # [10:21] * Quits: smaug____ (~chatzilla@GGYKMDCXCIII.gprs.sl-laajakaista.fi) (Ping timeout: 256 seconds)
  372. # [10:26] * Quits: Peter` (~peter@nishino.lvp-media.com) (Ping timeout: 260 seconds)
  373. # [10:26] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 252 seconds)
  374. # [10:26] * Quits: Dashiva (Dashiva@wikia/Dashiva) (Ping timeout: 252 seconds)
  375. # [10:27] * Quits: jarib_ (~jarib@109.74.192.179) (Ping timeout: 252 seconds)
  376. # [10:27] * Quits: asmodai (asmodai@h61194.upc-h.chello.nl) (Ping timeout: 260 seconds)
  377. # [10:28] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 252 seconds)
  378. # [10:28] * Quits: rtuin (~rtuin@213.125.175.250) (Ping timeout: 260 seconds)
  379. # [10:28] * Quits: ben_alman (~ben_alman@web126.webfaction.com) (Ping timeout: 260 seconds)
  380. # [10:28] * Quits: Kingdutch (~kingdutch@188.200.149.217) (Ping timeout: 260 seconds)
  381. # [10:28] * Quits: foolip (~philip@83.218.67.122) (Ping timeout: 260 seconds)
  382. # [10:28] * Quits: doublec (~doublec@unaffiliated/doublec) (Ping timeout: 260 seconds)
  383. # [10:28] * Quits: nw` (eero@heaven.unlink.org) (Ping timeout: 260 seconds)
  384. # [10:29] * Joins: Kingdutch (~kingdutch@188.200.149.217)
  385. # [10:33] * Quits: jochen__ (jochen@nat/google/x-ghooecnybkcwymyy) (*.net *.split)
  386. # [10:33] * Quits: Ankheg (~Ankheg@91.224.77.4) (*.net *.split)
  387. # [10:33] * Quits: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net) (*.net *.split)
  388. # [10:33] * Quits: Amorphous (jan@unaffiliated/amorphous) (*.net *.split)
  389. # [10:33] * Quits: hober (~ted@unaffiliated/hober) (*.net *.split)
  390. # [10:33] * Quits: jennb (jennb@nat/google/x-hiuzvneuypvdojka) (*.net *.split)
  391. # [10:33] * Quits: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net) (*.net *.split)
  392. # [10:33] * Quits: annevk5 (u2483@gateway/web/irccloud.com/x-ubgbswcfqbkuybwx) (*.net *.split)
  393. # [10:33] * Quits: beverloo (beverloo@nat/google/x-mtquqrmpjilhrxnn) (*.net *.split)
  394. # [10:33] * Quits: yutak (~yutak@2401:fa00:4:1000:baac:6fff:fe99:adfb) (*.net *.split)
  395. # [10:33] * Quits: hoodow (~hoodow@pdpc/supporter/active/hoodow) (*.net *.split)
  396. # [10:33] * Quits: Neiluj (~Julien@195.200.175.214) (*.net *.split)
  397. # [10:33] * Quits: karlcow (~karl@nerval.la-grange.net) (*.net *.split)
  398. # [10:33] * Quits: payman (~payman@pat.se.opera.com) (*.net *.split)
  399. # [10:33] * Quits: gsnedders (~gsnedders@204.232.194.186) (*.net *.split)
  400. # [10:33] * Quits: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan) (*.net *.split)
  401. # [10:33] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (*.net *.split)
  402. # [10:33] * Quits: riven (~riven@pdpc/supporter/professional/riven) (*.net *.split)
  403. # [10:33] * Quits: Scorchin (u1242@gateway/web/irccloud.com/x-xrtewibgbvjyvkdu) (*.net *.split)
  404. # [10:33] * Quits: david_carlisle (~chatzilla@86.188.197.189) (*.net *.split)
  405. # [10:33] * Quits: woef (~woef@91.183.84.141) (*.net *.split)
  406. # [10:33] * Quits: rniwa (~rniwa@216.239.45.130) (*.net *.split)
  407. # [10:33] * Quits: danheberden (~danheberd@li225-35.members.linode.com) (*.net *.split)
  408. # [10:33] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (*.net *.split)
  409. # [10:33] * Quits: gavin___ (~gavin@76.14.70.183) (*.net *.split)
  410. # [10:33] * Quits: KolakCC (~KolakCC@unaffiliated/kolakcc) (*.net *.split)
  411. # [10:33] * Quits: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj) (*.net *.split)
  412. # [10:33] * Quits: arv (arv@nat/google/x-goylsyboktjbhvwk) (*.net *.split)
  413. # [10:34] * Quits: robman (~robman@eth4584.nsw.adsl.internode.on.net) (*.net *.split)
  414. # [10:34] * Quits: inimino (~inimino@boshi.inimino.org) (*.net *.split)
  415. # [10:34] * Quits: scheib1 (scheib@nat/google/x-qoykoaairoiucoej) (*.net *.split)
  416. # [10:34] * Quits: hamaji (~hamaji@220.109.219.244) (*.net *.split)
  417. # [10:34] * Quits: cygri (~cygri@188.201.86.194) (*.net *.split)
  418. # [10:34] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (*.net *.split)
  419. # [10:34] * Quits: jacobolus (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net) (*.net *.split)
  420. # [10:34] * Quits: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk) (*.net *.split)
  421. # [10:34] * Quits: twisted` (~twisted@205.189.73.45) (*.net *.split)
  422. # [10:34] * Quits: FireFly (~firefly@unaffiliated/firefly) (*.net *.split)
  423. # [10:34] * Quits: Workshiva (~Dashiva@74.125.57.33) (*.net *.split)
  424. # [10:34] * Quits: takkaria (~takkaria@isparp.co.uk) (*.net *.split)
  425. # [10:34] * Quits: jmb (~jmb@mail.parsifal.org.uk) (*.net *.split)
  426. # [10:34] * Quits: gnarf (~gnarf@unaffiliated/gnarf) (*.net *.split)
  427. # [10:34] * Quits: pererik (~pe@unaffiliated/pererik) (*.net *.split)
  428. # [10:34] * Quits: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net) (*.net *.split)
  429. # [10:34] * Quits: romainhuet (u2533@gateway/web/irccloud.com/x-kgagqzjfsstfntxa) (*.net *.split)
  430. # [10:34] * Quits: slightlyoff (u1768@gateway/web/irccloud.com/x-leutuazhgomfkzqq) (*.net *.split)
  431. # [10:34] * Quits: tmzt_ (~tmzt@adsl-69-208-11-149.dsl.akrnoh.ameritech.net) (*.net *.split)
  432. # [10:34] * Quits: Marcosc (~Adium@cm-84.208.50.132.getinternet.no) (*.net *.split)
  433. # [10:34] * Quits: benschwarz (u2121@gateway/web/irccloud.com/x-arvwvlkaudklrkjq) (*.net *.split)
  434. # [10:34] * Quits: Hixie (~ianh@trivini.no) (*.net *.split)
  435. # [10:34] * Quits: reggna (~reggna@godis.olf.sgsnet.se) (*.net *.split)
  436. # [10:34] * Quits: Adawerk``` (~mven__@169.241.49.57) (*.net *.split)
  437. # [10:34] * Quits: roc (~chatzilla@121.98.230.221) (*.net *.split)
  438. # [10:34] * Quits: webben (~benjamin@173-203-84-17.static.cloud-ips.com) (*.net *.split)
  439. # [10:34] * Quits: AryehGregor (~Simetrica@mediawiki/simetrical) (*.net *.split)
  440. # [10:34] * Quits: salavas (~salavas@c83-248-102-83.bredband.comhem.se) (*.net *.split)
  441. # [10:34] * Quits: Jedi_ (~Jedi@jedi.org) (*.net *.split)
  442. # [10:34] * Quits: nigelb (~nigel@ubuntu/member/nigelb) (*.net *.split)
  443. # [10:34] * Quits: MikeSmith (~MikeSmith@EM1-112-116-139.pool.e-mobile.ne.jp) (*.net *.split)
  444. # [10:34] * Quits: agektmr (~Adium@220.109.219.244) (*.net *.split)
  445. # [10:34] * Quits: jernoble (~jernoble@17.212.152.13) (*.net *.split)
  446. # [10:34] * Quits: MrOpposite (~MrOpposit@unaffiliated/mropposite) (*.net *.split)
  447. # [10:34] * Quits: krijn (u2319@gateway/web/irccloud.com/x-sslxwkyblevwmrqp) (*.net *.split)
  448. # [10:34] * Quits: beowulf (u116@pdpc/supporter/professional/beowulf) (*.net *.split)
  449. # [10:34] * Quits: ukai (ukai@nat/google/x-ouairzrvtkmfmoft) (*.net *.split)
  450. # [10:34] * Quits: eighty4 (~eighty4@unaffiliated/eighty4) (*.net *.split)
  451. # [10:34] * Quits: theoros (~user@unaffiliated/theoros) (*.net *.split)
  452. # [10:34] * Quits: volkmar (~volkmar@gentoo/developer/volkmar) (*.net *.split)
  453. # [10:34] * Quits: Philip` (~philip@zaynar.co.uk) (*.net *.split)
  454. # [10:34] * Quits: jgraham (~jgraham@web22.webfaction.com) (*.net *.split)
  455. # [10:34] * Quits: Necrathex (~nectop@82-170-160-25.ip.telfort.nl) (*.net *.split)
  456. # [10:34] * Quits: esc_ (~esc-ape@84.inst-3.ufg.ac.at) (*.net *.split)
  457. # [10:34] * Quits: Martijnc (~Martijn@d54C02C64.access.telenet.be) (*.net *.split)
  458. # [10:34] * Quits: tomaw (tom@freenode/staff/tomaw) (*.net *.split)
  459. # [10:34] * Quits: manu-db (~msporny@digitalbazaar.com) (*.net *.split)
  460. # [10:34] * Quits: [tm] (~MikeSmith@sideshowbarker.net) (*.net *.split)
  461. # [10:34] * Quits: PrgmrBill (~PrgmrBill@unaffiliated/prgmrbill) (*.net *.split)
  462. # [10:34] * Quits: tellnes (~KrooniX@ec2-79-125-26-36.eu-west-1.compute.amazonaws.com) (*.net *.split)
  463. # [10:34] * Quits: moo-_- (~quassel@herd37.twinapex.fi) (*.net *.split)
  464. # [10:34] * Quits: broquaint (a52b469f90@78.47.79.137) (*.net *.split)
  465. # [10:34] * Quits: wilhelm (~wilhelm@trivini.no) (*.net *.split)
  466. # [10:34] * Quits: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se) (*.net *.split)
  467. # [10:34] * Quits: jdong_ (~quassel@222.126.155.250) (*.net *.split)
  468. # [10:34] * Quits: CvP (~CvP@123.49.23.215) (*.net *.split)
  469. # [10:34] * Quits: Phae (u455@gateway/web/irccloud.com/x-zcodyeilyiavxiuw) (*.net *.split)
  470. # [10:34] * Quits: nunnun_away (~nunnun@irc.v6.nunnun.jp) (*.net *.split)
  471. # [10:34] * Quits: ZombieLoffe (ZombieL@unaffiliated/zombieloffe) (*.net *.split)
  472. # [10:34] * Quits: ParadoX- (parad0x@hades.spexhost.com) (*.net *.split)
  473. # [10:34] * Quits: temp01 (~temp01@unaffiliated/temp01) (*.net *.split)
  474. # [10:34] * Quits: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net) (*.net *.split)
  475. # [10:34] * Quits: mokush (~quassel@188.24.43.235) (*.net *.split)
  476. # [10:34] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (*.net *.split)
  477. # [10:34] * Quits: nessy (~Adium@124-168-52-143.dyn.iinet.net.au) (*.net *.split)
  478. # [10:34] * Quits: nattokirai (~nattokira@rtr.mozilla.or.jp) (*.net *.split)
  479. # [10:34] * Quits: scor (~scor@drupal.org/user/52142/view) (*.net *.split)
  480. # [10:34] * Quits: kennyluck (~kennyluck@114-43-112-94.dynamic.hinet.net) (*.net *.split)
  481. # [10:34] * Quits: danja_ (~danny@host234-8-dynamic.8-79-r.retail.telecomitalia.it) (*.net *.split)
  482. # [10:34] * Quits: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com) (*.net *.split)
  483. # [10:34] * Quits: ryanseddon (u1832@gateway/web/irccloud.com/x-qfrnddvmbqetzdot) (*.net *.split)
  484. # [10:34] * Quits: manu` (~chatzilla@pool-74-107-167-56.ronkva.east.verizon.net) (*.net *.split)
  485. # [10:34] * Quits: jeremyselier (u2513@gateway/web/irccloud.com/x-gdnjimdbytlytqgo) (*.net *.split)
  486. # [10:34] * Quits: bzed (~bzed@devel.recluse.de) (*.net *.split)
  487. # [10:34] * Quits: bezoar (~Adium@c-24-143-67-135.customer.broadstripe.net) (*.net *.split)
  488. # [10:34] * Quits: TabAtkins (tabatkins@nat/google/x-nsvkozmxwfrmlkjv) (*.net *.split)
  489. # [10:34] * Quits: crash\ (bouncer@lubyte.de) (*.net *.split)
  490. # [10:44] * Joins: annevk (~annevk@pat-tdc.opera.com)
  491. # [10:44] * Joins: foolip (~philip@83.218.67.122)
  492. # [10:44] * Joins: jarib- (~jarib@109.74.192.179)
  493. # [10:44] * Joins: nw`_ (eero@heaven.unlink.org)
  494. # [10:44] * Joins: doublec (~doublec@cd.pn)
  495. # [10:44] * Joins: Stikk (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
  496. # [10:44] * Joins: Dashimon (Dashiva@84-72-45-52.dclient.hispeed.ch)
  497. # [10:44] * Joins: rtuin_ (~rtuin@213.125.175.250)
  498. # [10:44] * Joins: cygri (~cygri@188.201.86.194)
  499. # [10:44] * Joins: david_carlisle (~chatzilla@86.188.197.189)
  500. # [10:44] * Joins: Neiluj (~Julien@195.200.175.214)
  501. # [10:44] * Joins: woef (~woef@91.183.84.141)
  502. # [10:44] * Joins: rniwa (~rniwa@216.239.45.130)
  503. # [10:44] * Joins: jochen__ (jochen@nat/google/x-ghooecnybkcwymyy)
  504. # [10:44] * Joins: Ankheg (~Ankheg@91.224.77.4)
  505. # [10:44] * Joins: MrOpposite (~MrOpposit@unaffiliated/mropposite)
  506. # [10:44] * Joins: krijn (u2319@gateway/web/irccloud.com/x-sslxwkyblevwmrqp)
  507. # [10:44] * Joins: beowulf (u116@pdpc/supporter/professional/beowulf)
  508. # [10:44] * Joins: ukai (ukai@nat/google/x-ouairzrvtkmfmoft)
  509. # [10:44] * Joins: eighty4 (~eighty4@unaffiliated/eighty4)
  510. # [10:44] * Joins: theoros (~user@unaffiliated/theoros)
  511. # [10:44] * Joins: volkmar (~volkmar@gentoo/developer/volkmar)
  512. # [10:44] * Joins: Philip` (~philip@zaynar.co.uk)
  513. # [10:44] * Joins: jgraham (~jgraham@web22.webfaction.com)
  514. # [10:44] * Joins: jernoble (~jernoble@17.212.152.13)
  515. # [10:44] * Joins: agektmr (~Adium@220.109.219.244)
  516. # [10:44] * Joins: MikeSmith (~MikeSmith@EM1-112-116-139.pool.e-mobile.ne.jp)
  517. # [10:44] * Joins: danheberden (~danheberd@li225-35.members.linode.com)
  518. # [10:44] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
  519. # [10:44] * Joins: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net)
  520. # [10:44] * Joins: roc (~chatzilla@121.98.230.221)
  521. # [10:44] * Joins: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net)
  522. # [10:44] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
  523. # [10:44] * Joins: Amorphous (jan@unaffiliated/amorphous)
  524. # [10:44] * Joins: hober (~ted@unaffiliated/hober)
  525. # [10:44] * Joins: karlcow (~karl@nerval.la-grange.net)
  526. # [10:44] * Joins: gavin___ (~gavin@76.14.70.183)
  527. # [10:44] * Joins: jennb (jennb@nat/google/x-hiuzvneuypvdojka)
  528. # [10:44] * Joins: KolakCC (~KolakCC@unaffiliated/kolakcc)
  529. # [10:44] * Joins: jacobolus (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net)
  530. # [10:44] * Joins: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk)
  531. # [10:44] * Joins: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net)
  532. # [10:44] * Joins: hoodow (~hoodow@pdpc/supporter/active/hoodow)
  533. # [10:44] * Joins: yutak (~yutak@2401:fa00:4:1000:baac:6fff:fe99:adfb)
  534. # [10:44] * Joins: beverloo (beverloo@nat/google/x-mtquqrmpjilhrxnn)
  535. # [10:44] * Joins: annevk5 (u2483@gateway/web/irccloud.com/x-ubgbswcfqbkuybwx)
  536. # [10:44] * Joins: payman (~payman@pat.se.opera.com)
  537. # [10:44] * Joins: takkaria (~takkaria@isparp.co.uk)
  538. # [10:44] * Joins: gsnedders (~gsnedders@204.232.194.186)
  539. # [10:44] * Joins: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan)
  540. # [10:44] * Joins: romainhuet (u2533@gateway/web/irccloud.com/x-kgagqzjfsstfntxa)
  541. # [10:44] * Joins: slightlyoff (u1768@gateway/web/irccloud.com/x-leutuazhgomfkzqq)
  542. # [10:44] * Joins: tmzt_ (~tmzt@adsl-69-208-11-149.dsl.akrnoh.ameritech.net)
  543. # [10:44] * Joins: Marcosc (~Adium@cm-84.208.50.132.getinternet.no)
  544. # [10:44] * Joins: twisted` (~twisted@205.189.73.45)
  545. # [10:44] * Joins: FireFly (~firefly@unaffiliated/firefly)
  546. # [10:44] * Joins: benschwarz (u2121@gateway/web/irccloud.com/x-arvwvlkaudklrkjq)
  547. # [10:44] * Joins: jmb (~jmb@mail.parsifal.org.uk)
  548. # [10:44] * Joins: webben (~benjamin@173-203-84-17.static.cloud-ips.com)
  549. # [10:44] * Joins: gnarf (~gnarf@unaffiliated/gnarf)
  550. # [10:44] * Joins: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj)
  551. # [10:44] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
  552. # [10:44] * Joins: riven (~riven@pdpc/supporter/professional/riven)
  553. # [10:44] * Joins: Scorchin (u1242@gateway/web/irccloud.com/x-xrtewibgbvjyvkdu)
  554. # [10:44] * Joins: pererik (~pe@unaffiliated/pererik)
  555. # [10:44] * Joins: Workshiva (~Dashiva@74.125.57.33)
  556. # [10:44] * Joins: Hixie (~ianh@trivini.no)
  557. # [10:44] * Joins: reggna (~reggna@godis.olf.sgsnet.se)
  558. # [10:44] * Joins: Adawerk``` (~mven__@169.241.49.57)
  559. # [10:44] * Joins: arv (arv@nat/google/x-goylsyboktjbhvwk)
  560. # [10:44] * Joins: robman (~robman@eth4584.nsw.adsl.internode.on.net)
  561. # [10:44] * Joins: hamaji (~hamaji@220.109.219.244)
  562. # [10:44] * Joins: scheib1 (scheib@nat/google/x-qoykoaairoiucoej)
  563. # [10:44] * Joins: inimino (~inimino@boshi.inimino.org)
  564. # [10:44] * Joins: Jedi_ (~Jedi@jedi.org)
  565. # [10:44] * Joins: nigelb (~nigel@ubuntu/member/nigelb)
  566. # [10:44] * Joins: salavas (~salavas@c83-248-102-83.bredband.comhem.se)
  567. # [10:44] * Joins: AryehGregor (~Simetrica@mediawiki/simetrical)
  568. # [10:45] * Joins: asmodai_ (asmodai@h61194.upc-h.chello.nl)
  569. # [10:45] * Joins: Necrathex (~nectop@82-170-160-25.ip.telfort.nl)
  570. # [10:45] * Joins: esc_ (~esc-ape@84.inst-3.ufg.ac.at)
  571. # [10:45] * Joins: Martijnc (~Martijn@d54C02C64.access.telenet.be)
  572. # [10:45] * Joins: tomaw (tom@freenode/staff/tomaw)
  573. # [10:45] * Joins: manu-db (~msporny@digitalbazaar.com)
  574. # [10:45] * Joins: [tm] (~MikeSmith@sideshowbarker.net)
  575. # [10:45] * Joins: PrgmrBill (~PrgmrBill@unaffiliated/prgmrbill)
  576. # [10:45] * Joins: tellnes (~KrooniX@ec2-79-125-26-36.eu-west-1.compute.amazonaws.com)
  577. # [10:45] * Joins: moo-_- (~quassel@herd37.twinapex.fi)
  578. # [10:45] * Joins: broquaint (a52b469f90@78.47.79.137)
  579. # [10:45] * Joins: wilhelm (~wilhelm@trivini.no)
  580. # [10:45] * Joins: ben_alman_ (~ben_alman@web126.webfaction.com)
  581. # [10:45] * Joins: Peter- (~peter@nishino.lvp-media.com)
  582. # [10:45] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
  583. # [10:45] * Joins: ZombieLoffe (ZombieL@unaffiliated/zombieloffe)
  584. # [10:45] * Joins: ParadoX- (parad0x@hades.spexhost.com)
  585. # [10:45] * Joins: temp01 (~temp01@unaffiliated/temp01)
  586. # [10:45] * Joins: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net)
  587. # [10:45] * Joins: mokush (~quassel@188.24.43.235)
  588. # [10:45] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  589. # [10:45] * Joins: nessy (~Adium@124-168-52-143.dyn.iinet.net.au)
  590. # [10:45] * Joins: nattokirai (~nattokira@rtr.mozilla.or.jp)
  591. # [10:45] * Joins: scor (~scor@drupal.org/user/52142/view)
  592. # [10:45] * Joins: kennyluck (~kennyluck@114-43-112-94.dynamic.hinet.net)
  593. # [10:45] * Joins: danja_ (~danny@host234-8-dynamic.8-79-r.retail.telecomitalia.it)
  594. # [10:45] * Joins: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com)
  595. # [10:45] * Joins: manu` (~chatzilla@pool-74-107-167-56.ronkva.east.verizon.net)
  596. # [10:45] * Joins: ryanseddon (u1832@gateway/web/irccloud.com/x-qfrnddvmbqetzdot)
  597. # [10:45] * Joins: jeremyselier (u2513@gateway/web/irccloud.com/x-gdnjimdbytlytqgo)
  598. # [10:45] * Joins: bzed (~bzed@devel.recluse.de)
  599. # [10:45] * Joins: bezoar (~Adium@c-24-143-67-135.customer.broadstripe.net)
  600. # [10:45] * Joins: TabAtkins (tabatkins@nat/google/x-nsvkozmxwfrmlkjv)
  601. # [10:45] * Joins: crash\ (bouncer@lubyte.de)
  602. # [10:45] * Joins: jdong_ (~quassel@222.126.155.250)
  603. # [10:45] * Joins: CvP (~CvP@123.49.23.215)
  604. # [10:45] * Joins: nunnun_away (~nunnun@irc.v6.nunnun.jp)
  605. # [10:45] * Joins: Phae (u455@gateway/web/irccloud.com/x-zcodyeilyiavxiuw)
  606. # [10:45] * Joins: benjoffe_ (~benjoffe_@CPE-203-51-100-177.lns10.cht.bigpond.net.au)
  607. # [10:46] * Quits: Dashimon (Dashiva@84-72-45-52.dclient.hispeed.ch) (Changing host)
  608. # [10:46] * Joins: Dashimon (Dashiva@wikia/Dashiva)
  609. # [10:46] * Dashimon is now known as Dashiva
  610. # [10:46] * Quits: rniwa (~rniwa@216.239.45.130) (Quit: rniwa)
  611. # [10:46] * Joins: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se)
  612. # [10:47] <annevk> oh missed the earlier conversation somehow
  613. # [10:49] * nunnun_away is now known as nunnun
  614. # [10:51] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
  615. # [10:54] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
  616. # [10:55] * Quits: nattokirai (~nattokira@rtr.mozilla.or.jp) (Quit: nattokirai)
  617. # [10:58] * Quits: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net) (Remote host closed the connection)
  618. # [10:58] * Quits: doublec (~doublec@cd.pn) (Changing host)
  619. # [10:58] * Joins: doublec (~doublec@unaffiliated/doublec)
  620. # [11:00] * hasather5 is now known as hasather
  621. # [11:03] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  622. # [11:03] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  623. # [11:05] * Quits: yuuki (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp) (Quit: Leaving...)
  624. # [11:05] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
  625. # [11:06] * nunnun is now known as nunnun_away
  626. # [11:08] * Quits: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp) (Quit: Leaving...)
  627. # [11:10] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  628. # [11:10] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  629. # [11:11] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  630. # [11:11] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  631. # [11:13] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  632. # [11:13] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  633. # [11:13] * rtuin_ is now known as rtuin
  634. # [11:15] * Quits: Obvious (tachikoma@188.226.74.2) (Read error: Connection reset by peer)
  635. # [11:16] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:88e2:30fe:334c:cccb)
  636. # [11:16] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  637. # [11:17] * Joins: Obvious (tachikoma@188.226.74.2)
  638. # [11:20] <hsivonen> annevk: do you have any guestimate when you'll get to the XHR2 text/html charset feedback?
  639. # [11:21] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  640. # [11:21] * benjoffe_ is now known as benjoffe
  641. # [11:22] * Joins: MikeSmith_ (~MikeSmith@EM114-48-73-88.pool.e-mobile.ne.jp)
  642. # [11:22] * Joins: Rik`__ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  643. # [11:22] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  644. # [11:24] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  645. # [11:24] * Quits: Rik`__ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  646. # [11:24] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:88e2:30fe:334c:cccb) (Ping timeout: 244 seconds)
  647. # [11:25] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  648. # [11:25] * Quits: MikeSmith (~MikeSmith@EM1-112-116-139.pool.e-mobile.ne.jp) (Ping timeout: 260 seconds)
  649. # [11:25] * MikeSmith_ is now known as MikeSmith
  650. # [11:25] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:f863:668e:5281:623f)
  651. # [11:26] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Ping timeout: 260 seconds)
  652. # [11:26] <annevk> hsivonen, I wanted to address it by using the parser hooks Hixie gave
  653. # [11:26] <annevk> hsivonen, Hixie will be creating*
  654. # [11:27] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  655. # [11:27] <annevk> hsivonen, for the responseText issue, we could wait with decoding until the first 1024 bytes are received for text/html encoding I suppose
  656. # [11:28] <annevk> hsivonen, and if chunked-text gets standardized just force UTF-8 I guess
  657. # [11:28] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
  658. # [11:28] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  659. # [11:28] <annevk> (there's no relation to Document there so no reason to make things difficult)
  660. # [11:29] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  661. # [11:30] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:f863:668e:5281:623f) (Ping timeout: 240 seconds)
  662. # [11:30] * Joins: mpt (~mpt@nat/canonical/x-gasmfojwnhaoynro)
  663. # [11:30] * Quits: mpt (~mpt@nat/canonical/x-gasmfojwnhaoynro) (Changing host)
  664. # [11:30] * Joins: mpt (~mpt@canonical/mpt)
  665. # [11:34] <hsivonen> annevk: Works for me. Let's hope there isn't much text/html responseText comet usage in the wild...
  666. # [11:35] <hsivonen> annevk: so the "text" mode would require running <meta> prescan although the HTML parser wouldn't otherwise be involved?
  667. # [11:35] <hsivonen> hmm. smaug and sicking aren't here now. :-(
  668. # [11:35] <annevk> I don't want to make "text" magic
  669. # [11:36] <annevk> responseText should work the same for empty string responseType and "text"
  670. # [11:36] <hsivonen> annevk: ok
  671. # [11:36] <hsivonen> smaug wanted "text" and chunked text to work the same
  672. # [11:37] <hsivonen> but we can't have all these properties
  673. # [11:38] <annevk> don't really see why chunked text would do special things for e.g. XML
  674. # [11:39] <annevk> but then I'm not sure we want chunked text in the first place
  675. # [11:40] * Quits: mokush (~quassel@188.24.43.235) (Remote host closed the connection)
  676. # [11:46] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
  677. # [12:00] * Quits: agektmr (~Adium@220.109.219.244) (Quit: Leaving.)
  678. # [12:05] * Joins: rimantas (~rimliu@93.93.57.193)
  679. # [12:06] * Joins: richt (~richt@guest.opera.com)
  680. # [12:09] * Quits: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj) (Ping timeout: 240 seconds)
  681. # [12:11] * Joins: richt_ (~richt@guest.opera.com)
  682. # [12:12] * Quits: richt (~richt@guest.opera.com) (Read error: No route to host)
  683. # [12:13] * Joins: macpherson (macpherson@nat/google/x-tihaltedhebscwuy)
  684. # [12:14] * Quits: cygri (~cygri@188.201.86.194) (Ping timeout: 245 seconds)
  685. # [12:15] * Joins: Lachy (~Lachy@pat-tdc.opera.com)
  686. # [12:28] <zcorpan> annevk: in xhr2, you should say in the note around "network error" that it includes "CORS check failed"
  687. # [12:29] <zcorpan> annevk: i had to read the CORS spec to figure out what should happen in xhr2 when the cors check fails
  688. # [12:31] <annevk> I don't follow
  689. # [12:31] <annevk> For XHR you need to know "cross-origin request status"
  690. # [12:31] <annevk> which is defined by CORS
  691. # [12:31] <annevk> so yes, you need to read CORS
  692. # [12:32] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Remote host closed the connection)
  693. # [12:34] <zcorpan> if i'm an author, and want to use somebody else's CORS-enabled resource, i want to only read the xhr spec
  694. # [12:34] <zcorpan> and know what behavior will kick in when the CORS check fails
  695. # [12:35] <zcorpan> right now it appears to be undefined (but it's not, the Note is just wrong)
  696. # [12:36] <zcorpan> (uh, maybe i was reading an unrelated Note)
  697. # [12:37] <zcorpan> network error
  698. # [12:37] <zcorpan> A DNS error, TLS negotation failure, or other type of network error occured. This does not include HTTP responses that indicate some type of error, such as HTTP status code 410.
  699. # [12:37] <zcorpan> says the cors spec
  700. # [12:37] <zcorpan> but network error includes failed CORS check
  701. # [12:38] * Joins: richt (~richt@guest.opera.com)
  702. # [12:38] * Quits: richt_ (~richt@guest.opera.com) (Read error: Connection reset by peer)
  703. # [12:39] <hsivonen> I'm all for mentioning CORS there, but will doing so deadlock both specs on the REC track?
  704. # [12:40] <hsivonen> (I'd probable prefer specs that tell the whole truth over specs that advance on the REC track)
  705. # [12:41] * Quits: richt (~richt@guest.opera.com) (Remote host closed the connection)
  706. # [12:41] <zcorpan> the note was in the cors spec
  707. # [12:43] <jgraham> hsivonen: The solution is to not care about the rec track
  708. # [12:46] * Joins: zdobersek (~zan@cpe-90-157-128-24.dynamic.amis.net)
  709. # [12:47] * Quits: jdong_ (~quassel@222.126.155.250) (Remote host closed the connection)
  710. # [12:52] * Joins: stalled (~stalled@unaffiliated/stalled)
  711. # [12:55] <annevk> I'm even more confused now
  712. # [12:55] <hsivonen> maybe I'm confused
  713. # [12:56] <annevk> zcorpan, so in XMLHttpRequest you are reading the "same-origin request event rules" and expect they apply to CORS scenarios?
  714. # [12:56] * Joins: Rik` (~Rik`@mozilla-paris-253-98.cnt.nerim.net)
  715. # [12:57] * Quits: kinetik (~kinetik@121.98.132.55) (Ping timeout: 258 seconds)
  716. # [12:57] <zcorpan> annevk: no i realized that was bogus :)
  717. # [12:57] <zcorpan> annevk: what i did originally was follow the link in the xhr cross-origin steps and came to cors's definition of "network error"
  718. # [12:57] * Joins: kinetik (~kinetik@121.98.132.55)
  719. # [12:58] <zcorpan> annevk: which doesn't say that it includes CORS check fail
  720. # [12:58] <zcorpan> but it does
  721. # [12:58] * Joins: stefan-_ (~music@swhpet3041.uni-trier.de)
  722. # [12:59] <annevk> so http://dvcs.w3.org/hg/cors/raw-file/tip/Overview.html#cross-origin-request-status (not XMLHttpRequest) should be clearer about "network error"?
  723. # [12:59] <zcorpan> yeah
  724. # [12:59] <annevk> I would agree that should probably include "the resource cannot be shared"
  725. # [13:05] <annevk> zcorpan, done
  726. # [13:08] <zcorpan> annevk: thanks!
  727. # [13:17] * Joins: bga_ (~bga@ppp78-37-221-108.pppoe.avangarddsl.ru)
  728. # [13:26] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: Freedom - to walk free and own no superior.)
  729. # [13:40] * bga_ is now known as bga_|away
  730. # [13:54] * Quits: danja_ (~danny@host234-8-dynamic.8-79-r.retail.telecomitalia.it) (Quit: gorn)
  731. # [14:02] * Joins: hij1nx (~hij1nx@cpe-98-14-168-178.nyc.res.rr.com)
  732. # [14:14] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 248 seconds)
  733. # [14:44] * Joins: Ms2ger (~Ms2ger@91.181.242.11)
  734. # [14:47] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
  735. # [14:49] * Quits: zdobersek (~zan@cpe-90-157-128-24.dynamic.amis.net) (Quit: Leaving.)
  736. # [14:50] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
  737. # [14:52] * Joins: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
  738. # [14:58] * Quits: silverroots (~silverroo@144.187.148.25) (Ping timeout: 252 seconds)
  739. # [15:00] * Joins: mpt (~mpt@canonical/mpt)
  740. # [15:04] * Quits: roc (~chatzilla@121.98.230.221) (Ping timeout: 252 seconds)
  741. # [15:06] * Joins: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl)
  742. # [15:09] * bga_|away is now known as bga_
  743. # [15:17] * Quits: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net) (Quit: tomasf)
  744. # [15:18] * Quits: nessy (~Adium@124-168-52-143.dyn.iinet.net.au) (Quit: Leaving.)
  745. # [15:19] * Quits: CvP (~CvP@123.49.23.215) (Quit: [ UPP ] > all)
  746. # [15:31] <benjoffe> I missed the whole discussion on why '$' was chosen as the subject modifier
  747. # [15:32] <benjoffe> but "E:has-descendent(selector)" seems much more fitting to the existing pattern
  748. # [15:33] <benjoffe> is there a strong reason to choose $ over that pattern?
  749. # [15:33] * Joins: davidb (~davidb@66.207.208.98)
  750. # [15:35] <zcorpan> specificity?
  751. # [15:35] <zcorpan> shorter?
  752. # [15:36] <benjoffe> could be E:has(selector)
  753. # [15:38] <zcorpan> still different specificity
  754. # [15:38] <jgraham> The people who invented selectors hate readability?
  755. # [15:38] * zcorpan wasn't part of the discussion though
  756. # [15:39] <zcorpan> though there's :matches and :not already
  757. # [15:39] <zcorpan> so yeah
  758. # [15:40] <annevk> no idea
  759. # [15:41] * Quits: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se) (Quit: zcorpan)
  760. # [15:42] <bga_> annevk, question about opera. Do you plan to add text selection on page w/o mouse. i really <3 shift + arrows but want cursor to select text as in design mode too.
  761. # [15:43] * Joins: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se)
  762. # [15:44] * Joins: myakura (~myakura@FL1-203-136-181-177.tky.mesh.ad.jp)
  763. # [15:44] * Joins: MacTed (~Thud@63.119.36.36)
  764. # [15:46] * nunnun_away is now known as nunnun
  765. # [15:47] * Quits: Ankheg (~Ankheg@91.224.77.4) (Read error: Connection reset by peer)
  766. # [15:50] <annevk> bga_, I think so, but I'm not sure what the ETA is
  767. # [15:54] <benjoffe> sounds like an extension could be made for it, might require ugly off screen textarea hacks though
  768. # [15:54] * nunnun is now known as nunnun_away
  769. # [15:54] * nunnun_away is now known as nunnun
  770. # [16:00] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
  771. # [16:02] <annevk> added appendChild("trololol") and friends to the DOM
  772. # [16:03] <annevk> taking bets on whose first to implement and ship
  773. # [16:04] <Ms2ger> Not us
  774. # [16:05] <Ms2ger> We don't support overloading yet :(
  775. # [16:05] * Joins: roc (~chatzilla@121.98.230.221)
  776. # [16:05] <bga_> annevk appendChild('<pre>1</pre>')?
  777. # [16:06] <annevk> bga_, it's not HTML
  778. # [16:06] <bga_> textnode?
  779. # [16:06] <annevk> yes
  780. # [16:06] <Ms2ger> Right
  781. # [16:07] <Ms2ger> Also, hi annevk
  782. # [16:07] <annevk> wb Ms2ger
  783. # [16:07] <bga_> annevk i can make monkey patch which do that :)
  784. # [16:07] <Ms2ger> Do it :)
  785. # [16:08] <bga_> sec
  786. # [16:09] * Quits: danbri (~danbri@ip176-48-210-87.adsl2.static.versatel.nl) (Remote host closed the connection)
  787. # [16:09] <annevk> stuff like http://annevankesteren.nl/2005/05/greasemonkey does not count ;)
  788. # [16:09] * Joins: tomasf (~tomasf@host-90-235-85-67.mobileonline.telia.com)
  789. # [16:10] <Ms2ger> annevk, isn't that how Opera passed Acid3? ;)
  790. # [16:10] * Quits: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se) (Remote host closed the connection)
  791. # [16:11] * Joins: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se)
  792. # [16:12] * Quits: roc (~chatzilla@121.98.230.221) (Ping timeout: 240 seconds)
  793. # [16:13] * nunnun is now known as nunnun_away
  794. # [16:15] <bga_> annevk http://pastie.org/2617153
  795. # [16:15] * Quits: Necrathex (~nectop@82-170-160-25.ip.telfort.nl) (Quit: Necrathex)
  796. # [16:15] * Quits: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl) (Read error: Connection reset by peer)
  797. # [16:15] * Joins: CvP (~CvP@123.49.21.175)
  798. # [16:16] * Quits: woef (~woef@91.183.84.141) (Ping timeout: 240 seconds)
  799. # [16:16] <annevk> stuff like that works?
  800. # [16:16] <annevk> crazy
  801. # [16:16] <Ms2ger> Sure does
  802. # [16:18] <Ms2ger> # [15:27] <annevk5> where is ms2ger?
  803. # [16:18] <Ms2ger> Anything in particular you needed me for?
  804. # [16:18] * Joins: danbri (~danbri@ip176-48-210-87.adsl2.static.versatel.nl)
  805. # [16:20] <annevk> prolly to take a look at the exception stuff
  806. # [16:21] <Ms2ger> Mm
  807. # [16:21] <Ms2ger> My opinion on anything related to exceptions is "meh", fwiw
  808. # [16:22] <annevk> fair enough
  809. # [16:22] <annevk> wonder why smaug hasn't landed your EventException patch
  810. # [16:22] <annevk> kind of lame
  811. # [16:25] <annevk> anyone know when heycam is going to be back?
  812. # [16:25] <annevk> I would rather not define how to handle some arbitrary JS Object myself
  813. # [16:27] <Ms2ger> <heycam> just dropping in to say I'm on vacation for the next 4 weeks, see you all later
  814. # [16:27] <Ms2ger> From the ninth
  815. # [16:30] <Ms2ger> Hixie, any reason you didn't close http://www.w3.org/Bugs/Public/show_bug.cgi?id=13030?
  816. # [16:30] <annevk> thanks
  817. # [16:31] * Joins: jdong_bot_ (~jdong_bot@117.79.233.135)
  818. # [16:32] * Joins: scor (~scor@drupal.org/user/52142/view)
  819. # [16:35] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
  820. # [16:39] * bga_ is now known as bga_|away
  821. # [16:42] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
  822. # [16:42] * Quits: tomasf (~tomasf@host-90-235-85-67.mobileonline.telia.com) (Read error: Connection reset by peer)
  823. # [16:45] * Joins: Timz (~Adium@86.89.174.199)
  824. # [16:46] * Joins: tomasf (~tomasf@host-90-235-85-67.mobileonline.telia.com)
  825. # [16:53] * Joins: erlehmann (~erlehmann@89.204.137.81)
  826. # [16:58] * Joins: saba (~foo@unaffiliated/saba)
  827. # [17:01] * bga_|away is now known as bga_
  828. # [17:02] * Quits: stefan-_ (~music@swhpet3041.uni-trier.de) (Ping timeout: 248 seconds)
  829. # [17:06] * Quits: erlehmann (~erlehmann@89.204.137.81) (Quit: Ex-Chat)
  830. # [17:08] * Quits: rtuin (~rtuin@213.125.175.250) (Quit: Leaving)
  831. # [17:08] * bga_ is now known as bga_|away
  832. # [17:12] * Quits: rimantas (~rimliu@93.93.57.193) (Quit: Leaving)
  833. # [17:15] * Joins: sicking (~chatzilla@34.198.247.173.mozilla-sfo1.web-pass.com)
  834. # [17:17] * Quits: virtuelv (~virtuelv_@pat-tdc.opera.com) (Quit: Ex-Chat)
  835. # [17:19] * Quits: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se) (Quit: zcorpan)
  836. # [17:24] * Quits: MikeSmith (~MikeSmith@EM114-48-73-88.pool.e-mobile.ne.jp) (Ping timeout: 252 seconds)
  837. # [17:24] * Quits: CvP (~CvP@123.49.21.175) (Quit: [ UPP ] > all)
  838. # [17:26] * bga_|away is now known as bga_
  839. # [17:29] * Joins: MikeSmith (~MikeSmith@EM111-191-71-33.pool.e-mobile.ne.jp)
  840. # [17:32] <Hixie> Ms2ger: just a mistake, i think
  841. # [17:32] <Hixie> annevk: if there are hooks you need sooner rather than later, please mark the relevant bugs critical
  842. # [17:33] * Joins: CvP (~CvP@123.49.21.175)
  843. # [17:33] * Quits: bga_ (~bga@ppp78-37-221-108.pppoe.avangarddsl.ru) (Quit: bga_)
  844. # [17:34] <annevk> thanks, guess I'll do that to help hsivonen out
  845. # [17:36] * Joins: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl)
  846. # [17:37] * Quits: jdong_bot_ (~jdong_bot@117.79.233.135) (Remote host closed the connection)
  847. # [17:38] * Joins: rillian_ (~rillian@150.183.119.66.static.metrobridge.net)
  848. # [17:42] * Quits: tomasf (~tomasf@host-90-235-85-67.mobileonline.telia.com) (Quit: tomasf)
  849. # [17:48] * Quits: shetech (~shetech@c-76-126-167-49.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
  850. # [17:51] * Quits: david_carlisle (~chatzilla@86.188.197.189) (Ping timeout: 240 seconds)
  851. # [17:53] * Joins: david_carlisle (~chatzilla@86.188.197.189)
  852. # [17:57] * Quits: CvP (~CvP@123.49.21.175) (Quit: [ UPP ] > all)
  853. # [17:59] * Quits: david_carlisle (~chatzilla@86.188.197.189) (Ping timeout: 252 seconds)
  854. # [17:59] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
  855. # [18:01] * Quits: hij1nx (~hij1nx@cpe-98-14-168-178.nyc.res.rr.com) (Quit: hij1nx)
  856. # [18:07] * Quits: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Read error: Connection reset by peer)
  857. # [18:20] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
  858. # [18:25] * Joins: shetech (~shetech@12.234.36.130)
  859. # [18:26] * Quits: shetech (~shetech@12.234.36.130) (Client Quit)
  860. # [18:32] * Quits: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net) (Quit: astearns)
  861. # [18:33] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
  862. # [18:35] * Joins: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se)
  863. # [18:35] * Joins: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
  864. # [18:35] * Quits: ezoe (~ezoe@203-140-91-133f1.kyt1.eonet.ne.jp) (Ping timeout: 260 seconds)
  865. # [18:36] * Joins: cygri (~cygri@089-101-248111.ntlworld.ie)
  866. # [18:41] * Joins: ap (~ap@2620:149:4:1b01:3061:1f69:f5db:c750)
  867. # [18:42] * Quits: Lachy (~Lachy@pat-tdc.opera.com) (Quit: Computer has gone to sleep.)
  868. # [18:43] * Joins: boblet (u1921@gateway/web/irccloud.com/x-bakzyvgnptbetxxu)
  869. # [18:51] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
  870. # [18:51] * Quits: Stikk (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 260 seconds)
  871. # [18:56] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Client Quit)
  872. # [18:57] * Joins: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
  873. # [19:01] * Joins: astearns (~anonymous@192.150.22.5)
  874. # [19:02] * Quits: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Ping timeout: 248 seconds)
  875. # [19:02] * Joins: CvP (~CvP@123.49.22.81)
  876. # [19:04] * Joins: Necrathex (~nectop@86.89.160.77)
  877. # [19:04] * Joins: dbaron (~dbaron@173.228.28.227)
  878. # [19:05] * Joins: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
  879. # [19:08] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 258 seconds)
  880. # [19:11] * Joins: rniwa (~yaaic@2600:1010:b005:34c6:0:30:5e32:1601)
  881. # [19:14] <boblet> does anyone have a good reason why <u> is more appropriate than <mark> for indicating spelling errors, other than default rendering?
  882. # [19:16] * Joins: ezoe (~ezoe@61-205-125-163f1.kyt1.eonet.ne.jp)
  883. # [19:18] * Joins: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
  884. # [19:19] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (Ping timeout: 240 seconds)
  885. # [19:23] <Hixie> boblet: it's the same reason why <dfn> is more appropriate than <cite> for indicating definitions
  886. # [19:25] * Quits: cygri (~cygri@089-101-248111.ntlworld.ie) (Quit: cygri)
  887. # [19:25] <boblet> Hixie: I’d guess you mean more specific, except that <cite> doesn’t seem appropriate for definitions :) for me the semantics seem a little closer in that case
  888. # [19:25] <boblet> (that case = spell checker)
  889. # [19:25] <Hixie> boblet: <mark> is as appropriate for spelling mistakes as <cite> is for definitions :-)
  890. # [19:26] <Hixie> boblet: <mark>'s definition is "a run of text in one document marked or highlighted for reference purposes, due to its relevance in another context"
  891. # [19:26] <Hixie> boblet: unless you're specifically talking about the spelling mistakes, that definition doesn't have anything to do with spelling
  892. # [19:28] <boblet> Hixie: for me highlighting and annotating were closer, but I can see <u> is more appropriate
  893. # [19:29] <boblet> Hixie: while you’re around, CJK etc languages with non-western name order sometimes indicate the family name via capitalisation, underline or aside. would you say <u> would be appropriate for e.g. hcard, restyled to text-transform:uppercase?
  894. # [19:29] <Hixie> sure
  895. # [19:30] <boblet> that usage isn’t so popular, eg. Wikipedia has an aside, but I’ve seen it used for Japanese names before
  896. # [19:30] <Hixie> an aside?
  897. # [19:31] <boblet> well, a note above the article’s introduction stating the name order and which word is the family name
  898. # [19:31] * Joins: pabloxpablo (~pablo@200.69.198.5)
  899. # [19:31] <Hixie> ah
  900. # [19:31] <Hixie> weird
  901. # [19:32] <boblet> eg: http://en.wikipedia.org/wiki/Mao starts with “This is a Chinese name; the family name is Mao”
  902. # [19:33] * Quits: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl) (Read error: Connection reset by peer)
  903. # [19:33] <boblet> well, capitalising etc could be perceived as western imperialism as western names don’t get that treatment :)
  904. # [19:33] * Joins: bga_ (~bga@ppp78-37-219-231.pppoe.avangarddsl.ru)
  905. # [19:34] * Quits: bga_ (~bga@ppp78-37-219-231.pppoe.avangarddsl.ru) (Client Quit)
  906. # [19:35] * Joins: bga_ (~bga@ppp78-37-219-231.pppoe.avangarddsl.ru)
  907. # [19:36] * Quits: Neiluj (~Julien@195.200.175.214) (Quit: Neiluj)
  908. # [19:38] * Joins: _bga (~bga@95-55-11-219.dynamic.avangarddsl.ru)
  909. # [19:38] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
  910. # [19:39] * Quits: bga_ (~bga@ppp78-37-219-231.pppoe.avangarddsl.ru) (Ping timeout: 248 seconds)
  911. # [19:41] * Parts: pabloxpablo (~pablo@200.69.198.5)
  912. # [19:42] <Hixie> boblet: oh, well, no markup is necessary in the case of the wikipedia convention
  913. # [19:42] <Hixie> boblet: certainly i wouldn't expect <u> to be used. <aside> maybe.
  914. # [19:43] <boblet> true, true. but good to know <u> works for cases when the family name is directly indicated (as hcard needs wrapper elements anyhow)
  915. # [19:46] * Quits: ZombieLoffe (ZombieL@unaffiliated/zombieloffe)
  916. # [19:46] <Hixie> boblet: yeah, <u> is perfect for that. <u> is for when you are annotating something, but not explicitly saying what it is.
  917. # [19:47] <Hixie> boblet: i.e. where the annotation's meaning is implied by context
  918. # [19:48] <boblet> Hixie: yup :) just checking I understand before publishing. playing it safe after getting a little burned on <footer> in <blockquote> :D
  919. # [19:49] <boblet> didn’t know about proper name marks either — interesting
  920. # [19:50] <TabAtkins> 521042
  921. # [19:50] <Hixie> boblet: heh, understood!
  922. # [19:51] <TabAtkins> Dammit, focus'd the wrong window.
  923. # [19:51] <Hixie> TabAtkins: 521043?
  924. # [19:51] <TabAtkins> Well, that OTP expires in a few seconds.
  925. # [19:51] <Hixie> 892729!
  926. # [19:51] <boblet> 90210!!
  927. # [19:51] <Hixie> -43.4i+2!
  928. # [19:51] <TabAtkins> [1,2,3,4]!
  929. # [19:52] <boblet> hey TabAtkins, why is text-decoration specced as “Value: <text-decoration-line> || <text-decoration-color> || <text-decoration-style>”, not line, style then color (which would be more in keeping with border)?
  930. # [19:53] <TabAtkins> I have no idea. The ordering is insignificant, though.
  931. # [19:54] <boblet> TabAtkins: I (now) know that, but I suspect ppl who don’t understand || won’t realise that. I couldn’t find || in the CSS syntax doc btw
  932. # [19:54] <boblet> might email www-style about it…
  933. # [19:54] <TabAtkins> Syntax is wildly out of date (I have a note on my whiteboard to volunteer to put a big "THIS IS OBSOLETE STOP LOOKING AT IT" marker on several specs).
  934. # [19:54] <Ms2ger> TabAtkins, is the ordering still insignificant wrt CSSOM serialization?
  935. # [19:54] <TabAtkins> It's explained in 2.1, though.
  936. # [19:54] <Ms2ger> TabAtkins, please do :)
  937. # [19:55] * Joins: miketaylr (~miketaylr@24.42.93.245)
  938. # [19:55] <boblet> everything in TR? [ducks]
  939. # [19:55] <TabAtkins> Ms2ger: Nobody follows CSSOM serialization so far.
  940. # [19:55] <TabAtkins> Or at least, that part of it.
  941. # [19:55] <Ms2ger> boblet, yes, please
  942. # [19:56] <boblet> Ms2ger: kk
  943. # [19:56] <Ms2ger> TabAtkins, nobody follows any spec, as a first approximation ;)
  944. # [19:56] * Joins: jwalden (~waldo@2620:101:8003:200:221:6aff:fe6e:d10)
  945. # [19:57] * Parts: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
  946. # [19:57] <TabAtkins> Ms2ger: "Doesn't exactly match every single detail" and "completely ignores" are pretty different.
  947. # [19:57] * Quits: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr)
  948. # [19:57] <Hixie> TabAtkins: the ordering isn't insignificant, it impacts serialisation
  949. # [19:58] <TabAtkins> Hixie: See above conversation.
  950. # [19:58] <Ms2ger> Hixie, beat you to it :)
  951. # [19:58] <Hixie> i was still reading :-)
  952. # [19:58] <Hixie> TabAtkins: they certainly won't implement it while the order is treated as insignificant in the specs :-)
  953. # [19:58] <Hixie> at least not interoperably :-)
  954. # [19:58] <TabAtkins> ^_^
  955. # [20:00] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
  956. # [20:00] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
  957. # [20:01] * Quits: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Read error: Connection reset by peer)
  958. # [20:02] * Joins: smaug____ (~chatzilla@YYKMCXLVI.gprs.sl-laajakaista.fi)
  959. # [20:03] <Hixie> any opinions on http://www.w3.org/Bugs/Public/show_bug.cgi?id=13174#c2 ?
  960. # [20:03] <Hixie> it seems a bit dubious to me, but i can't quite work out what i'd suggest instead
  961. # [20:04] <TabAtkins> The example in #7 seems reasonable.
  962. # [20:07] * Joins: KillerX_ (~anant@34.198.247.173.mozilla-sfo1.web-pass.com)
  963. # [20:07] <Hixie> annevk: you around?
  964. # [20:07] <Hixie> #7 is the real-world instance of #2
  965. # [20:07] <TabAtkins> Yes, I know.
  966. # [20:07] <Hixie> my concern is that people will start putting all kinds of shit in <th>, like <hx>, <article>s, etc
  967. # [20:08] <Hixie> but i agree that that specific example seems like the least bad way of marking up that semantic
  968. # [20:08] <Hixie> i guess i could explicitly only allow non-sectioning, non-heading content or something
  969. # [20:08] <TabAtkins> Just put an example in, explaining what not to do? Specifically, the spec could probably do with some text about Aryeh's example.
  970. # [20:08] * Quits: Rik` (~Rik`@mozilla-paris-253-98.cnt.nerim.net) (Remote host closed the connection)
  971. # [20:08] * Joins: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl)
  972. # [20:08] <Hixie> yeah, maybe being explicit in an example is enough?
  973. # [20:11] * Quits: Timz (~Adium@86.89.174.199) (Quit: Leaving.)
  974. # [20:13] <Hixie> annevk: see webapps
  975. # [20:18] * _bga is now known as bga_|away
  976. # [20:18] * bga_|away is now known as bga_
  977. # [20:22] * bga_ is now known as bga_|away
  978. # [20:22] * Quits: myakura (~myakura@FL1-203-136-181-177.tky.mesh.ad.jp) (Remote host closed the connection)
  979. # [20:35] <danbeam> Hixie: can you help me interpret HTML5 7.6.5, second ordered list, 4.1-2 (http://dev.w3.org/html5/spec/dnd.html#drag-and-drop-processing-model)?
  980. # [20:36] <danbeam> (or anybody else that's well versed with this spec.)
  981. # [20:36] <Ms2ger> danbeam, give me a link to the whatwg version and I can try :)
  982. # [20:37] <danbeam> Ms2ger: http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#drag-and-drop-processing-model
  983. # [20:38] <danbeam> Ms2ger: (second ordered list, 4.1-2)
  984. # [20:39] <danbeam> Ms2ger: my question is simply, "If there will be a 'drop' event, should it *have* to complete before a 'dragend'?"
  985. # [20:41] <Ms2ger> I think so, yes
  986. # [20:41] <danbeam> Ms2ger: it sure seems to be implied that it's a "yes"
  987. # [20:42] * Quits: rniwa (~yaaic@2600:1010:b005:34c6:0:30:5e32:1601) (Ping timeout: 240 seconds)
  988. # [20:42] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
  989. # [20:42] * Joins: esc__ (~esc-ape@72.inst-3.ufg.ac.at)
  990. # [20:44] * Joins: jamesr (jamesr@nat/google/x-bzeaknsmalfyggxy)
  991. # [20:46] * Quits: esc_ (~esc-ape@84.inst-3.ufg.ac.at) (Ping timeout: 260 seconds)
  992. # [20:47] * Quits: dbaron (~dbaron@173.228.28.227) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  993. # [20:47] * Quits: rillian_ (~rillian@150.183.119.66.static.metrobridge.net) (Read error: Connection reset by peer)
  994. # [20:48] * Joins: rillian_ (~rillian@150.183.119.66.static.metrobridge.net)
  995. # [20:49] * Joins: rniwa (~rniwa@airbears-136-152-22-156.AirBears.Berkeley.EDU)
  996. # [20:51] <Hixie> danbeam: what do you mean by "complete"?
  997. # [20:52] <danbeam> Hixie: should a "drop" event fire and be synchronously executed and completed before a "dragend" event is fired?
  998. # [20:53] <TabAtkins> annevk: I can't find the CSSValue interface defined anywhere in CSSOM. Am I missing something?
  999. # [20:53] * bga_|away is now known as bga_
  1000. # [20:55] <Ms2ger> TabAtkins, I assume he means the CSS*Value interfaces at http://dev.w3.org/csswg/cssom/Overview.html#the-csspropertyvalue-interface and later
  1001. # [20:56] <TabAtkins> Ms2ger: Well, 6.6.4 and 6.6.5 have things specifically returning a CSSValue.
  1002. # [20:57] <Ms2ger> So they do
  1003. # [20:58] <Hixie> danbeam: unless one of the event handlers dispatches its own event, event dispatch is always entirely synchronous within a task
  1004. # [20:58] <TabAtkins> annevk: Maybe you mean CSSComponentValue there, and for the other types like CSSStringComponentValue to inherit from CSSComponentValue?
  1005. # [20:58] <Ms2ger> I assume it'll be a superclass, then
  1006. # [20:59] <TabAtkins> Yeah, for now I'm just going to ape what CSSOM is doing.
  1007. # [21:05] <danbeam> Hixie: yes, that was my understanding as well, but check your PM
  1008. # [21:06] <Hixie> yeah i looked at that
  1009. # [21:06] <danbeam> Hixie: ok
  1010. # [21:08] <danbeam> Ms2ger, Hixie: thank you for your help
  1011. # [21:08] <Ms2ger> Np
  1012. # [21:11] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
  1013. # [21:13] * Joins: dbaron (~dbaron@nat/mozilla/x-eluoyxjjpjoduokj)
  1014. # [21:17] * annevk wonders what sicking is on about
  1015. # [21:18] <annevk> TabAtkins, what is the context you are talking about?
  1016. # [21:18] <annevk> TabAtkins, nothing inherits from each other and nothing is exposed to prevent code from depending on specifics that can later be changed (if we change e.g. what value a property takes)
  1017. # [21:19] <annevk> TabAtkins, basically a given property will return an object that implements several CSS value related interfaces
  1018. # [21:19] <annevk> Hixie, thanks for the email, hopefully hsivonen will look into it
  1019. # [21:24] <TabAtkins> annevk: Hm, okay. Well, I'm trying to define what I assume will be CSSVariableComponentValue. If it doesn't inherit from CSSComponentValue, it needs to expose a .value by itself?
  1020. # [21:33] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 276 seconds)
  1021. # [21:36] * Joins: _bga (~bga@95-55-11-219.dynamic.avangarddsl.ru)
  1022. # [21:37] * Quits: saba (~foo@unaffiliated/saba) (Quit: leaving)
  1023. # [21:39] * Quits: bga_ (~bga@95-55-11-219.dynamic.avangarddsl.ru) (Ping timeout: 260 seconds)
  1024. # [21:41] <rniwa> AryehGregor: if you're specing selection behavior, please make sure to spec selectstart event as well
  1025. # [21:41] <rniwa> AryehGregor: in particular, bugs like https://bugs.webkit.org/show_bug.cgi?id=66948 are interesting to follow
  1026. # [21:43] * Quits: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl) (Quit: nom: die double die triple die)
  1027. # [21:43] <annevk> TabAtkins, no, all properties accepting <variable> would simply implement CSSVariableComponentValue as well
  1028. # [21:44] <annevk> I looked again at CSSOM today and yesterday and wondered what I would need to change, but I still think the current model is sensible
  1029. # [21:44] <TabAtkins> Yes, but CSSVariableComponentValue itself has a name and a value.
  1030. # [21:44] <annevk> The problem is I guess that it's a) difficult and b) not implemented yet
  1031. # [21:45] <annevk> TabAtkins, ah yeah, you would have to name them variableName and variableValue
  1032. # [21:45] <TabAtkins> Ah, kk.
  1033. # [21:45] <annevk> sweet
  1034. # [21:45] <annevk> gonna get some cocktails now :)
  1035. # [21:45] <TabAtkins> I'll ping you for review on this stuff later.
  1036. # [21:46] <annevk> great
  1037. # [21:46] <sicking> annevk: what do you mean?
  1038. # [21:46] <TabAtkins> Drink a cocktail for me!
  1039. # [21:46] * Joins: dave_levin (dave_levin@nat/google/x-qdmmufldaleyfzcl)
  1040. # [21:47] * sicking heads out to lunch
  1041. # [21:49] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
  1042. # [21:55] * Joins: weinig (~weinig@2620:149:4:1b01:a996:dfc6:e30e:e5c)
  1043. # [21:58] <Ms2ger> http://lists.w3.org/Archives/Member/w3c-css-wg/2011JulSep/0297.html
  1044. # [21:58] <Ms2ger> For your enjoyment
  1045. # [21:59] <TabAtkins> That's so last week, Ms2ger.
  1046. # [21:59] <Ms2ger> No comment
  1047. # [21:59] <TabAtkins> Btw, the correct answer is "Make the change you want to the template without asking anyone, because everyone's crazy."
  1048. # [22:00] <TabAtkins> My mistake there.
  1049. # [22:00] <Ms2ger> "everyone's crazy."
  1050. # [22:00] <Ms2ger> I could have told you that :)
  1051. # [22:02] <TabAtkins> If I define a getter in idl, do I just define the meaning of it in prose?
  1052. # [22:02] <Ms2ger> Yes
  1053. # [22:02] <TabAtkins> Also: I don't understand what makes "creator" different from "setter".
  1054. # [22:03] <Ms2ger> creator is when the property doesn't exist yet, setter is when it does
  1055. # [22:03] <Hixie> what Ms2ger said
  1056. # [22:03] <TabAtkins> I suspected as much, but wasn't sure.
  1057. # [22:03] <TabAtkins> ok.
  1058. # [22:03] * Joins: Lachy (~Lachy@cm-84.215.59.50.getinternet.no)
  1059. # [22:04] * Quits: weinig (~weinig@2620:149:4:1b01:a996:dfc6:e30e:e5c) (Read error: Connection reset by peer)
  1060. # [22:04] * Joins: weinig (~weinig@2620:149:4:1b01:a996:dfc6:e30e:e5c)
  1061. # [22:06] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
  1062. # [22:14] <sicking> back
  1063. # [22:16] * Joins: charlvn (~charlvn@2001:0:5ef5:79fd:10c6:3d19:adb4:5bbb)
  1064. # [22:21] * Joins: charl (~charlvn@2001:0:5ef5:79fd:28af:1d3d:adb4:5bbb)
  1065. # [22:22] * Quits: Ms2ger (~Ms2ger@91.181.242.11) (Quit: nn)
  1066. # [22:24] * Quits: charlvn (~charlvn@2001:0:5ef5:79fd:10c6:3d19:adb4:5bbb) (Ping timeout: 240 seconds)
  1067. # [22:32] * Quits: davidb (~davidb@66.207.208.98) (Quit: davidb)
  1068. # [22:47] * Quits: smaug____ (~chatzilla@YYKMCXLVI.gprs.sl-laajakaista.fi) (Ping timeout: 258 seconds)
  1069. # [22:47] * Joins: roc (~chatzilla@121.98.230.221)
  1070. # [22:51] * charl is now known as charlvn
  1071. # [22:55] * Joins: cygri (~cygri@089-101-248111.ntlworld.ie)
  1072. # [22:57] * Quits: cygri (~cygri@089-101-248111.ntlworld.ie) (Client Quit)
  1073. # [22:58] * Quits: MacTed (~Thud@63.119.36.36)
  1074. # [22:59] * Joins: othermaciej (~mjs@17.244.25.145)
  1075. # [23:02] * Quits: charlvn (~charlvn@2001:0:5ef5:79fd:28af:1d3d:adb4:5bbb) (Read error: Connection reset by peer)
  1076. # [23:03] * Quits: othermaciej (~mjs@17.244.25.145) (Client Quit)
  1077. # [23:05] * Joins: weinig_ (~weinig@17.245.91.79)
  1078. # [23:06] * Joins: othermaciej (~mjs@2620:149:f01:202:6de5:6c1f:2d6d:dd35)
  1079. # [23:08] * Quits: weinig (~weinig@2620:149:4:1b01:a996:dfc6:e30e:e5c) (Ping timeout: 244 seconds)
  1080. # [23:08] * weinig_ is now known as weinig
  1081. # [23:10] * Joins: temp02 (~temp01@unaffiliated/temp01)
  1082. # [23:10] <rniwa> Hixie: sorry about the delay in responding to your stuff
  1083. # [23:10] <rniwa> Hixie: I think I still have to ask you about some cache state
  1084. # [23:11] <rniwa> Hixie: I'm intending to work on it next week. I've been ramped up by a bunch of regression fixes in WebKit in the last couple of weeks :(
  1085. # [23:11] * Joins: dsfsf (c6a06007@gateway/web/freenode/ip.198.160.96.7)
  1086. # [23:11] <rniwa> Hixie: but I just replied to your bug about drag&drop
  1087. # [23:11] * rniwa needs to respond to clipboard API spec as well
  1088. # [23:11] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 248 seconds)
  1089. # [23:12] <rniwa> man... participating in standardization process requires such a time commitment
  1090. # [23:13] <dsfsf> uh huh
  1091. # [23:14] * Quits: dsfsf (c6a06007@gateway/web/freenode/ip.198.160.96.7) (Client Quit)
  1092. # [23:23] * Joins: MikeSmith_ (~MikeSmith@EM1-113-127-116.pool.e-mobile.ne.jp)
  1093. # [23:25] * Quits: MikeSmith (~MikeSmith@EM111-191-71-33.pool.e-mobile.ne.jp) (Ping timeout: 244 seconds)
  1094. # [23:25] * MikeSmith_ is now known as MikeSmith
  1095. # [23:27] <sicking> Hixie: ping
  1096. # [23:29] * Quits: weinig (~weinig@17.245.91.79) (Remote host closed the connection)
  1097. # [23:29] * Joins: weinig (~weinig@17.212.155.228)
  1098. # [23:47] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  1099. # [23:48] * Quits: rillian_ (~rillian@150.183.119.66.static.metrobridge.net) (Remote host closed the connection)
  1100. # [23:48] * _bga is now known as bga_|away
  1101. # [23:48] * bga_|away is now known as bga_
  1102. # [23:49] * Joins: rillian_ (~rillian@150.183.119.66.static.metrobridge.net)
  1103. # [23:50] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (Ping timeout: 240 seconds)
  1104. # [23:56] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
  1105. # Session Close: Sat Oct 01 00:00:00 2011

The end :)