Options:
- # Session Start: Fri Sep 30 00:00:01 2011
- # Session Ident: #whatwg
- # [00:00] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [00:00] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [00:03] * Joins: Rik`_ (~Rik`@2a01:e34:ec0f:1570:d510:37e4:8b8b:4ebf)
- # [00:03] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [00:03] * Quits: xtoph (~xtoph@213.47.185.206)
- # [00:05] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [00:08] * Quits: hober (~ted@unaffiliated/hober) (Read error: Connection reset by peer)
- # [00:08] * Quits: Rik`_ (~Rik`@2a01:e34:ec0f:1570:d510:37e4:8b8b:4ebf) (Ping timeout: 240 seconds)
- # [00:08] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Operation timed out)
- # [00:09] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [00:12] * Joins: sicking (~chatzilla@34.198.247.173.mozilla-sfo1.web-pass.com)
- # [00:14] * Joins: davidb_ (~davidb@bas4-kitchener06-1128762076.dsl.bell.ca)
- # [00:14] * Joins: weinig (~weinig@17.245.91.79)
- # [00:16] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
- # [00:21] * Quits: stefan-__ (~music@wall.wi2.uni-trier.de) (Quit: Verlassend)
- # [00:24] * Quits: rniwa (rniwa@nat/google/x-qxydvoaztcxcdzkb) (Quit: rniwa)
- # [00:31] * Quits: charlvn (~charlvn@2001:0:53aa:64c:8df:3ee7:adb4:5bbb) (Quit: Ik ga weg)
- # [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])
- # [00:34] * Joins: ojan (ojan@nat/google/x-seyvimupwchqlwcc)
- # [00:37] * Quits: weinig (~weinig@17.245.91.79) (Quit: weinig)
- # [00:41] * Joins: danbeam (~bitlbee@unaffiliated/danbeam)
- # [00:41] * Quits: smaug____ (~chatzilla@GZYMKDCII.gprs.sl-laajakaista.fi) (Ping timeout: 255 seconds)
- # [00:42] * Quits: davidb_ (~davidb@bas4-kitchener06-1128762076.dsl.bell.ca) (Quit: davidb_)
- # [00:42] * Quits: Amorphous (jan@unaffiliated/amorphous) (Read error: Operation timed out)
- # [00:44] * Joins: hober2 (~ted@unaffiliated/hober)
- # [00:45] * _bga is now known as bga_|away
- # [00:45] * hober2 is now known as hober
- # [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."
- # [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?
- # [00:48] * bga_|away is now known as bga_
- # [00:48] <hober> danbeam: if you added the classes in that order, the transition should apply
- # [00:49] * Joins: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [00:49] * Joins: weinig (~weinig@17.245.91.79)
- # [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)
- # [00:54] <danbeam> I think this is an implementation difference, not specified behavior, though (like as you said, it *should* work)
- # [00:56] <hober> oh, i see. yeah, it makes sense that you could see both behaviors
- # [00:56] <hober> and either behavior is justifiable
- # [00:57] <danbeam> because style updates aren't guaranteed to be instant for performance benefits?
- # [00:57] <danbeam> s/instant/sync/
- # [00:57] <hober> more or less
- # [00:58] <danbeam> I may try a .innerText access or a getComputedStyle() and see if this ensures things are flushed synchronously
- # [00:58] <divya> danbeam: afaik all browsers repaint at one go
- # [00:59] <divya> which is why you wont see changes unless you setTimeout
- # [00:59] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [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
- # [00:59] * Joins: rubys (~rubys@cpe-098-027-059-167.nc.res.rr.com)
- # [01:00] <divya> really? when I tested you had to do setTimeout
- # [01:00] <danbeam> anyways, I just wanted to see if it was specified or not (like I said)
- # [01:00] <divya> if you are changing immediately
- # [01:00] * Joins: othermaciej_ (~mjs@2620:149:4:1b01:b0b0:9ade:99cc:d10)
- # [01:00] <divya> e.g. addClass("blur"); removeclass("blur");
- # [01:01] <danbeam> divya: http://jsfiddle.net/X6EFX/ works for me on OSX, Chrome 14
- # [01:01] * danbeam inb4 "Y U NO Opera?"
- # [01:02] <danbeam> (sorry, just checking on Chrome for right now)
- # [01:03] <divya> danbeam: err thats not the case i referred to
- # [01:03] * Quits: othermaciej (~mjs@17.245.90.41) (Quit: othermaciej)
- # [01:03] * othermaciej_ is now known as othermaciej
- # [01:03] <divya> the case is when you add/remove classnames and expect it to trigger a transition
- # [01:03] * Quits: weinig (~weinig@17.245.91.79) (Quit: weinig)
- # [01:04] * Joins: jwalden (~waldo@2620:101:8003:200:221:6aff:fe6e:d10)
- # [01:05] <danbeam> divya: PM
- # [01:06] <divya> k
- # [01:07] * Parts: rubys (~rubys@cpe-098-027-059-167.nc.res.rr.com)
- # [01:11] * bga_ is now known as bga_|away
- # [01:11] <Hixie> hober: isn't there equivalent text outside the example?
- # [01:13] <dbaron> danbeam, hober, it's explicitly undefined in the spec, and one of the architectural issues with transitions
- # [01:14] * Joins: weinig (~weinig@17.245.91.79)
- # [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."
- # [01:15] <dbaron> er, wait, the case you mentioned is defined
- # [01:15] <dbaron> never mind
- # [01:15] <hober> Hixie: /me looks
- # [01:16] <dbaron> however, you might not get a transition if the element was never actually displayed with the previous value of transform
- # [01:18] <hober> Hixie: if there is I can't find it
- # [01:18] <Hixie> k let me look one sec
- # [01:19] <Hixie> i wonder if i broke this when i did the arraybuffer change
- # [01:20] <Hixie> no, looks like it was always broken
- # [01:20] <Hixie> ok
- # [01:20] * Quits: newsbad__com (~gfdffdfd@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [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?
- # [01:21] <hober> Hixie: will do
- # [01:21] <hober> Hixie: thanks
- # [01:21] <Hixie> thanks
- # [01:25] <ojan> TabAtkins: you there? i have moar flexbox questions.
- # [01:25] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (Read error: Connection reset by peer)
- # [01:27] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
- # [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?
- # [01:37] * bga_|away is now known as bga_
- # [01:37] * Joins: nessy (~Adium@124-168-52-143.dyn.iinet.net.au)
- # [01:38] * Quits: weinig (~weinig@17.245.91.79) (Quit: weinig)
- # [01:40] * Parts: boaz (~boaz@li326-230.members.linode.com)
- # [01:42] <danbeam> dbaron: where is the case I mentioned defined?
- # [01:43] * Quits: nessy (~Adium@124-168-52-143.dyn.iinet.net.au) (Quit: Leaving.)
- # [01:44] * Quits: KillerX (~anant@34.198.247.173.mozilla-sfo1.web-pass.com) (Quit: KillerX)
- # [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. "
- # [01:48] <Hixie> Philip`: good point
- # [01:48] <Hixie> Philip`: maybe i should add a note to that effect?
- # [01:52] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [01:56] <hober> Hixie: sounds good to me
- # [01:59] <Hixie> ok i'll turn the paragraph you (hober) quoted earlier into a note after the paragraph Philip` quoted
- # [01:59] <Hixie> sound good?
- # [02:00] <Hixie> aw man, bug 13328 is gonna be a pain
- # [02:00] <Hixie> i guess i should write a script to do the conversion automatically
- # [02:02] * Quits: rillian_ (~rillian@150.183.119.66.static.metrobridge.net) (Remote host closed the connection)
- # [02:04] <Hixie> ok i checked in the change above
- # [02:06] * Quits: ojan (ojan@nat/google/x-seyvimupwchqlwcc) (Quit: ojan)
- # [02:10] * bga_ is now known as bga_|away
- # [02:14] <danbeam> hober, dbaron: thank you for your help
- # [02:21] * bga_|away is now known as bga_
- # [02:24] * Quits: sicking (~chatzilla@34.198.247.173.mozilla-sfo1.web-pass.com) (Ping timeout: 260 seconds)
- # [02:26] * Joins: ap_ (~ap@17.245.91.215)
- # [02:26] * Quits: ap_ (~ap@17.245.91.215) (Remote host closed the connection)
- # [02:26] * Quits: ap (~ap@17.212.155.203) (Read error: Connection reset by peer)
- # [02:26] * Joins: ap (~ap@17.212.155.203)
- # [02:32] * Quits: ZombieLoffe (ZombieL@unaffiliated/zombieloffe)
- # [02:42] * Joins: agektmr (~Adium@u676029.xgsnu2.imtp.tachikawa.mopera.net)
- # [02:42] * Joins: shetech (~shetech@c-76-126-167-49.hsd1.ca.comcast.net)
- # [02:50] * Quits: astearns (~anonymous@192.150.22.5) (Ping timeout: 260 seconds)
- # [02:51] * Joins: yuuki (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [02:54] * Quits: ap (~ap@17.212.155.203) (Quit: ap)
- # [02:55] * Quits: aho (~nya@fuld-590c62df.pool.mediaWays.net) (Quit: EXEC_over.METHOD_SUBLIMATION)
- # [03:05] * Joins: weinig (~weinig@17.212.155.228)
- # [03:05] * Quits: dave_levin (dave_levin@nat/google/x-xevzufummguexscd) (Quit: dave_levin)
- # [03:07] * bga_ is now known as bga_|away
- # [03:12] * Joins: miketaylr (~miketaylr@24.42.93.245)
- # [03:12] * Joins: nattokirai (~nattokira@rtr.mozilla.or.jp)
- # [03:14] * bga_|away is now known as bga_
- # [03:24] * bga_ is now known as bga_|away
- # [03:25] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 260 seconds)
- # [03:27] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [03:29] * Quits: mkanat (mkanat@nat/google/x-advdcxmyblfrrzas) (Quit: Ex-Chat)
- # [03:32] * Joins: othermaciej_ (~mjs@17.245.90.41)
- # [03:37] * bga_|away is now known as bga_
- # [03:39] * Joins: J_Voracek (~J_Voracek@ip-64-134-102-244.public.wayport.net)
- # [03:39] * Quits: J_Voracek (~J_Voracek@ip-64-134-102-244.public.wayport.net) (Client Quit)
- # [03:39] * Quits: dbaron (~dbaron@nat/mozilla/x-qgkrlatapxcqjxqv) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [03:41] * Quits: agektmr (~Adium@u676029.xgsnu2.imtp.tachikawa.mopera.net) (Quit: Leaving.)
- # [03:41] * bga_ is now known as bga_|away
- # [03:41] * Quits: bga_|away (~bga@ppp78-37-221-108.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [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])
- # [03:47] * Quits: othermaciej (~mjs@2620:149:4:1b01:b0b0:9ade:99cc:d10) (Quit: othermaciej)
- # [03:47] * othermaciej_ is now known as othermaciej
- # [03:47] * Quits: roc (~chatzilla@60.234.54.74) (Ping timeout: 248 seconds)
- # [03:52] * Joins: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net)
- # [04:02] * Quits: jernoble (~jernoble@17.212.152.13) (Read error: No route to host)
- # [04:02] * Joins: jernoble (~jernoble@17.212.152.13)
- # [04:04] * Joins: dbaron (~dbaron@173.228.28.227)
- # [04:18] * Quits: jernoble (~jernoble@17.212.152.13) (Read error: Operation timed out)
- # [04:19] * Joins: jernoble (~jernoble@17.212.152.13)
- # [04:20] * Joins: agektmr (~Adium@220.109.219.244)
- # [04:21] * Joins: roc (~chatzilla@121.98.230.221)
- # [04:22] * Joins: jdong_ (~jdong@222.126.155.250)
- # [04:32] * Quits: miketaylr (~miketaylr@24.42.93.245) (Read error: Connection reset by peer)
- # [04:35] * Joins: miketaylr (~miketaylr@24.42.93.245)
- # [04:39] * Quits: weinig (~weinig@17.212.155.228) (Quit: weinig)
- # [05:07] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
- # [05:11] * Quits: othermaciej (~mjs@17.245.90.41) (Ping timeout: 245 seconds)
- # [05:22] * Joins: MikeSmith_ (~MikeSmith@EM1-112-116-139.pool.e-mobile.ne.jp)
- # [05:24] * Quits: MikeSmith (~MikeSmith@EM1-112-75-248.pool.e-mobile.ne.jp) (Ping timeout: 260 seconds)
- # [05:24] * MikeSmith_ is now known as MikeSmith
- # [05:37] * Joins: nessy (~Adium@124-168-52-143.dyn.iinet.net.au)
- # [05:39] * Joins: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net)
- # [05:43] * Quits: nonge_ (~nonge@p5B326C56.dip.t-dialin.net) (Ping timeout: 260 seconds)
- # [05:47] * Quits: benjoffe_ (~benjoffe_@CPE-203-51-100-177.lns10.cht.bigpond.net.au) (Remote host closed the connection)
- # [05:55] * Joins: miketaylr (~miketaylr@24.42.93.245)
- # [05:56] * Joins: benjoffe_ (~benjoffe_@CPE-203-51-100-177.lns10.cht.bigpond.net.au)
- # [06:06] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [06:08] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:08] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:09] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:09] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:10] * Joins: Rik`_ (~Rik`@2a01:e34:ec0f:1570:44b9:f1f5:ec6d:84d1)
- # [06:10] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:11] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:13] * Quits: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net) (*.net *.split)
- # [06:13] * Quits: Amorphous (jan@unaffiliated/amorphous) (*.net *.split)
- # [06:13] * Quits: hober (~ted@unaffiliated/hober) (*.net *.split)
- # [06:13] * Quits: jennb (jennb@nat/google/x-hiuzvneuypvdojka) (*.net *.split)
- # [06:13] * Quits: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net) (*.net *.split)
- # [06:13] * Quits: annevk5 (u2483@gateway/web/irccloud.com/x-ubgbswcfqbkuybwx) (*.net *.split)
- # [06:13] * Quits: beverloo (beverloo@nat/google/x-mtquqrmpjilhrxnn) (*.net *.split)
- # [06:13] * Quits: yutak (~yutak@2401:fa00:4:1000:baac:6fff:fe99:adfb) (*.net *.split)
- # [06:13] * Quits: hoodow (~hoodow@pdpc/supporter/active/hoodow) (*.net *.split)
- # [06:13] * Quits: karlcow (~karl@nerval.la-grange.net) (*.net *.split)
- # [06:13] * Quits: payman (~payman@pat.se.opera.com) (*.net *.split)
- # [06:13] * Quits: gsnedders (~gsnedders@204.232.194.186) (*.net *.split)
- # [06:13] * Quits: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan) (*.net *.split)
- # [06:13] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (*.net *.split)
- # [06:13] * Quits: riven (~riven@pdpc/supporter/professional/riven) (*.net *.split)
- # [06:13] * Quits: Scorchin (u1242@gateway/web/irccloud.com/x-xrtewibgbvjyvkdu) (*.net *.split)
- # [06:13] * Quits: Rik`_ (~Rik`@2a01:e34:ec0f:1570:44b9:f1f5:ec6d:84d1) (*.net *.split)
- # [06:13] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (*.net *.split)
- # [06:13] * Quits: gavin___ (~gavin@76.14.70.183) (*.net *.split)
- # [06:13] * Quits: KolakCC (~KolakCC@unaffiliated/kolakcc) (*.net *.split)
- # [06:13] * Quits: jochen__ (jochen@nat/google/x-kzefzyzdavqhlznl) (*.net *.split)
- # [06:13] * Quits: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj) (*.net *.split)
- # [06:13] * Quits: arv (arv@nat/google/x-goylsyboktjbhvwk) (*.net *.split)
- # [06:13] * Quits: robman (~robman@eth4584.nsw.adsl.internode.on.net) (*.net *.split)
- # [06:13] * Quits: inimino (~inimino@boshi.inimino.org) (*.net *.split)
- # [06:13] * Quits: scheib1 (scheib@nat/google/x-qoykoaairoiucoej) (*.net *.split)
- # [06:13] * Quits: hamaji (~hamaji@220.109.219.244) (*.net *.split)
- # [06:13] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (*.net *.split)
- # [06:13] * Quits: jacobolu_ (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net) (*.net *.split)
- # [06:13] * Quits: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk) (*.net *.split)
- # [06:13] * Quits: twisted` (~twisted@205.189.73.45) (*.net *.split)
- # [06:13] * Quits: FireFly (~firefly@unaffiliated/firefly) (*.net *.split)
- # [06:13] * Quits: Workshiva (~Dashiva@74.125.57.33) (*.net *.split)
- # [06:13] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (*.net *.split)
- # [06:13] * Quits: takkaria (~takkaria@isparp.co.uk) (*.net *.split)
- # [06:13] * Quits: jmb (~jmb@mail.parsifal.org.uk) (*.net *.split)
- # [06:13] * Quits: gnarf (~gnarf@unaffiliated/gnarf) (*.net *.split)
- # [06:13] * Quits: pererik (~pe@unaffiliated/pererik) (*.net *.split)
- # [06:13] * Quits: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net) (*.net *.split)
- # [06:13] * Quits: romainhuet (u2533@gateway/web/irccloud.com/x-kgagqzjfsstfntxa) (*.net *.split)
- # [06:13] * Quits: slightlyoff (u1768@gateway/web/irccloud.com/x-leutuazhgomfkzqq) (*.net *.split)
- # [06:13] * Quits: tmzt_ (~tmzt@adsl-69-208-11-149.dsl.akrnoh.ameritech.net) (*.net *.split)
- # [06:13] * Quits: Marcosc (~Adium@cm-84.208.50.132.getinternet.no) (*.net *.split)
- # [06:13] * Quits: benschwarz (u2121@gateway/web/irccloud.com/x-arvwvlkaudklrkjq) (*.net *.split)
- # [06:13] * Quits: Hixie (~ianh@trivini.no) (*.net *.split)
- # [06:13] * Quits: reggna (~reggna@godis.olf.sgsnet.se) (*.net *.split)
- # [06:13] * Quits: Adawerk``` (~mven__@169.241.49.57) (*.net *.split)
- # [06:13] * Quits: roc (~chatzilla@121.98.230.221) (*.net *.split)
- # [06:13] * Quits: llrcombs (~llrcombs@64.130.210.214) (*.net *.split)
- # [06:13] * Quits: webben (~benjamin@173-203-84-17.static.cloud-ips.com) (*.net *.split)
- # [06:13] * Quits: AryehGregor (~Simetrica@mediawiki/simetrical) (*.net *.split)
- # [06:13] * Quits: salavas (~salavas@c83-248-102-83.bredband.comhem.se) (*.net *.split)
- # [06:13] * Quits: Jedi_ (~Jedi@jedi.org) (*.net *.split)
- # [06:13] * Quits: nigelb (~nigel@ubuntu/member/nigelb) (*.net *.split)
- # [06:13] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Write error: Connection reset by peer)
- # [06:13] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:13] * Quits: danheberden (~danheberd@li225-35.members.linode.com) (Ping timeout: 248 seconds)
- # [06:16] * Rik` is now known as 64MAAH39P
- # [06:16] * Quits: 64MAAH39P (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:16] * Joins: danheberden (~danheberd@li225-35.members.linode.com)
- # [06:16] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:16] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [06:16] * Joins: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net)
- # [06:16] * Joins: roc (~chatzilla@121.98.230.221)
- # [06:16] * Joins: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net)
- # [06:16] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
- # [06:16] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [06:16] * Joins: hober (~ted@unaffiliated/hober)
- # [06:16] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [06:16] * Joins: gavin___ (~gavin@76.14.70.183)
- # [06:16] * Joins: jennb (jennb@nat/google/x-hiuzvneuypvdojka)
- # [06:16] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [06:16] * Joins: KolakCC (~KolakCC@unaffiliated/kolakcc)
- # [06:16] * Joins: jacobolu_ (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net)
- # [06:16] * Joins: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk)
- # [06:16] * Joins: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net)
- # [06:16] * Joins: hoodow (~hoodow@pdpc/supporter/active/hoodow)
- # [06:16] * Joins: yutak (~yutak@2401:fa00:4:1000:baac:6fff:fe99:adfb)
- # [06:16] * Joins: beverloo (beverloo@nat/google/x-mtquqrmpjilhrxnn)
- # [06:16] * Joins: annevk5 (u2483@gateway/web/irccloud.com/x-ubgbswcfqbkuybwx)
- # [06:16] * Joins: jochen__ (jochen@nat/google/x-kzefzyzdavqhlznl)
- # [06:16] * Joins: payman (~payman@pat.se.opera.com)
- # [06:16] * Joins: takkaria (~takkaria@isparp.co.uk)
- # [06:16] * Joins: gsnedders (~gsnedders@204.232.194.186)
- # [06:16] * Joins: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan)
- # [06:16] * Joins: romainhuet (u2533@gateway/web/irccloud.com/x-kgagqzjfsstfntxa)
- # [06:16] * Joins: slightlyoff (u1768@gateway/web/irccloud.com/x-leutuazhgomfkzqq)
- # [06:16] * Joins: tmzt_ (~tmzt@adsl-69-208-11-149.dsl.akrnoh.ameritech.net)
- # [06:16] * Joins: Marcosc (~Adium@cm-84.208.50.132.getinternet.no)
- # [06:16] * Joins: twisted` (~twisted@205.189.73.45)
- # [06:16] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [06:16] * Joins: benschwarz (u2121@gateway/web/irccloud.com/x-arvwvlkaudklrkjq)
- # [06:16] * Joins: jmb (~jmb@mail.parsifal.org.uk)
- # [06:16] * Joins: llrcombs (~llrcombs@64.130.210.214)
- # [06:16] * Joins: webben (~benjamin@173-203-84-17.static.cloud-ips.com)
- # [06:16] * Joins: gnarf (~gnarf@unaffiliated/gnarf)
- # [06:16] * Joins: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj)
- # [06:16] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [06:16] * Joins: riven (~riven@pdpc/supporter/professional/riven)
- # [06:16] * Joins: Scorchin (u1242@gateway/web/irccloud.com/x-xrtewibgbvjyvkdu)
- # [06:16] * Joins: pererik (~pe@unaffiliated/pererik)
- # [06:16] * Joins: Workshiva (~Dashiva@74.125.57.33)
- # [06:16] * Joins: Hixie (~ianh@trivini.no)
- # [06:16] * Joins: reggna (~reggna@godis.olf.sgsnet.se)
- # [06:16] * Joins: Adawerk``` (~mven__@169.241.49.57)
- # [06:16] * Joins: arv (arv@nat/google/x-goylsyboktjbhvwk)
- # [06:16] * Joins: robman (~robman@eth4584.nsw.adsl.internode.on.net)
- # [06:16] * Joins: hamaji (~hamaji@220.109.219.244)
- # [06:16] * Joins: scheib1 (scheib@nat/google/x-qoykoaairoiucoej)
- # [06:16] * Joins: inimino (~inimino@boshi.inimino.org)
- # [06:16] * Joins: Jedi_ (~Jedi@jedi.org)
- # [06:16] * Joins: nigelb (~nigel@ubuntu/member/nigelb)
- # [06:16] * Joins: salavas (~salavas@c83-248-102-83.bredband.comhem.se)
- # [06:16] * Joins: AryehGregor (~Simetrica@mediawiki/simetrical)
- # [06:16] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:16] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:17] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:18] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:19] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:19] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:21] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:21] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:22] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:22] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:23] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:23] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:25] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:25] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:25] * Quits: cpearce (~chatzilla@60.234.54.74) (Ping timeout: 260 seconds)
- # [06:26] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:26] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:28] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:28] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:28] * Quits: benjoffe_ (~benjoffe_@CPE-203-51-100-177.lns10.cht.bigpond.net.au) (Remote host closed the connection)
- # [06:29] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:5960:ecc4:ce40:50fb)
- # [06:29] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [06:31] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [06:32] <Hixie> i like anne's newscaster style for the whatwg weeklies
- # [06:32] <Hixie> just needs some good music to go with it.
- # [06:34] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:5960:ecc4:ce40:50fb) (Ping timeout: 244 seconds)
- # [06:43] * nunnun is now known as nunnun_away
- # [07:04] * jacobolu_ is now known as jacobolus
- # [07:09] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
- # [07:10] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 255 seconds)
- # [07:15] <nessy> Hixie: would it be appropriate to send an email to whatwg about what is happening around webvtt at W3C?
- # [07:15] <Hixie> i'll do it once something actually happens
- # [07:16] <nessy> did you see http://www.w3.org/community/texttracks/ ?
- # [07:16] <nessy> the group actually got created today, so I thought it appropriate to explain why we're doing it
- # [07:16] <nessy> happy for you to do it if you prefer
- # [07:16] <Hixie> group creation doesn't count as "something actually happening" :-)
- # [07:17] * Quits: llrcombs (~llrcombs@64.130.210.214) (Read error: Operation timed out)
- # [07:17] <nessy> fair enough :-)
- # [07:17] * Joins: llrcombs (~llrcombs@64.130.210.214)
- # [07:17] <Hixie> annevk5: http://www.youtube.com/watch?v=1Bg5BPnmj68
- # [07:17] <Hixie> enjoy :-)
- # [07:21] <nessy> lol
- # [07:35] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 248 seconds)
- # [07:41] * Quits: hij1nx (~hij1nx@cpe-98-14-168-178.nyc.res.rr.com) (Quit: hij1nx)
- # [07:52] * Joins: Ankheg (~Ankheg@91.224.77.4)
- # [08:05] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 252 seconds)
- # [08:12] * Joins: rniwa (~rniwa@c-67-188-230-129.hsd1.ca.comcast.net)
- # [08:13] * Joins: jochen___ (jochen@nat/google/x-ghooecnybkcwymyy)
- # [08:14] * Quits: jochen__ (jochen@nat/google/x-kzefzyzdavqhlznl) (Ping timeout: 240 seconds)
- # [08:14] * jochen___ is now known as jochen__
- # [08:15] * Quits: rniwa (~rniwa@c-67-188-230-129.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [08:16] * Joins: rniwa (~rniwa@216.239.45.130)
- # [08:19] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [08:32] * Joins: silverroots (~silverroo@144.187.148.25)
- # [08:34] * Joins: mokush (~quassel@188.24.43.235)
- # [08:48] * Quits: dbaron (~dbaron@173.228.28.227) (Read error: Operation timed out)
- # [09:03] * Joins: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net)
- # [09:04] * Joins: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [09:05] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
- # [09:05] * Joins: woef (~woef@91.183.84.141)
- # [09:05] * Joins: dbaron (~dbaron@173-228-28-227.dsl.dynamic.sonic.net)
- # [09:13] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [09:14] * Quits: dbaron (~dbaron@173-228-28-227.dsl.dynamic.sonic.net) (Ping timeout: 260 seconds)
- # [09:14] <annevk5> haha
- # [09:15] * Joins: ezoe (~ezoe@203-140-91-133f1.kyt1.eonet.ne.jp)
- # [09:33] * Quits: jdong_ (~jdong@222.126.155.250) (Remote host closed the connection)
- # [09:34] * Joins: jdong_ (~quassel@222.126.155.250)
- # [09:38] * Quits: ParadoX- (~para@hades.spexhost.com) (Read error: Connection reset by peer)
- # [09:39] * Joins: ParadoX- (parad0x@hades.spexhost.com)
- # [09:40] * Joins: smaug____ (~chatzilla@GGYKMDCXCIII.gprs.sl-laajakaista.fi)
- # [09:55] * Joins: Neiluj (~Julien@195.200.175.214)
- # [10:03] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
- # [10:10] * Joins: virtuelv (~virtuelv_@pat-tdc.opera.com)
- # [10:11] * Joins: rtuin (~rtuin@213.125.175.250)
- # [10:15] * Quits: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr)
- # [10:16] * Joins: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [10:20] <annevk5> nessy, maybe announce the WebVTT CG and whether it plans to fork or not on the WHATWG list?
- # [10:20] * Joins: david_carlisle (~chatzilla@86.188.197.189)
- # [10:20] * Joins: cygri (~cygri@188.201.86.194)
- # [10:20] <annevk5> nessy, somewhat unclear what the relation to the WHATWG is from your blog post
- # [10:21] * Joins: ZombieLoffe (ZombieL@unaffiliated/zombieloffe)
- # [10:21] * Quits: smaug____ (~chatzilla@GGYKMDCXCIII.gprs.sl-laajakaista.fi) (Ping timeout: 256 seconds)
- # [10:26] * Quits: Peter` (~peter@nishino.lvp-media.com) (Ping timeout: 260 seconds)
- # [10:26] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 252 seconds)
- # [10:26] * Quits: Dashiva (Dashiva@wikia/Dashiva) (Ping timeout: 252 seconds)
- # [10:27] * Quits: jarib_ (~jarib@109.74.192.179) (Ping timeout: 252 seconds)
- # [10:27] * Quits: asmodai (asmodai@h61194.upc-h.chello.nl) (Ping timeout: 260 seconds)
- # [10:28] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 252 seconds)
- # [10:28] * Quits: rtuin (~rtuin@213.125.175.250) (Ping timeout: 260 seconds)
- # [10:28] * Quits: ben_alman (~ben_alman@web126.webfaction.com) (Ping timeout: 260 seconds)
- # [10:28] * Quits: Kingdutch (~kingdutch@188.200.149.217) (Ping timeout: 260 seconds)
- # [10:28] * Quits: foolip (~philip@83.218.67.122) (Ping timeout: 260 seconds)
- # [10:28] * Quits: doublec (~doublec@unaffiliated/doublec) (Ping timeout: 260 seconds)
- # [10:28] * Quits: nw` (eero@heaven.unlink.org) (Ping timeout: 260 seconds)
- # [10:29] * Joins: Kingdutch (~kingdutch@188.200.149.217)
- # [10:33] * Quits: jochen__ (jochen@nat/google/x-ghooecnybkcwymyy) (*.net *.split)
- # [10:33] * Quits: Ankheg (~Ankheg@91.224.77.4) (*.net *.split)
- # [10:33] * Quits: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net) (*.net *.split)
- # [10:33] * Quits: Amorphous (jan@unaffiliated/amorphous) (*.net *.split)
- # [10:33] * Quits: hober (~ted@unaffiliated/hober) (*.net *.split)
- # [10:33] * Quits: jennb (jennb@nat/google/x-hiuzvneuypvdojka) (*.net *.split)
- # [10:33] * Quits: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net) (*.net *.split)
- # [10:33] * Quits: annevk5 (u2483@gateway/web/irccloud.com/x-ubgbswcfqbkuybwx) (*.net *.split)
- # [10:33] * Quits: beverloo (beverloo@nat/google/x-mtquqrmpjilhrxnn) (*.net *.split)
- # [10:33] * Quits: yutak (~yutak@2401:fa00:4:1000:baac:6fff:fe99:adfb) (*.net *.split)
- # [10:33] * Quits: hoodow (~hoodow@pdpc/supporter/active/hoodow) (*.net *.split)
- # [10:33] * Quits: Neiluj (~Julien@195.200.175.214) (*.net *.split)
- # [10:33] * Quits: karlcow (~karl@nerval.la-grange.net) (*.net *.split)
- # [10:33] * Quits: payman (~payman@pat.se.opera.com) (*.net *.split)
- # [10:33] * Quits: gsnedders (~gsnedders@204.232.194.186) (*.net *.split)
- # [10:33] * Quits: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan) (*.net *.split)
- # [10:33] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (*.net *.split)
- # [10:33] * Quits: riven (~riven@pdpc/supporter/professional/riven) (*.net *.split)
- # [10:33] * Quits: Scorchin (u1242@gateway/web/irccloud.com/x-xrtewibgbvjyvkdu) (*.net *.split)
- # [10:33] * Quits: david_carlisle (~chatzilla@86.188.197.189) (*.net *.split)
- # [10:33] * Quits: woef (~woef@91.183.84.141) (*.net *.split)
- # [10:33] * Quits: rniwa (~rniwa@216.239.45.130) (*.net *.split)
- # [10:33] * Quits: danheberden (~danheberd@li225-35.members.linode.com) (*.net *.split)
- # [10:33] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (*.net *.split)
- # [10:33] * Quits: gavin___ (~gavin@76.14.70.183) (*.net *.split)
- # [10:33] * Quits: KolakCC (~KolakCC@unaffiliated/kolakcc) (*.net *.split)
- # [10:33] * Quits: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj) (*.net *.split)
- # [10:33] * Quits: arv (arv@nat/google/x-goylsyboktjbhvwk) (*.net *.split)
- # [10:34] * Quits: robman (~robman@eth4584.nsw.adsl.internode.on.net) (*.net *.split)
- # [10:34] * Quits: inimino (~inimino@boshi.inimino.org) (*.net *.split)
- # [10:34] * Quits: scheib1 (scheib@nat/google/x-qoykoaairoiucoej) (*.net *.split)
- # [10:34] * Quits: hamaji (~hamaji@220.109.219.244) (*.net *.split)
- # [10:34] * Quits: cygri (~cygri@188.201.86.194) (*.net *.split)
- # [10:34] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (*.net *.split)
- # [10:34] * Quits: jacobolus (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net) (*.net *.split)
- # [10:34] * Quits: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk) (*.net *.split)
- # [10:34] * Quits: twisted` (~twisted@205.189.73.45) (*.net *.split)
- # [10:34] * Quits: FireFly (~firefly@unaffiliated/firefly) (*.net *.split)
- # [10:34] * Quits: Workshiva (~Dashiva@74.125.57.33) (*.net *.split)
- # [10:34] * Quits: takkaria (~takkaria@isparp.co.uk) (*.net *.split)
- # [10:34] * Quits: jmb (~jmb@mail.parsifal.org.uk) (*.net *.split)
- # [10:34] * Quits: gnarf (~gnarf@unaffiliated/gnarf) (*.net *.split)
- # [10:34] * Quits: pererik (~pe@unaffiliated/pererik) (*.net *.split)
- # [10:34] * Quits: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net) (*.net *.split)
- # [10:34] * Quits: romainhuet (u2533@gateway/web/irccloud.com/x-kgagqzjfsstfntxa) (*.net *.split)
- # [10:34] * Quits: slightlyoff (u1768@gateway/web/irccloud.com/x-leutuazhgomfkzqq) (*.net *.split)
- # [10:34] * Quits: tmzt_ (~tmzt@adsl-69-208-11-149.dsl.akrnoh.ameritech.net) (*.net *.split)
- # [10:34] * Quits: Marcosc (~Adium@cm-84.208.50.132.getinternet.no) (*.net *.split)
- # [10:34] * Quits: benschwarz (u2121@gateway/web/irccloud.com/x-arvwvlkaudklrkjq) (*.net *.split)
- # [10:34] * Quits: Hixie (~ianh@trivini.no) (*.net *.split)
- # [10:34] * Quits: reggna (~reggna@godis.olf.sgsnet.se) (*.net *.split)
- # [10:34] * Quits: Adawerk``` (~mven__@169.241.49.57) (*.net *.split)
- # [10:34] * Quits: roc (~chatzilla@121.98.230.221) (*.net *.split)
- # [10:34] * Quits: webben (~benjamin@173-203-84-17.static.cloud-ips.com) (*.net *.split)
- # [10:34] * Quits: AryehGregor (~Simetrica@mediawiki/simetrical) (*.net *.split)
- # [10:34] * Quits: salavas (~salavas@c83-248-102-83.bredband.comhem.se) (*.net *.split)
- # [10:34] * Quits: Jedi_ (~Jedi@jedi.org) (*.net *.split)
- # [10:34] * Quits: nigelb (~nigel@ubuntu/member/nigelb) (*.net *.split)
- # [10:34] * Quits: MikeSmith (~MikeSmith@EM1-112-116-139.pool.e-mobile.ne.jp) (*.net *.split)
- # [10:34] * Quits: agektmr (~Adium@220.109.219.244) (*.net *.split)
- # [10:34] * Quits: jernoble (~jernoble@17.212.152.13) (*.net *.split)
- # [10:34] * Quits: MrOpposite (~MrOpposit@unaffiliated/mropposite) (*.net *.split)
- # [10:34] * Quits: krijn (u2319@gateway/web/irccloud.com/x-sslxwkyblevwmrqp) (*.net *.split)
- # [10:34] * Quits: beowulf (u116@pdpc/supporter/professional/beowulf) (*.net *.split)
- # [10:34] * Quits: ukai (ukai@nat/google/x-ouairzrvtkmfmoft) (*.net *.split)
- # [10:34] * Quits: eighty4 (~eighty4@unaffiliated/eighty4) (*.net *.split)
- # [10:34] * Quits: theoros (~user@unaffiliated/theoros) (*.net *.split)
- # [10:34] * Quits: volkmar (~volkmar@gentoo/developer/volkmar) (*.net *.split)
- # [10:34] * Quits: Philip` (~philip@zaynar.co.uk) (*.net *.split)
- # [10:34] * Quits: jgraham (~jgraham@web22.webfaction.com) (*.net *.split)
- # [10:34] * Quits: Necrathex (~nectop@82-170-160-25.ip.telfort.nl) (*.net *.split)
- # [10:34] * Quits: esc_ (~esc-ape@84.inst-3.ufg.ac.at) (*.net *.split)
- # [10:34] * Quits: Martijnc (~Martijn@d54C02C64.access.telenet.be) (*.net *.split)
- # [10:34] * Quits: tomaw (tom@freenode/staff/tomaw) (*.net *.split)
- # [10:34] * Quits: manu-db (~msporny@digitalbazaar.com) (*.net *.split)
- # [10:34] * Quits: [tm] (~MikeSmith@sideshowbarker.net) (*.net *.split)
- # [10:34] * Quits: PrgmrBill (~PrgmrBill@unaffiliated/prgmrbill) (*.net *.split)
- # [10:34] * Quits: tellnes (~KrooniX@ec2-79-125-26-36.eu-west-1.compute.amazonaws.com) (*.net *.split)
- # [10:34] * Quits: moo-_- (~quassel@herd37.twinapex.fi) (*.net *.split)
- # [10:34] * Quits: broquaint (a52b469f90@78.47.79.137) (*.net *.split)
- # [10:34] * Quits: wilhelm (~wilhelm@trivini.no) (*.net *.split)
- # [10:34] * Quits: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se) (*.net *.split)
- # [10:34] * Quits: jdong_ (~quassel@222.126.155.250) (*.net *.split)
- # [10:34] * Quits: CvP (~CvP@123.49.23.215) (*.net *.split)
- # [10:34] * Quits: Phae (u455@gateway/web/irccloud.com/x-zcodyeilyiavxiuw) (*.net *.split)
- # [10:34] * Quits: nunnun_away (~nunnun@irc.v6.nunnun.jp) (*.net *.split)
- # [10:34] * Quits: ZombieLoffe (ZombieL@unaffiliated/zombieloffe) (*.net *.split)
- # [10:34] * Quits: ParadoX- (parad0x@hades.spexhost.com) (*.net *.split)
- # [10:34] * Quits: temp01 (~temp01@unaffiliated/temp01) (*.net *.split)
- # [10:34] * Quits: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net) (*.net *.split)
- # [10:34] * Quits: mokush (~quassel@188.24.43.235) (*.net *.split)
- # [10:34] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (*.net *.split)
- # [10:34] * Quits: nessy (~Adium@124-168-52-143.dyn.iinet.net.au) (*.net *.split)
- # [10:34] * Quits: nattokirai (~nattokira@rtr.mozilla.or.jp) (*.net *.split)
- # [10:34] * Quits: scor (~scor@drupal.org/user/52142/view) (*.net *.split)
- # [10:34] * Quits: kennyluck (~kennyluck@114-43-112-94.dynamic.hinet.net) (*.net *.split)
- # [10:34] * Quits: danja_ (~danny@host234-8-dynamic.8-79-r.retail.telecomitalia.it) (*.net *.split)
- # [10:34] * Quits: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com) (*.net *.split)
- # [10:34] * Quits: ryanseddon (u1832@gateway/web/irccloud.com/x-qfrnddvmbqetzdot) (*.net *.split)
- # [10:34] * Quits: manu` (~chatzilla@pool-74-107-167-56.ronkva.east.verizon.net) (*.net *.split)
- # [10:34] * Quits: jeremyselier (u2513@gateway/web/irccloud.com/x-gdnjimdbytlytqgo) (*.net *.split)
- # [10:34] * Quits: bzed (~bzed@devel.recluse.de) (*.net *.split)
- # [10:34] * Quits: bezoar (~Adium@c-24-143-67-135.customer.broadstripe.net) (*.net *.split)
- # [10:34] * Quits: TabAtkins (tabatkins@nat/google/x-nsvkozmxwfrmlkjv) (*.net *.split)
- # [10:34] * Quits: crash\ (bouncer@lubyte.de) (*.net *.split)
- # [10:44] * Joins: annevk (~annevk@pat-tdc.opera.com)
- # [10:44] * Joins: foolip (~philip@83.218.67.122)
- # [10:44] * Joins: jarib- (~jarib@109.74.192.179)
- # [10:44] * Joins: nw`_ (eero@heaven.unlink.org)
- # [10:44] * Joins: doublec (~doublec@cd.pn)
- # [10:44] * Joins: Stikk (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [10:44] * Joins: Dashimon (Dashiva@84-72-45-52.dclient.hispeed.ch)
- # [10:44] * Joins: rtuin_ (~rtuin@213.125.175.250)
- # [10:44] * Joins: cygri (~cygri@188.201.86.194)
- # [10:44] * Joins: david_carlisle (~chatzilla@86.188.197.189)
- # [10:44] * Joins: Neiluj (~Julien@195.200.175.214)
- # [10:44] * Joins: woef (~woef@91.183.84.141)
- # [10:44] * Joins: rniwa (~rniwa@216.239.45.130)
- # [10:44] * Joins: jochen__ (jochen@nat/google/x-ghooecnybkcwymyy)
- # [10:44] * Joins: Ankheg (~Ankheg@91.224.77.4)
- # [10:44] * Joins: MrOpposite (~MrOpposit@unaffiliated/mropposite)
- # [10:44] * Joins: krijn (u2319@gateway/web/irccloud.com/x-sslxwkyblevwmrqp)
- # [10:44] * Joins: beowulf (u116@pdpc/supporter/professional/beowulf)
- # [10:44] * Joins: ukai (ukai@nat/google/x-ouairzrvtkmfmoft)
- # [10:44] * Joins: eighty4 (~eighty4@unaffiliated/eighty4)
- # [10:44] * Joins: theoros (~user@unaffiliated/theoros)
- # [10:44] * Joins: volkmar (~volkmar@gentoo/developer/volkmar)
- # [10:44] * Joins: Philip` (~philip@zaynar.co.uk)
- # [10:44] * Joins: jgraham (~jgraham@web22.webfaction.com)
- # [10:44] * Joins: jernoble (~jernoble@17.212.152.13)
- # [10:44] * Joins: agektmr (~Adium@220.109.219.244)
- # [10:44] * Joins: MikeSmith (~MikeSmith@EM1-112-116-139.pool.e-mobile.ne.jp)
- # [10:44] * Joins: danheberden (~danheberd@li225-35.members.linode.com)
- # [10:44] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [10:44] * Joins: nonge__ (~nonge@p5B326AF6.dip.t-dialin.net)
- # [10:44] * Joins: roc (~chatzilla@121.98.230.221)
- # [10:44] * Joins: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net)
- # [10:44] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
- # [10:44] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [10:44] * Joins: hober (~ted@unaffiliated/hober)
- # [10:44] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [10:44] * Joins: gavin___ (~gavin@76.14.70.183)
- # [10:44] * Joins: jennb (jennb@nat/google/x-hiuzvneuypvdojka)
- # [10:44] * Joins: KolakCC (~KolakCC@unaffiliated/kolakcc)
- # [10:44] * Joins: jacobolus (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net)
- # [10:44] * Joins: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk)
- # [10:44] * Joins: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net)
- # [10:44] * Joins: hoodow (~hoodow@pdpc/supporter/active/hoodow)
- # [10:44] * Joins: yutak (~yutak@2401:fa00:4:1000:baac:6fff:fe99:adfb)
- # [10:44] * Joins: beverloo (beverloo@nat/google/x-mtquqrmpjilhrxnn)
- # [10:44] * Joins: annevk5 (u2483@gateway/web/irccloud.com/x-ubgbswcfqbkuybwx)
- # [10:44] * Joins: payman (~payman@pat.se.opera.com)
- # [10:44] * Joins: takkaria (~takkaria@isparp.co.uk)
- # [10:44] * Joins: gsnedders (~gsnedders@204.232.194.186)
- # [10:44] * Joins: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan)
- # [10:44] * Joins: romainhuet (u2533@gateway/web/irccloud.com/x-kgagqzjfsstfntxa)
- # [10:44] * Joins: slightlyoff (u1768@gateway/web/irccloud.com/x-leutuazhgomfkzqq)
- # [10:44] * Joins: tmzt_ (~tmzt@adsl-69-208-11-149.dsl.akrnoh.ameritech.net)
- # [10:44] * Joins: Marcosc (~Adium@cm-84.208.50.132.getinternet.no)
- # [10:44] * Joins: twisted` (~twisted@205.189.73.45)
- # [10:44] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [10:44] * Joins: benschwarz (u2121@gateway/web/irccloud.com/x-arvwvlkaudklrkjq)
- # [10:44] * Joins: jmb (~jmb@mail.parsifal.org.uk)
- # [10:44] * Joins: webben (~benjamin@173-203-84-17.static.cloud-ips.com)
- # [10:44] * Joins: gnarf (~gnarf@unaffiliated/gnarf)
- # [10:44] * Joins: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj)
- # [10:44] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [10:44] * Joins: riven (~riven@pdpc/supporter/professional/riven)
- # [10:44] * Joins: Scorchin (u1242@gateway/web/irccloud.com/x-xrtewibgbvjyvkdu)
- # [10:44] * Joins: pererik (~pe@unaffiliated/pererik)
- # [10:44] * Joins: Workshiva (~Dashiva@74.125.57.33)
- # [10:44] * Joins: Hixie (~ianh@trivini.no)
- # [10:44] * Joins: reggna (~reggna@godis.olf.sgsnet.se)
- # [10:44] * Joins: Adawerk``` (~mven__@169.241.49.57)
- # [10:44] * Joins: arv (arv@nat/google/x-goylsyboktjbhvwk)
- # [10:44] * Joins: robman (~robman@eth4584.nsw.adsl.internode.on.net)
- # [10:44] * Joins: hamaji (~hamaji@220.109.219.244)
- # [10:44] * Joins: scheib1 (scheib@nat/google/x-qoykoaairoiucoej)
- # [10:44] * Joins: inimino (~inimino@boshi.inimino.org)
- # [10:44] * Joins: Jedi_ (~Jedi@jedi.org)
- # [10:44] * Joins: nigelb (~nigel@ubuntu/member/nigelb)
- # [10:44] * Joins: salavas (~salavas@c83-248-102-83.bredband.comhem.se)
- # [10:44] * Joins: AryehGregor (~Simetrica@mediawiki/simetrical)
- # [10:45] * Joins: asmodai_ (asmodai@h61194.upc-h.chello.nl)
- # [10:45] * Joins: Necrathex (~nectop@82-170-160-25.ip.telfort.nl)
- # [10:45] * Joins: esc_ (~esc-ape@84.inst-3.ufg.ac.at)
- # [10:45] * Joins: Martijnc (~Martijn@d54C02C64.access.telenet.be)
- # [10:45] * Joins: tomaw (tom@freenode/staff/tomaw)
- # [10:45] * Joins: manu-db (~msporny@digitalbazaar.com)
- # [10:45] * Joins: [tm] (~MikeSmith@sideshowbarker.net)
- # [10:45] * Joins: PrgmrBill (~PrgmrBill@unaffiliated/prgmrbill)
- # [10:45] * Joins: tellnes (~KrooniX@ec2-79-125-26-36.eu-west-1.compute.amazonaws.com)
- # [10:45] * Joins: moo-_- (~quassel@herd37.twinapex.fi)
- # [10:45] * Joins: broquaint (a52b469f90@78.47.79.137)
- # [10:45] * Joins: wilhelm (~wilhelm@trivini.no)
- # [10:45] * Joins: ben_alman_ (~ben_alman@web126.webfaction.com)
- # [10:45] * Joins: Peter- (~peter@nishino.lvp-media.com)
- # [10:45] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [10:45] * Joins: ZombieLoffe (ZombieL@unaffiliated/zombieloffe)
- # [10:45] * Joins: ParadoX- (parad0x@hades.spexhost.com)
- # [10:45] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [10:45] * Joins: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net)
- # [10:45] * Joins: mokush (~quassel@188.24.43.235)
- # [10:45] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [10:45] * Joins: nessy (~Adium@124-168-52-143.dyn.iinet.net.au)
- # [10:45] * Joins: nattokirai (~nattokira@rtr.mozilla.or.jp)
- # [10:45] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [10:45] * Joins: kennyluck (~kennyluck@114-43-112-94.dynamic.hinet.net)
- # [10:45] * Joins: danja_ (~danny@host234-8-dynamic.8-79-r.retail.telecomitalia.it)
- # [10:45] * Joins: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com)
- # [10:45] * Joins: manu` (~chatzilla@pool-74-107-167-56.ronkva.east.verizon.net)
- # [10:45] * Joins: ryanseddon (u1832@gateway/web/irccloud.com/x-qfrnddvmbqetzdot)
- # [10:45] * Joins: jeremyselier (u2513@gateway/web/irccloud.com/x-gdnjimdbytlytqgo)
- # [10:45] * Joins: bzed (~bzed@devel.recluse.de)
- # [10:45] * Joins: bezoar (~Adium@c-24-143-67-135.customer.broadstripe.net)
- # [10:45] * Joins: TabAtkins (tabatkins@nat/google/x-nsvkozmxwfrmlkjv)
- # [10:45] * Joins: crash\ (bouncer@lubyte.de)
- # [10:45] * Joins: jdong_ (~quassel@222.126.155.250)
- # [10:45] * Joins: CvP (~CvP@123.49.23.215)
- # [10:45] * Joins: nunnun_away (~nunnun@irc.v6.nunnun.jp)
- # [10:45] * Joins: Phae (u455@gateway/web/irccloud.com/x-zcodyeilyiavxiuw)
- # [10:45] * Joins: benjoffe_ (~benjoffe_@CPE-203-51-100-177.lns10.cht.bigpond.net.au)
- # [10:46] * Quits: Dashimon (Dashiva@84-72-45-52.dclient.hispeed.ch) (Changing host)
- # [10:46] * Joins: Dashimon (Dashiva@wikia/Dashiva)
- # [10:46] * Dashimon is now known as Dashiva
- # [10:46] * Quits: rniwa (~rniwa@216.239.45.130) (Quit: rniwa)
- # [10:46] * Joins: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [10:47] <annevk> oh missed the earlier conversation somehow
- # [10:49] * nunnun_away is now known as nunnun
- # [10:51] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [10:54] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [10:55] * Quits: nattokirai (~nattokira@rtr.mozilla.or.jp) (Quit: nattokirai)
- # [10:58] * Quits: divya (~divyam@c-24-18-47-160.hsd1.wa.comcast.net) (Remote host closed the connection)
- # [10:58] * Quits: doublec (~doublec@cd.pn) (Changing host)
- # [10:58] * Joins: doublec (~doublec@unaffiliated/doublec)
- # [11:00] * hasather5 is now known as hasather
- # [11:03] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [11:03] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [11:05] * Quits: yuuki (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp) (Quit: Leaving...)
- # [11:05] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
- # [11:06] * nunnun is now known as nunnun_away
- # [11:08] * Quits: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp) (Quit: Leaving...)
- # [11:10] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [11:10] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [11:11] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [11:11] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [11:13] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [11:13] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [11:13] * rtuin_ is now known as rtuin
- # [11:15] * Quits: Obvious (tachikoma@188.226.74.2) (Read error: Connection reset by peer)
- # [11:16] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:88e2:30fe:334c:cccb)
- # [11:16] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [11:17] * Joins: Obvious (tachikoma@188.226.74.2)
- # [11:20] <hsivonen> annevk: do you have any guestimate when you'll get to the XHR2 text/html charset feedback?
- # [11:21] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [11:21] * benjoffe_ is now known as benjoffe
- # [11:22] * Joins: MikeSmith_ (~MikeSmith@EM114-48-73-88.pool.e-mobile.ne.jp)
- # [11:22] * Joins: Rik`__ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [11:22] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [11:24] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [11:24] * Quits: Rik`__ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [11:24] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:88e2:30fe:334c:cccb) (Ping timeout: 244 seconds)
- # [11:25] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [11:25] * Quits: MikeSmith (~MikeSmith@EM1-112-116-139.pool.e-mobile.ne.jp) (Ping timeout: 260 seconds)
- # [11:25] * MikeSmith_ is now known as MikeSmith
- # [11:25] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:f863:668e:5281:623f)
- # [11:26] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Ping timeout: 260 seconds)
- # [11:26] <annevk> hsivonen, I wanted to address it by using the parser hooks Hixie gave
- # [11:26] <annevk> hsivonen, Hixie will be creating*
- # [11:27] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [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
- # [11:28] <annevk> hsivonen, and if chunked-text gets standardized just force UTF-8 I guess
- # [11:28] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
- # [11:28] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [11:28] <annevk> (there's no relation to Document there so no reason to make things difficult)
- # [11:29] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [11:30] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:f863:668e:5281:623f) (Ping timeout: 240 seconds)
- # [11:30] * Joins: mpt (~mpt@nat/canonical/x-gasmfojwnhaoynro)
- # [11:30] * Quits: mpt (~mpt@nat/canonical/x-gasmfojwnhaoynro) (Changing host)
- # [11:30] * Joins: mpt (~mpt@canonical/mpt)
- # [11:34] <hsivonen> annevk: Works for me. Let's hope there isn't much text/html responseText comet usage in the wild...
- # [11:35] <hsivonen> annevk: so the "text" mode would require running <meta> prescan although the HTML parser wouldn't otherwise be involved?
- # [11:35] <hsivonen> hmm. smaug and sicking aren't here now. :-(
- # [11:35] <annevk> I don't want to make "text" magic
- # [11:36] <annevk> responseText should work the same for empty string responseType and "text"
- # [11:36] <hsivonen> annevk: ok
- # [11:36] <hsivonen> smaug wanted "text" and chunked text to work the same
- # [11:37] <hsivonen> but we can't have all these properties
- # [11:38] <annevk> don't really see why chunked text would do special things for e.g. XML
- # [11:39] <annevk> but then I'm not sure we want chunked text in the first place
- # [11:40] * Quits: mokush (~quassel@188.24.43.235) (Remote host closed the connection)
- # [11:46] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [12:00] * Quits: agektmr (~Adium@220.109.219.244) (Quit: Leaving.)
- # [12:05] * Joins: rimantas (~rimliu@93.93.57.193)
- # [12:06] * Joins: richt (~richt@guest.opera.com)
- # [12:09] * Quits: macpherson (macpherson@nat/google/x-qreawnzwurjnvscj) (Ping timeout: 240 seconds)
- # [12:11] * Joins: richt_ (~richt@guest.opera.com)
- # [12:12] * Quits: richt (~richt@guest.opera.com) (Read error: No route to host)
- # [12:13] * Joins: macpherson (macpherson@nat/google/x-tihaltedhebscwuy)
- # [12:14] * Quits: cygri (~cygri@188.201.86.194) (Ping timeout: 245 seconds)
- # [12:15] * Joins: Lachy (~Lachy@pat-tdc.opera.com)
- # [12:28] <zcorpan> annevk: in xhr2, you should say in the note around "network error" that it includes "CORS check failed"
- # [12:29] <zcorpan> annevk: i had to read the CORS spec to figure out what should happen in xhr2 when the cors check fails
- # [12:31] <annevk> I don't follow
- # [12:31] <annevk> For XHR you need to know "cross-origin request status"
- # [12:31] <annevk> which is defined by CORS
- # [12:31] <annevk> so yes, you need to read CORS
- # [12:32] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Remote host closed the connection)
- # [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
- # [12:34] <zcorpan> and know what behavior will kick in when the CORS check fails
- # [12:35] <zcorpan> right now it appears to be undefined (but it's not, the Note is just wrong)
- # [12:36] <zcorpan> (uh, maybe i was reading an unrelated Note)
- # [12:37] <zcorpan> network error
- # [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.
- # [12:37] <zcorpan> says the cors spec
- # [12:37] <zcorpan> but network error includes failed CORS check
- # [12:38] * Joins: richt (~richt@guest.opera.com)
- # [12:38] * Quits: richt_ (~richt@guest.opera.com) (Read error: Connection reset by peer)
- # [12:39] <hsivonen> I'm all for mentioning CORS there, but will doing so deadlock both specs on the REC track?
- # [12:40] <hsivonen> (I'd probable prefer specs that tell the whole truth over specs that advance on the REC track)
- # [12:41] * Quits: richt (~richt@guest.opera.com) (Remote host closed the connection)
- # [12:41] <zcorpan> the note was in the cors spec
- # [12:43] <jgraham> hsivonen: The solution is to not care about the rec track
- # [12:46] * Joins: zdobersek (~zan@cpe-90-157-128-24.dynamic.amis.net)
- # [12:47] * Quits: jdong_ (~quassel@222.126.155.250) (Remote host closed the connection)
- # [12:52] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [12:55] <annevk> I'm even more confused now
- # [12:55] <hsivonen> maybe I'm confused
- # [12:56] <annevk> zcorpan, so in XMLHttpRequest you are reading the "same-origin request event rules" and expect they apply to CORS scenarios?
- # [12:56] * Joins: Rik` (~Rik`@mozilla-paris-253-98.cnt.nerim.net)
- # [12:57] * Quits: kinetik (~kinetik@121.98.132.55) (Ping timeout: 258 seconds)
- # [12:57] <zcorpan> annevk: no i realized that was bogus :)
- # [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"
- # [12:57] * Joins: kinetik (~kinetik@121.98.132.55)
- # [12:58] <zcorpan> annevk: which doesn't say that it includes CORS check fail
- # [12:58] <zcorpan> but it does
- # [12:58] * Joins: stefan-_ (~music@swhpet3041.uni-trier.de)
- # [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"?
- # [12:59] <zcorpan> yeah
- # [12:59] <annevk> I would agree that should probably include "the resource cannot be shared"
- # [13:05] <annevk> zcorpan, done
- # [13:08] <zcorpan> annevk: thanks!
- # [13:17] * Joins: bga_ (~bga@ppp78-37-221-108.pppoe.avangarddsl.ru)
- # [13:26] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: Freedom - to walk free and own no superior.)
- # [13:40] * bga_ is now known as bga_|away
- # [13:54] * Quits: danja_ (~danny@host234-8-dynamic.8-79-r.retail.telecomitalia.it) (Quit: gorn)
- # [14:02] * Joins: hij1nx (~hij1nx@cpe-98-14-168-178.nyc.res.rr.com)
- # [14:14] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 248 seconds)
- # [14:44] * Joins: Ms2ger (~Ms2ger@91.181.242.11)
- # [14:47] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [14:49] * Quits: zdobersek (~zan@cpe-90-157-128-24.dynamic.amis.net) (Quit: Leaving.)
- # [14:50] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [14:52] * Joins: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
- # [14:58] * Quits: silverroots (~silverroo@144.187.148.25) (Ping timeout: 252 seconds)
- # [15:00] * Joins: mpt (~mpt@canonical/mpt)
- # [15:04] * Quits: roc (~chatzilla@121.98.230.221) (Ping timeout: 252 seconds)
- # [15:06] * Joins: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl)
- # [15:09] * bga_|away is now known as bga_
- # [15:17] * Quits: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net) (Quit: tomasf)
- # [15:18] * Quits: nessy (~Adium@124-168-52-143.dyn.iinet.net.au) (Quit: Leaving.)
- # [15:19] * Quits: CvP (~CvP@123.49.23.215) (Quit: [ UPP ] > all)
- # [15:31] <benjoffe> I missed the whole discussion on why '$' was chosen as the subject modifier
- # [15:32] <benjoffe> but "E:has-descendent(selector)" seems much more fitting to the existing pattern
- # [15:33] <benjoffe> is there a strong reason to choose $ over that pattern?
- # [15:33] * Joins: davidb (~davidb@66.207.208.98)
- # [15:35] <zcorpan> specificity?
- # [15:35] <zcorpan> shorter?
- # [15:36] <benjoffe> could be E:has(selector)
- # [15:38] <zcorpan> still different specificity
- # [15:38] <jgraham> The people who invented selectors hate readability?
- # [15:38] * zcorpan wasn't part of the discussion though
- # [15:39] <zcorpan> though there's :matches and :not already
- # [15:39] <zcorpan> so yeah
- # [15:40] <annevk> no idea
- # [15:41] * Quits: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se) (Quit: zcorpan)
- # [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.
- # [15:43] * Joins: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [15:44] * Joins: myakura (~myakura@FL1-203-136-181-177.tky.mesh.ad.jp)
- # [15:44] * Joins: MacTed (~Thud@63.119.36.36)
- # [15:46] * nunnun_away is now known as nunnun
- # [15:47] * Quits: Ankheg (~Ankheg@91.224.77.4) (Read error: Connection reset by peer)
- # [15:50] <annevk> bga_, I think so, but I'm not sure what the ETA is
- # [15:54] <benjoffe> sounds like an extension could be made for it, might require ugly off screen textarea hacks though
- # [15:54] * nunnun is now known as nunnun_away
- # [15:54] * nunnun_away is now known as nunnun
- # [16:00] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [16:02] <annevk> added appendChild("trololol") and friends to the DOM
- # [16:03] <annevk> taking bets on whose first to implement and ship
- # [16:04] <Ms2ger> Not us
- # [16:05] <Ms2ger> We don't support overloading yet :(
- # [16:05] * Joins: roc (~chatzilla@121.98.230.221)
- # [16:05] <bga_> annevk appendChild('<pre>1</pre>')?
- # [16:06] <annevk> bga_, it's not HTML
- # [16:06] <bga_> textnode?
- # [16:06] <annevk> yes
- # [16:06] <Ms2ger> Right
- # [16:07] <Ms2ger> Also, hi annevk
- # [16:07] <annevk> wb Ms2ger
- # [16:07] <bga_> annevk i can make monkey patch which do that :)
- # [16:07] <Ms2ger> Do it :)
- # [16:08] <bga_> sec
- # [16:09] * Quits: danbri (~danbri@ip176-48-210-87.adsl2.static.versatel.nl) (Remote host closed the connection)
- # [16:09] <annevk> stuff like http://annevankesteren.nl/2005/05/greasemonkey does not count ;)
- # [16:09] * Joins: tomasf (~tomasf@host-90-235-85-67.mobileonline.telia.com)
- # [16:10] <Ms2ger> annevk, isn't that how Opera passed Acid3? ;)
- # [16:10] * Quits: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se) (Remote host closed the connection)
- # [16:11] * Joins: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [16:12] * Quits: roc (~chatzilla@121.98.230.221) (Ping timeout: 240 seconds)
- # [16:13] * nunnun is now known as nunnun_away
- # [16:15] <bga_> annevk http://pastie.org/2617153
- # [16:15] * Quits: Necrathex (~nectop@82-170-160-25.ip.telfort.nl) (Quit: Necrathex)
- # [16:15] * Quits: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [16:15] * Joins: CvP (~CvP@123.49.21.175)
- # [16:16] * Quits: woef (~woef@91.183.84.141) (Ping timeout: 240 seconds)
- # [16:16] <annevk> stuff like that works?
- # [16:16] <annevk> crazy
- # [16:16] <Ms2ger> Sure does
- # [16:18] <Ms2ger> # [15:27] <annevk5> where is ms2ger?
- # [16:18] <Ms2ger> Anything in particular you needed me for?
- # [16:18] * Joins: danbri (~danbri@ip176-48-210-87.adsl2.static.versatel.nl)
- # [16:20] <annevk> prolly to take a look at the exception stuff
- # [16:21] <Ms2ger> Mm
- # [16:21] <Ms2ger> My opinion on anything related to exceptions is "meh", fwiw
- # [16:22] <annevk> fair enough
- # [16:22] <annevk> wonder why smaug hasn't landed your EventException patch
- # [16:22] <annevk> kind of lame
- # [16:25] <annevk> anyone know when heycam is going to be back?
- # [16:25] <annevk> I would rather not define how to handle some arbitrary JS Object myself
- # [16:27] <Ms2ger> <heycam> just dropping in to say I'm on vacation for the next 4 weeks, see you all later
- # [16:27] <Ms2ger> From the ninth
- # [16:30] <Ms2ger> Hixie, any reason you didn't close http://www.w3.org/Bugs/Public/show_bug.cgi?id=13030?
- # [16:30] <annevk> thanks
- # [16:31] * Joins: jdong_bot_ (~jdong_bot@117.79.233.135)
- # [16:32] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [16:35] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
- # [16:39] * bga_ is now known as bga_|away
- # [16:42] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
- # [16:42] * Quits: tomasf (~tomasf@host-90-235-85-67.mobileonline.telia.com) (Read error: Connection reset by peer)
- # [16:45] * Joins: Timz (~Adium@86.89.174.199)
- # [16:46] * Joins: tomasf (~tomasf@host-90-235-85-67.mobileonline.telia.com)
- # [16:53] * Joins: erlehmann (~erlehmann@89.204.137.81)
- # [16:58] * Joins: saba (~foo@unaffiliated/saba)
- # [17:01] * bga_|away is now known as bga_
- # [17:02] * Quits: stefan-_ (~music@swhpet3041.uni-trier.de) (Ping timeout: 248 seconds)
- # [17:06] * Quits: erlehmann (~erlehmann@89.204.137.81) (Quit: Ex-Chat)
- # [17:08] * Quits: rtuin (~rtuin@213.125.175.250) (Quit: Leaving)
- # [17:08] * bga_ is now known as bga_|away
- # [17:12] * Quits: rimantas (~rimliu@93.93.57.193) (Quit: Leaving)
- # [17:15] * Joins: sicking (~chatzilla@34.198.247.173.mozilla-sfo1.web-pass.com)
- # [17:17] * Quits: virtuelv (~virtuelv_@pat-tdc.opera.com) (Quit: Ex-Chat)
- # [17:19] * Quits: zcorpan (~zcorpan@c-df9be355.410-6-64736c14.cust.bredbandsbolaget.se) (Quit: zcorpan)
- # [17:24] * Quits: MikeSmith (~MikeSmith@EM114-48-73-88.pool.e-mobile.ne.jp) (Ping timeout: 252 seconds)
- # [17:24] * Quits: CvP (~CvP@123.49.21.175) (Quit: [ UPP ] > all)
- # [17:26] * bga_|away is now known as bga_
- # [17:29] * Joins: MikeSmith (~MikeSmith@EM111-191-71-33.pool.e-mobile.ne.jp)
- # [17:32] <Hixie> Ms2ger: just a mistake, i think
- # [17:32] <Hixie> annevk: if there are hooks you need sooner rather than later, please mark the relevant bugs critical
- # [17:33] * Joins: CvP (~CvP@123.49.21.175)
- # [17:33] * Quits: bga_ (~bga@ppp78-37-221-108.pppoe.avangarddsl.ru) (Quit: bga_)
- # [17:34] <annevk> thanks, guess I'll do that to help hsivonen out
- # [17:36] * Joins: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl)
- # [17:37] * Quits: jdong_bot_ (~jdong_bot@117.79.233.135) (Remote host closed the connection)
- # [17:38] * Joins: rillian_ (~rillian@150.183.119.66.static.metrobridge.net)
- # [17:42] * Quits: tomasf (~tomasf@host-90-235-85-67.mobileonline.telia.com) (Quit: tomasf)
- # [17:48] * Quits: shetech (~shetech@c-76-126-167-49.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [17:51] * Quits: david_carlisle (~chatzilla@86.188.197.189) (Ping timeout: 240 seconds)
- # [17:53] * Joins: david_carlisle (~chatzilla@86.188.197.189)
- # [17:57] * Quits: CvP (~CvP@123.49.21.175) (Quit: [ UPP ] > all)
- # [17:59] * Quits: david_carlisle (~chatzilla@86.188.197.189) (Ping timeout: 252 seconds)
- # [17:59] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
- # [18:01] * Quits: hij1nx (~hij1nx@cpe-98-14-168-178.nyc.res.rr.com) (Quit: hij1nx)
- # [18:07] * Quits: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Read error: Connection reset by peer)
- # [18:20] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
- # [18:25] * Joins: shetech (~shetech@12.234.36.130)
- # [18:26] * Quits: shetech (~shetech@12.234.36.130) (Client Quit)
- # [18:32] * Quits: astearns (~anonymous@c-50-132-9-217.hsd1.wa.comcast.net) (Quit: astearns)
- # [18:33] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [18:35] * Joins: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [18:35] * Joins: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
- # [18:35] * Quits: ezoe (~ezoe@203-140-91-133f1.kyt1.eonet.ne.jp) (Ping timeout: 260 seconds)
- # [18:36] * Joins: cygri (~cygri@089-101-248111.ntlworld.ie)
- # [18:41] * Joins: ap (~ap@2620:149:4:1b01:3061:1f69:f5db:c750)
- # [18:42] * Quits: Lachy (~Lachy@pat-tdc.opera.com) (Quit: Computer has gone to sleep.)
- # [18:43] * Joins: boblet (u1921@gateway/web/irccloud.com/x-bakzyvgnptbetxxu)
- # [18:51] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
- # [18:51] * Quits: Stikk (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 260 seconds)
- # [18:56] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Client Quit)
- # [18:57] * Joins: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [19:01] * Joins: astearns (~anonymous@192.150.22.5)
- # [19:02] * Quits: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Ping timeout: 248 seconds)
- # [19:02] * Joins: CvP (~CvP@123.49.22.81)
- # [19:04] * Joins: Necrathex (~nectop@86.89.160.77)
- # [19:04] * Joins: dbaron (~dbaron@173.228.28.227)
- # [19:05] * Joins: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
- # [19:08] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 258 seconds)
- # [19:11] * Joins: rniwa (~yaaic@2600:1010:b005:34c6:0:30:5e32:1601)
- # [19:14] <boblet> does anyone have a good reason why <u> is more appropriate than <mark> for indicating spelling errors, other than default rendering?
- # [19:16] * Joins: ezoe (~ezoe@61-205-125-163f1.kyt1.eonet.ne.jp)
- # [19:18] * Joins: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [19:19] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (Ping timeout: 240 seconds)
- # [19:23] <Hixie> boblet: it's the same reason why <dfn> is more appropriate than <cite> for indicating definitions
- # [19:25] * Quits: cygri (~cygri@089-101-248111.ntlworld.ie) (Quit: cygri)
- # [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
- # [19:25] <boblet> (that case = spell checker)
- # [19:25] <Hixie> boblet: <mark> is as appropriate for spelling mistakes as <cite> is for definitions :-)
- # [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"
- # [19:26] <Hixie> boblet: unless you're specifically talking about the spelling mistakes, that definition doesn't have anything to do with spelling
- # [19:28] <boblet> Hixie: for me highlighting and annotating were closer, but I can see <u> is more appropriate
- # [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?
- # [19:29] <Hixie> sure
- # [19:30] <boblet> that usage isn’t so popular, eg. Wikipedia has an aside, but I’ve seen it used for Japanese names before
- # [19:30] <Hixie> an aside?
- # [19:31] <boblet> well, a note above the article’s introduction stating the name order and which word is the family name
- # [19:31] * Joins: pabloxpablo (~pablo@200.69.198.5)
- # [19:31] <Hixie> ah
- # [19:31] <Hixie> weird
- # [19:32] <boblet> eg: http://en.wikipedia.org/wiki/Mao starts with “This is a Chinese name; the family name is Mao”
- # [19:33] * Quits: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [19:33] <boblet> well, capitalising etc could be perceived as western imperialism as western names don’t get that treatment :)
- # [19:33] * Joins: bga_ (~bga@ppp78-37-219-231.pppoe.avangarddsl.ru)
- # [19:34] * Quits: bga_ (~bga@ppp78-37-219-231.pppoe.avangarddsl.ru) (Client Quit)
- # [19:35] * Joins: bga_ (~bga@ppp78-37-219-231.pppoe.avangarddsl.ru)
- # [19:36] * Quits: Neiluj (~Julien@195.200.175.214) (Quit: Neiluj)
- # [19:38] * Joins: _bga (~bga@95-55-11-219.dynamic.avangarddsl.ru)
- # [19:38] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
- # [19:39] * Quits: bga_ (~bga@ppp78-37-219-231.pppoe.avangarddsl.ru) (Ping timeout: 248 seconds)
- # [19:41] * Parts: pabloxpablo (~pablo@200.69.198.5)
- # [19:42] <Hixie> boblet: oh, well, no markup is necessary in the case of the wikipedia convention
- # [19:42] <Hixie> boblet: certainly i wouldn't expect <u> to be used. <aside> maybe.
- # [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)
- # [19:46] * Quits: ZombieLoffe (ZombieL@unaffiliated/zombieloffe)
- # [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.
- # [19:47] <Hixie> boblet: i.e. where the annotation's meaning is implied by context
- # [19:48] <boblet> Hixie: yup :) just checking I understand before publishing. playing it safe after getting a little burned on <footer> in <blockquote> :D
- # [19:49] <boblet> didn’t know about proper name marks either — interesting
- # [19:50] <TabAtkins> 521042
- # [19:50] <Hixie> boblet: heh, understood!
- # [19:51] <TabAtkins> Dammit, focus'd the wrong window.
- # [19:51] <Hixie> TabAtkins: 521043?
- # [19:51] <TabAtkins> Well, that OTP expires in a few seconds.
- # [19:51] <Hixie> 892729!
- # [19:51] <boblet> 90210!!
- # [19:51] <Hixie> -43.4i+2!
- # [19:51] <TabAtkins> [1,2,3,4]!
- # [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)?
- # [19:53] <TabAtkins> I have no idea. The ordering is insignificant, though.
- # [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
- # [19:54] <boblet> might email www-style about it…
- # [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).
- # [19:54] <Ms2ger> TabAtkins, is the ordering still insignificant wrt CSSOM serialization?
- # [19:54] <TabAtkins> It's explained in 2.1, though.
- # [19:54] <Ms2ger> TabAtkins, please do :)
- # [19:55] * Joins: miketaylr (~miketaylr@24.42.93.245)
- # [19:55] <boblet> everything in TR? [ducks]
- # [19:55] <TabAtkins> Ms2ger: Nobody follows CSSOM serialization so far.
- # [19:55] <TabAtkins> Or at least, that part of it.
- # [19:55] <Ms2ger> boblet, yes, please
- # [19:56] <boblet> Ms2ger: kk
- # [19:56] <Ms2ger> TabAtkins, nobody follows any spec, as a first approximation ;)
- # [19:56] * Joins: jwalden (~waldo@2620:101:8003:200:221:6aff:fe6e:d10)
- # [19:57] * Parts: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
- # [19:57] <TabAtkins> Ms2ger: "Doesn't exactly match every single detail" and "completely ignores" are pretty different.
- # [19:57] * Quits: jamesr (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr)
- # [19:57] <Hixie> TabAtkins: the ordering isn't insignificant, it impacts serialisation
- # [19:58] <TabAtkins> Hixie: See above conversation.
- # [19:58] <Ms2ger> Hixie, beat you to it :)
- # [19:58] <Hixie> i was still reading :-)
- # [19:58] <Hixie> TabAtkins: they certainly won't implement it while the order is treated as insignificant in the specs :-)
- # [19:58] <Hixie> at least not interoperably :-)
- # [19:58] <TabAtkins> ^_^
- # [20:00] * Joins: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr)
- # [20:00] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
- # [20:01] * Quits: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Read error: Connection reset by peer)
- # [20:02] * Joins: smaug____ (~chatzilla@YYKMCXLVI.gprs.sl-laajakaista.fi)
- # [20:03] <Hixie> any opinions on http://www.w3.org/Bugs/Public/show_bug.cgi?id=13174#c2 ?
- # [20:03] <Hixie> it seems a bit dubious to me, but i can't quite work out what i'd suggest instead
- # [20:04] <TabAtkins> The example in #7 seems reasonable.
- # [20:07] * Joins: KillerX_ (~anant@34.198.247.173.mozilla-sfo1.web-pass.com)
- # [20:07] <Hixie> annevk: you around?
- # [20:07] <Hixie> #7 is the real-world instance of #2
- # [20:07] <TabAtkins> Yes, I know.
- # [20:07] <Hixie> my concern is that people will start putting all kinds of shit in <th>, like <hx>, <article>s, etc
- # [20:08] <Hixie> but i agree that that specific example seems like the least bad way of marking up that semantic
- # [20:08] <Hixie> i guess i could explicitly only allow non-sectioning, non-heading content or something
- # [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.
- # [20:08] * Quits: Rik` (~Rik`@mozilla-paris-253-98.cnt.nerim.net) (Remote host closed the connection)
- # [20:08] * Joins: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl)
- # [20:08] <Hixie> yeah, maybe being explicit in an example is enough?
- # [20:11] * Quits: Timz (~Adium@86.89.174.199) (Quit: Leaving.)
- # [20:13] <Hixie> annevk: see webapps
- # [20:18] * _bga is now known as bga_|away
- # [20:18] * bga_|away is now known as bga_
- # [20:22] * bga_ is now known as bga_|away
- # [20:22] * Quits: myakura (~myakura@FL1-203-136-181-177.tky.mesh.ad.jp) (Remote host closed the connection)
- # [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)?
- # [20:36] <danbeam> (or anybody else that's well versed with this spec.)
- # [20:36] <Ms2ger> danbeam, give me a link to the whatwg version and I can try :)
- # [20:37] <danbeam> Ms2ger: http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#drag-and-drop-processing-model
- # [20:38] <danbeam> Ms2ger: (second ordered list, 4.1-2)
- # [20:39] <danbeam> Ms2ger: my question is simply, "If there will be a 'drop' event, should it *have* to complete before a 'dragend'?"
- # [20:41] <Ms2ger> I think so, yes
- # [20:41] <danbeam> Ms2ger: it sure seems to be implied that it's a "yes"
- # [20:42] * Quits: rniwa (~yaaic@2600:1010:b005:34c6:0:30:5e32:1601) (Ping timeout: 240 seconds)
- # [20:42] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [20:42] * Joins: esc__ (~esc-ape@72.inst-3.ufg.ac.at)
- # [20:44] * Joins: jamesr (jamesr@nat/google/x-bzeaknsmalfyggxy)
- # [20:46] * Quits: esc_ (~esc-ape@84.inst-3.ufg.ac.at) (Ping timeout: 260 seconds)
- # [20:47] * Quits: dbaron (~dbaron@173.228.28.227) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [20:47] * Quits: rillian_ (~rillian@150.183.119.66.static.metrobridge.net) (Read error: Connection reset by peer)
- # [20:48] * Joins: rillian_ (~rillian@150.183.119.66.static.metrobridge.net)
- # [20:49] * Joins: rniwa (~rniwa@airbears-136-152-22-156.AirBears.Berkeley.EDU)
- # [20:51] <Hixie> danbeam: what do you mean by "complete"?
- # [20:52] <danbeam> Hixie: should a "drop" event fire and be synchronously executed and completed before a "dragend" event is fired?
- # [20:53] <TabAtkins> annevk: I can't find the CSSValue interface defined anywhere in CSSOM. Am I missing something?
- # [20:53] * bga_|away is now known as bga_
- # [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
- # [20:56] <TabAtkins> Ms2ger: Well, 6.6.4 and 6.6.5 have things specifically returning a CSSValue.
- # [20:57] <Ms2ger> So they do
- # [20:58] <Hixie> danbeam: unless one of the event handlers dispatches its own event, event dispatch is always entirely synchronous within a task
- # [20:58] <TabAtkins> annevk: Maybe you mean CSSComponentValue there, and for the other types like CSSStringComponentValue to inherit from CSSComponentValue?
- # [20:58] <Ms2ger> I assume it'll be a superclass, then
- # [20:59] <TabAtkins> Yeah, for now I'm just going to ape what CSSOM is doing.
- # [21:05] <danbeam> Hixie: yes, that was my understanding as well, but check your PM
- # [21:06] <Hixie> yeah i looked at that
- # [21:06] <danbeam> Hixie: ok
- # [21:08] <danbeam> Ms2ger, Hixie: thank you for your help
- # [21:08] <Ms2ger> Np
- # [21:11] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [21:13] * Joins: dbaron (~dbaron@nat/mozilla/x-eluoyxjjpjoduokj)
- # [21:17] * annevk wonders what sicking is on about
- # [21:18] <annevk> TabAtkins, what is the context you are talking about?
- # [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)
- # [21:19] <annevk> TabAtkins, basically a given property will return an object that implements several CSS value related interfaces
- # [21:19] <annevk> Hixie, thanks for the email, hopefully hsivonen will look into it
- # [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?
- # [21:33] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 276 seconds)
- # [21:36] * Joins: _bga (~bga@95-55-11-219.dynamic.avangarddsl.ru)
- # [21:37] * Quits: saba (~foo@unaffiliated/saba) (Quit: leaving)
- # [21:39] * Quits: bga_ (~bga@95-55-11-219.dynamic.avangarddsl.ru) (Ping timeout: 260 seconds)
- # [21:41] <rniwa> AryehGregor: if you're specing selection behavior, please make sure to spec selectstart event as well
- # [21:41] <rniwa> AryehGregor: in particular, bugs like https://bugs.webkit.org/show_bug.cgi?id=66948 are interesting to follow
- # [21:43] * Quits: GlitchMr (~glitchmr@178-36-185-64.adsl.inetia.pl) (Quit: nom: die double die triple die)
- # [21:43] <annevk> TabAtkins, no, all properties accepting <variable> would simply implement CSSVariableComponentValue as well
- # [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
- # [21:44] <TabAtkins> Yes, but CSSVariableComponentValue itself has a name and a value.
- # [21:44] <annevk> The problem is I guess that it's a) difficult and b) not implemented yet
- # [21:45] <annevk> TabAtkins, ah yeah, you would have to name them variableName and variableValue
- # [21:45] <TabAtkins> Ah, kk.
- # [21:45] <annevk> sweet
- # [21:45] <annevk> gonna get some cocktails now :)
- # [21:45] <TabAtkins> I'll ping you for review on this stuff later.
- # [21:46] <annevk> great
- # [21:46] <sicking> annevk: what do you mean?
- # [21:46] <TabAtkins> Drink a cocktail for me!
- # [21:46] * Joins: dave_levin (dave_levin@nat/google/x-qdmmufldaleyfzcl)
- # [21:47] * sicking heads out to lunch
- # [21:49] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [21:55] * Joins: weinig (~weinig@2620:149:4:1b01:a996:dfc6:e30e:e5c)
- # [21:58] <Ms2ger> http://lists.w3.org/Archives/Member/w3c-css-wg/2011JulSep/0297.html
- # [21:58] <Ms2ger> For your enjoyment
- # [21:59] <TabAtkins> That's so last week, Ms2ger.
- # [21:59] <Ms2ger> No comment
- # [21:59] <TabAtkins> Btw, the correct answer is "Make the change you want to the template without asking anyone, because everyone's crazy."
- # [22:00] <TabAtkins> My mistake there.
- # [22:00] <Ms2ger> "everyone's crazy."
- # [22:00] <Ms2ger> I could have told you that :)
- # [22:02] <TabAtkins> If I define a getter in idl, do I just define the meaning of it in prose?
- # [22:02] <Ms2ger> Yes
- # [22:02] <TabAtkins> Also: I don't understand what makes "creator" different from "setter".
- # [22:03] <Ms2ger> creator is when the property doesn't exist yet, setter is when it does
- # [22:03] <Hixie> what Ms2ger said
- # [22:03] <TabAtkins> I suspected as much, but wasn't sure.
- # [22:03] <TabAtkins> ok.
- # [22:03] * Joins: Lachy (~Lachy@cm-84.215.59.50.getinternet.no)
- # [22:04] * Quits: weinig (~weinig@2620:149:4:1b01:a996:dfc6:e30e:e5c) (Read error: Connection reset by peer)
- # [22:04] * Joins: weinig (~weinig@2620:149:4:1b01:a996:dfc6:e30e:e5c)
- # [22:06] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
- # [22:14] <sicking> back
- # [22:16] * Joins: charlvn (~charlvn@2001:0:5ef5:79fd:10c6:3d19:adb4:5bbb)
- # [22:21] * Joins: charl (~charlvn@2001:0:5ef5:79fd:28af:1d3d:adb4:5bbb)
- # [22:22] * Quits: Ms2ger (~Ms2ger@91.181.242.11) (Quit: nn)
- # [22:24] * Quits: charlvn (~charlvn@2001:0:5ef5:79fd:10c6:3d19:adb4:5bbb) (Ping timeout: 240 seconds)
- # [22:32] * Quits: davidb (~davidb@66.207.208.98) (Quit: davidb)
- # [22:47] * Quits: smaug____ (~chatzilla@YYKMCXLVI.gprs.sl-laajakaista.fi) (Ping timeout: 258 seconds)
- # [22:47] * Joins: roc (~chatzilla@121.98.230.221)
- # [22:51] * charl is now known as charlvn
- # [22:55] * Joins: cygri (~cygri@089-101-248111.ntlworld.ie)
- # [22:57] * Quits: cygri (~cygri@089-101-248111.ntlworld.ie) (Client Quit)
- # [22:58] * Quits: MacTed (~Thud@63.119.36.36)
- # [22:59] * Joins: othermaciej (~mjs@17.244.25.145)
- # [23:02] * Quits: charlvn (~charlvn@2001:0:5ef5:79fd:28af:1d3d:adb4:5bbb) (Read error: Connection reset by peer)
- # [23:03] * Quits: othermaciej (~mjs@17.244.25.145) (Client Quit)
- # [23:05] * Joins: weinig_ (~weinig@17.245.91.79)
- # [23:06] * Joins: othermaciej (~mjs@2620:149:f01:202:6de5:6c1f:2d6d:dd35)
- # [23:08] * Quits: weinig (~weinig@2620:149:4:1b01:a996:dfc6:e30e:e5c) (Ping timeout: 244 seconds)
- # [23:08] * weinig_ is now known as weinig
- # [23:10] * Joins: temp02 (~temp01@unaffiliated/temp01)
- # [23:10] <rniwa> Hixie: sorry about the delay in responding to your stuff
- # [23:10] <rniwa> Hixie: I think I still have to ask you about some cache state
- # [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 :(
- # [23:11] * Joins: dsfsf (c6a06007@gateway/web/freenode/ip.198.160.96.7)
- # [23:11] <rniwa> Hixie: but I just replied to your bug about drag&drop
- # [23:11] * rniwa needs to respond to clipboard API spec as well
- # [23:11] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 248 seconds)
- # [23:12] <rniwa> man... participating in standardization process requires such a time commitment
- # [23:13] <dsfsf> uh huh
- # [23:14] * Quits: dsfsf (c6a06007@gateway/web/freenode/ip.198.160.96.7) (Client Quit)
- # [23:23] * Joins: MikeSmith_ (~MikeSmith@EM1-113-127-116.pool.e-mobile.ne.jp)
- # [23:25] * Quits: MikeSmith (~MikeSmith@EM111-191-71-33.pool.e-mobile.ne.jp) (Ping timeout: 244 seconds)
- # [23:25] * MikeSmith_ is now known as MikeSmith
- # [23:27] <sicking> Hixie: ping
- # [23:29] * Quits: weinig (~weinig@17.245.91.79) (Remote host closed the connection)
- # [23:29] * Joins: weinig (~weinig@17.212.155.228)
- # [23:47] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:48] * Quits: rillian_ (~rillian@150.183.119.66.static.metrobridge.net) (Remote host closed the connection)
- # [23:48] * _bga is now known as bga_|away
- # [23:48] * bga_|away is now known as bga_
- # [23:49] * Joins: rillian_ (~rillian@150.183.119.66.static.metrobridge.net)
- # [23:50] * Quits: espadrine (~thaddee_t@acces2337.res.insa-lyon.fr) (Ping timeout: 240 seconds)
- # [23:56] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # Session Close: Sat Oct 01 00:00:00 2011
The end :)