Options:
- # Session Start: Fri Aug 09 00:00:00 2013
- # Session Ident: #whatwg
- # [00:05] * Quits: necolas (~necolas@8.25.197.24) (Ping timeout: 264 seconds)
- # [00:05] * Quits: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net) (Quit: miketaylr)
- # [00:05] * Joins: necolas_ (~necolas@8.25.197.24)
- # [00:06] * Quits: jreading1 (~Adium@204.56.125.50) (Quit: Leaving.)
- # [00:09] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [00:09] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [00:10] <TabAtkins> I forget - is there anything super terrible about subclassing DOMString so you can augment it with better stuff, but still have it look like a string?
- # [00:11] * Joins: vcarbune (~vcarbune@vpn-global-dhcp2-57.ethz.ch)
- # [00:13] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [00:15] <TabAtkins> (Context: thinking about the CSSOM Values API again, and just turning it on by default by switching el.style.foo from returning a DOMString to returning this new DOMString subclass.
- # [00:15] <TabAtkins> )
- # [00:16] * heycam|away is now known as heycam
- # [00:17] * Quits: cabanier (~cabanier@192.150.22.55) (Quit: Leaving.)
- # [00:17] <heycam> TabAtkins, just that that's not really possible
- # [00:17] <TabAtkins> Heh, "just". Why not?
- # [00:17] <heycam> otherwise I think that would have been a good plan for doing much of the SVG DOM improvements
- # [00:17] <heycam> it's not clear what you mean by "subclassing DOMString", really
- # [00:18] <heycam> DOMString is meant to represent a JS String value
- # [00:18] <heycam> not an object
- # [00:18] * Quits: Benvie_ (~brandon@204.28.118.69)
- # [00:18] <TabAtkins> Yeah, can we just return something with String on its prototype chain? Or maybe just has toString set, and the attributes have [PutForward]
- # [00:19] <heycam> my spidey sense is telling me this is a bad idea :)
- # [00:19] <heycam> nobody really uses String objects etc.
- # [00:19] * Quits: encryptd_fractal (~encryptd_@66-188-99-174.static.ftbg.wi.charter.com) (Remote host closed the connection)
- # [00:19] <TabAtkins> The only difference between it and a string would be the typeof/instanceof behavior (probably not actually exercised in real code), and the fact that it can't be falsey (but do we ever return empty strings)?
- # [00:20] <heycam> and that you can't compare to String objects for equality with ==
- # [00:20] <heycam> since that checks for object identity
- # [00:20] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [00:20] <TabAtkins> You mean ===
- # [00:20] <TabAtkins> But yeah.
- # [00:20] <TabAtkins> But == works.
- # [00:20] <heycam> no...
- # [00:21] <heycam> == also checks for object identity if the two things are objects
- # [00:21] <TabAtkins> Oh, yeah.
- # [00:21] <gsnedders> String *objects* v. string *primitives*
- # [00:21] <TabAtkins> I thought you were talkinga bout things like "if(el.x == '5')"
- # [00:21] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [00:21] <heycam> ah
- # [00:21] <heycam> that would work
- # [00:21] <gsnedders> And you never /ever/ want to touch a String object.
- # [00:21] <gsnedders> So you never ever want to have String.prototype on a prototype chain.
- # [00:21] <heycam> but yeah, the falsey issue and equality checking were the reasons we discounted doing something similar for SVGAnimatedLength
- # [00:22] <gsnedders> Because string objects are evil.
- # [00:22] <heycam> there is that!
- # [00:22] <TabAtkins> gsnedders: Hrm, but I want something that acts like a string, but with more stuff.
- # [00:22] <TabAtkins> We could always have it just expose all the string methods manually, and have indexed properties for the characters in its string representation. ^_^
- # [00:23] <heycam> still, I wouldn't think it's out of the question for someone to do: if (el.style.color == el.style.backgroundColor)
- # [00:23] <heycam> or something like that
- # [00:24] <gsnedders> TabAtkins: No you don't.
- # [00:24] <TabAtkins> heycam: True.
- # [00:24] <TabAtkins> gsnedders: I don't?
- # [00:25] <gsnedders> TabAtkins: No, you don't.
- # [00:25] <TabAtkins> I wasn't asking for a repeat. ^_^
- # [00:25] * Quits: smaug____ (~chatzilla@85-76-0-217-nat.elisa-mobile.fi) (Ping timeout: 260 seconds)
- # [00:26] <gsnedders> I didn't!
- # [00:26] <gsnedders> I added a comma!
- # [00:26] <TabAtkins> Anyway, why don't I?
- # [00:28] <gsnedders> What's your use-case?
- # [00:28] <gsnedders> (You don't want to use string objects because they appear to be like string primitives, which people are used to, but then aren't in a few subtle ways.)
- # [00:29] <TabAtkins> Magically upgrade el.style.foo into a more full-featured object.
- # [00:29] <gsnedders> More seriously, how the hell did it get this late?
- # [00:29] <TabAtkins> Hahaha
- # [00:29] <gsnedders> I need to sleep, man.
- # [00:31] <gsnedders> TabAtkins: FWIW, I'd be tempted to try something with making it a new object with a valueOf that returned a string.
- # [00:31] <gsnedders> But idk, I haven't thought about it, and I need sleep.
- # [00:32] * Joins: benbarnett (~Adium@149.241.212.83)
- # [00:37] * Joins: othermaciej (~mjs@17.114.111.96)
- # [00:38] <Hixie> TabAtkins: you don't subclass DOMString, you make a new object for hte attribute, with a PutForwards on the attribute and a serializer on the object
- # [00:38] <Hixie> TabAtkins: it's controversial, but i like it. :-)
- # [00:38] <TabAtkins> That's fine with me, assuming it works.
- # [00:39] * Quits: tobie_ (~tobielang@46.189.28.108) (Quit: tobie_)
- # [00:39] <TabAtkins> But it does mean that, for example, el.style.foo.slice(5, 10) doesn't work.
- # [00:39] <TabAtkins> While it did work back when you had a string.
- # [00:41] <TabAtkins> And I guess that "el.style.color == el.style.backgroundColor" stops working.
- # [00:41] <TabAtkins> But it does work if you compare it with a string literal.
- # [00:41] * Joins: gavinc (~gavin@barad-dur.carothers.name)
- # [00:43] * Quits: benbarnett (~Adium@149.241.212.83) (Quit: Leaving.)
- # [00:44] * Quits: Smylers (~smylers@host31-51-175-79.range31-51.btcentralplus.com) (Quit: Leaving.)
- # [00:44] * Joins: smaug____ (~chatzilla@85-76-0-217-nat.elisa-mobile.fi)
- # [00:44] <heycam> I wonder if anybody ever gets trapped by `window.location == otherWindow.location` not doing what they expect
- # [00:46] <TabAtkins> I could certainly see myself falling into that, but I suppose I shouldn't admit that if that's what I'm wanting to do. ^_^
- # [00:49] * Quits: nimbu (~nimbu@192.150.10.205) (Quit: Leaving.)
- # [00:55] * Quits: aleray (~aleray@ip-83-101-33-172.customer.schedom-europe.net) (Quit: Leaving)
- # [00:56] * Joins: annevk (~annevk@2.28.172.199)
- # [00:56] * Joins: ap_ (~ap@17.245.108.161)
- # [00:56] * Quits: ehsan (~ehsan@66.207.208.102) (Remote host closed the connection)
- # [00:57] * Quits: othermaciej (~mjs@17.114.111.96) (Quit: othermaciej)
- # [00:58] * Quits: ap (~ap@2620:149:4:1b01:ac69:aef5:a1b3:f6d3) (Ping timeout: 240 seconds)
- # [00:58] * ap_ is now known as ap
- # [00:59] * Joins: birtles (~chatzilla@61-121-216-2.bitcat.net)
- # [00:59] * Quits: weinig (~weinig@17.212.155.119) (Ping timeout: 276 seconds)
- # [00:59] * Joins: othermaciej (~mjs@17.114.111.96)
- # [01:00] * Joins: weinig (~weinig@17.114.107.175)
- # [01:00] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
- # [01:07] * Quits: vcarbune (~vcarbune@vpn-global-dhcp2-57.ethz.ch) (Ping timeout: 240 seconds)
- # [01:09] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [01:11] <TabAtkins> Hmm... if we manually add the String operations to CSSValue, and add indexed properties for the characters of the string representation, then we'd avoid one of the big possible compat pitfalls.
- # [01:11] <TabAtkins> We wouldn't actually be a String subclass, but we'd act like it.
- # [01:12] * pdr is now known as pdr|brb
- # [01:14] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [01:15] * Quits: smaug____ (~chatzilla@85-76-0-217-nat.elisa-mobile.fi) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0a1/20130730030204])
- # [01:15] * Quits: othermaciej (~mjs@17.114.111.96) (Quit: othermaciej)
- # [01:16] * Joins: nimbu (~nimbu@192.150.10.205)
- # [01:16] * Quits: nimbu (~nimbu@192.150.10.205) (Client Quit)
- # [01:17] <TabAtkins> heycam: ^^^ Maybe a [StringClass] attribute to automate the "I'm a fake string!" process? ^_^
- # [01:17] <annevk> TabAtkins: I think we went through this once before
- # [01:17] <TabAtkins> annevk: There you are!
- # [01:17] <TabAtkins> Yes, I was wanting a refresher on the problems.
- # [01:17] <annevk> I'm not really here
- # [01:18] <annevk> http://lists.w3.org/Archives/Public/public-script-coord/2010JanMar/thread.html#msg21
- # [01:18] <TabAtkins> d'oh
- # [01:18] <heycam> I don't think I'd be happy with fake strings, unless there were proper support for them in JS itself, so that == etc. could work
- # [01:18] <TabAtkins> Ah, excellent.
- # [01:18] <TabAtkins> heycam: Clearly we just need to wait for ES to do the operator-overloading thing.
- # [01:18] <heycam> maybe!
- # [01:18] <TabAtkins> Which is much closer to happening now.
- # [01:18] <heycam> do you have a pointer to any preliminary work on that?
- # [01:19] * Joins: nimbu (~nimbu@192.150.10.205)
- # [01:20] <annevk> Brendan did a presentation at the last TC39 meeting
- # [01:20] <annevk> http://esdiscuss.org/topic/typeof-extensibility-building-on-my-value-objects-slides-from-thursday-s-tc39-meeting has the details
- # [01:20] <heycam> thanks
- # [01:21] <annevk> Yeah, seems like that's what might work for something coolish here. Makes == work anyway.
- # [01:22] <heycam> so not being able to do anything useful with rectElement.x etc. was most of the reason for thinking about the "big switch" new SVG DOM
- # [01:22] <heycam> if we will be able to treat .x as a string and an object in some sane way, then maybe it's unnecessary
- # [01:24] * Joins: encryptd_fractal (~encryptd_@71-89-74-12.dhcp.bycy.mi.charter.com)
- # [01:25] * Quits: weinig (~weinig@17.114.107.175) (Quit: weinig)
- # [01:26] <TabAtkins> rect.x already isn't a string, right? It's an AnimatedLength.
- # [01:27] <heycam> right
- # [01:27] <heycam> but we want to make it a string
- # [01:29] * Quits: rmichnik (~quassel@177.135.228.218) (Ping timeout: 240 seconds)
- # [01:29] * Joins: weinig (~weinig@17.114.107.175)
- # [01:30] <TabAtkins> I think a combination of stringifier + [PutForwards] may be enough.
- # [01:31] <TabAtkins> And it can just have multiple accessors: rect.x.px, rect.x.em, rect.x.string, etc.
- # [01:31] <TabAtkins> getters/setters, that is.
- # [01:32] <annevk> I feel like I wanted to bug heycam about something, and now I can't remember
- # [01:33] <heycam> TabAtkins, I dunno, I feel like I've considered that approach many times but felt it just didn't quite make it, due to ==
- # [01:33] <heycam> we've actually got the .px stuff in the spec at the moment, though nobody's implemented it yet
- # [01:33] <TabAtkins> Yeah, depending on value objects progress, that may not be good.
- # [01:34] <TabAtkins> heycam: I just want us to match CSSOM Values API.
- # [01:34] <heycam> sure
- # [01:34] <heycam> the answer then is not to define the CSSOM Values API like that ;)
- # [01:35] <TabAtkins> Heh.
- # [01:35] * Quits: necolas_ (~necolas@8.25.197.24) (Read error: Connection reset by peer)
- # [01:35] <heycam> are you working on that btw?
- # [01:35] <TabAtkins> Still, some lessons need to be taken from the Values API, like how to handle list-valued properties in a way that's consistent between always-been-a-list and turned-into-a-list-later.
- # [01:35] <TabAtkins> Kinda.
- # [01:35] * Joins: necolas (~necolas@8.25.197.24)
- # [01:35] <TabAtkins> It's been on my list for a while, but I'm bumping it up to help with SVG. ^_^
- # [01:35] * Joins: rmichnik (~quassel@179.252.175.242)
- # [01:35] <heycam> ok cool
- # [01:36] * Quits: necolas (~necolas@8.25.197.24) (Read error: Connection reset by peer)
- # [01:36] * Joins: necolas (~necolas@8.25.197.24)
- # [01:36] * Quits: ap (~ap@17.245.108.161) (Remote host closed the connection)
- # [01:37] * Joins: ap (~ap@2620:149:4:1b01:e9b5:bc5d:383:997e)
- # [01:39] * Joins: smaug____ (~chatzilla@85-76-0-217-nat.elisa-mobile.fi)
- # [01:40] * ojan_away is now known as ojan
- # [01:40] <TabAtkins> As far as I can tell (ignoring the CSS part for a bit, so we just have an SVG clean slate), the only reason to have it as a string is to allow for immediate string operations on the value. Right?
- # [01:40] <heycam> yes
- # [01:40] <heycam> and for consistency with HTML attribute reflections
- # [01:41] <TabAtkins> Hm, okay.
- # [01:42] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [01:43] <TabAtkins> Hm, what about, in concert with CSSStyleDeclaration gaining a .values property that returns a new map of property names to the magical objects rather than strings, SVG elements also gain a .values property that returns a new map of attribute names to the magical objects.
- # [01:43] <heycam> something like that would be acceptable. better than xAsLength, yAsLength, etc.
- # [01:44] <TabAtkins> Yeah, definitely.
- # [01:44] * Quits: blooberry (blooberry_@nat/intel/x-udxcohlfwvmmiqnb) (Remote host closed the connection)
- # [01:44] <TabAtkins> And we could later do the same thing with HTML, if necessary.
- # [01:44] * Joins: blooberry (~blooberry@134.134.137.73)
- # [01:44] <shepazu> heycam, had you talked with anyone else (at moz or other implementers) about your proposal, and what did they say?
- # [01:45] <TabAtkins> (We're already hiding .values from the with(){} of event handlers, so this would catch that too.)
- # [01:45] <heycam> no. well I sent it to brian for get some initial comments, but that's all.
- # [01:45] <shepazu> just curious
- # [01:45] <heycam> and Tab, but he didn't reply quickly enough :)
- # [01:47] * Quits: annevk (~annevk@2.28.172.199) (Remote host closed the connection)
- # [01:47] <TabAtkins> Yeah, sorry, I was slow in replying. :/
- # [01:48] * Quits: rmichnik (~quassel@179.252.175.242) (Read error: Connection reset by peer)
- # [01:48] * Joins: rmichnik (~quassel@179.252.175.242)
- # [01:49] * heycam often has that problem, so doesn't blame anyone else for doing so
- # [01:49] <heycam> biab
- # [01:49] * heycam is now known as heycam|away
- # [01:51] * Joins: nessy (~silviapf@101.164.144.53)
- # [01:52] <TabAtkins> Oh, huh, I thought that images rotated along with the text in vertical writing modes.
- # [01:52] * Quits: yorick (~yorick@oftn/member/yorick) (Read error: Connection reset by peer)
- # [01:52] <TabAtkins> Let's see if FF has the same behavior as Chrome...
- # [01:55] <TabAtkins> Oh, FF doesn't do writing mode yet. Wonderful.
- # [01:58] * Quits: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net) (Remote host closed the connection)
- # [01:59] * Quits: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net) (Quit: sicking)
- # [02:03] * Quits: rmichnik (~quassel@179.252.175.242) (Read error: Connection reset by peer)
- # [02:04] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [02:05] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [02:07] * Quits: lmclister (~lmclister@192.150.10.204) (Quit: lmclister)
- # [02:08] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Read error: Connection reset by peer)
- # [02:08] * Quits: nimbu (~nimbu@192.150.10.205) (Quit: Leaving.)
- # [02:09] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [02:12] * Joins: tantek_ (~tantek@c-98-210-158-213.hsd1.ca.comcast.net)
- # [02:14] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Remote host closed the connection)
- # [02:15] * Quits: tantek (~tantek@c-98-210-158-213.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
- # [02:15] * tantek_ is now known as tantek
- # [02:15] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [02:17] * Quits: tantek (~tantek@c-98-210-158-213.hsd1.ca.comcast.net) (Client Quit)
- # [02:17] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Read error: Connection reset by peer)
- # [02:17] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [02:18] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Remote host closed the connection)
- # [02:18] * Quits: encryptd_fractal (~encryptd_@71-89-74-12.dhcp.bycy.mi.charter.com) (Remote host closed the connection)
- # [02:18] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [02:19] * pdr|brb is now known as pdr
- # [02:25] * Joins: nimbu (~nimbu@192.150.10.210)
- # [02:25] * Quits: alecf (alecf@nat/google/x-ogdeimyaiyhkcybs) (Quit: alecf)
- # [02:27] * Quits: birtles (~chatzilla@61-121-216-2.bitcat.net) (Read error: Connection reset by peer)
- # [02:33] * Joins: a-ja (~Instantbi@70.230.158.83)
- # [02:33] * Quits: necolas (~necolas@8.25.197.24) (Remote host closed the connection)
- # [02:34] * Joins: ehsan (~ehsan@66.207.208.102)
- # [02:34] * Quits: ehsan (~ehsan@66.207.208.102) (Remote host closed the connection)
- # [02:34] * Joins: alecf (alecf@nat/google/x-vsklwewuhdqqohdn)
- # [02:41] * Quits: smaug____ (~chatzilla@85-76-0-217-nat.elisa-mobile.fi) (Ping timeout: 260 seconds)
- # [02:43] * Quits: ap (~ap@2620:149:4:1b01:e9b5:bc5d:383:997e) (Quit: ap)
- # [02:45] * heycam|away is now known as heycam
- # [02:49] * Joins: jdaggett (~jdaggett@61-121-216-2.bitcat.net)
- # [02:51] * Joins: birtles (~chatzilla@2401:fa00:4:fd00:848f:3278:ef8d:44b7)
- # [02:55] * Quits: nimbu (~nimbu@192.150.10.210) (Quit: Leaving.)
- # [02:56] * Quits: weinig (~weinig@17.114.107.175) (Quit: weinig)
- # [02:56] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Ping timeout: 264 seconds)
- # [03:04] * Joins: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net)
- # [03:05] * Joins: nessy1 (~silviapf@101.164.144.53)
- # [03:05] * Quits: nessy (~silviapf@101.164.144.53) (Read error: Connection reset by peer)
- # [03:10] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [03:15] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 276 seconds)
- # [03:23] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [03:34] * Joins: vitorpacheco (~vitor@189-105-33-44.user.veloxzone.com.br)
- # [03:34] * Quits: birtles (~chatzilla@2401:fa00:4:fd00:848f:3278:ef8d:44b7) (Ping timeout: 240 seconds)
- # [03:34] * ojan is now known as ojan_away
- # [03:39] * Joins: birtles (~chatzilla@2401:fa00:4:fd00:848f:3278:ef8d:44b7)
- # [03:41] * Quits: jernoble_ (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Quit: Computer has gone to sleep.)
- # [04:10] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [04:15] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [04:15] * heycam is now known as heycam|away
- # [04:17] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Quit: bholley)
- # [04:27] * Quits: alecf (alecf@nat/google/x-vsklwewuhdqqohdn) (Quit: alecf)
- # [04:32] * Joins: dbaron (~dbaron@173-228-85-238.dsl.dynamic.sonic.net)
- # [04:47] * Joins: weinig (~weinig@24.130.60.35)
- # [04:51] * Quits: yoshu (~josh@174-21-168-144.tukw.qwest.net) (Quit: yoshu)
- # [04:54] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [05:01] * Quits: bobbylaporte (~bobbylapo@108.166.175.162) (Read error: Operation timed out)
- # [05:03] * Joins: bentruym_ (~bentruyma@c-98-193-95-144.hsd1.il.comcast.net)
- # [05:03] * Quits: bentruym_ (~bentruyma@c-98-193-95-144.hsd1.il.comcast.net) (Client Quit)
- # [05:04] * Joins: bobbylaporte (~bobbylapo@108.166.175.162)
- # [05:06] * Quits: birtles (~chatzilla@2401:fa00:4:fd00:848f:3278:ef8d:44b7) (Read error: Connection reset by peer)
- # [05:06] * Joins: bentruym_ (~bentruyma@c-98-193-95-144.hsd1.il.comcast.net)
- # [05:16] * heycam|away is now known as heycam
- # [05:18] * Quits: bentruym_ (~bentruyma@c-98-193-95-144.hsd1.il.comcast.net) (Quit: Computer has gone to sleep.)
- # [05:24] * Quits: weinig (~weinig@24.130.60.35) (Quit: weinig)
- # [06:05] * Joins: jernoble_ (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [06:07] * heycam is now known as heycam|away
- # [06:11] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [06:16] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [06:19] * Quits: barneybook (~kvirc@220-136-210-84.dynamic.hinet.net) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [06:24] * Joins: birtles (~chatzilla@61-121-216-2.bitcat.net)
- # [06:29] * Quits: gavinc (~gavin@barad-dur.carothers.name) (Ping timeout: 246 seconds)
- # [06:32] * heycam|away is now known as heycam
- # [06:37] * Quits: rniwa (~rniwa@17.212.154.114) (Quit: rniwa)
- # [06:38] * Quits: jwalden (~waldo@nat/mozilla/x-mlwwwzenripjxujc) (Quit: ChatZilla 0.9.87-7.1450hg.fc19 [XULRunner 22.0/20130701153714])
- # [06:52] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [06:52] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [06:53] * Quits: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net) (Quit: goodbye cruel world)
- # [07:12] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [07:17] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [07:21] * Joins: barneybook (~kvirc@1-160-50-130.dynamic.hinet.net)
- # [07:23] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com)
- # [07:32] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Quit: bholley)
- # [07:36] * Joins: bentruym_ (~bentruyma@c-98-193-95-144.hsd1.il.comcast.net)
- # [07:46] * Quits: bentruym_ (~bentruyma@c-98-193-95-144.hsd1.il.comcast.net) (Quit: Computer has gone to sleep.)
- # [07:46] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [07:54] * Joins: benbarnett (~Adium@149.241.212.83)
- # [08:02] * Joins: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net)
- # [08:06] * Quits: jernoble_ (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Quit: Computer has gone to sleep.)
- # [08:12] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [08:14] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Read error: Operation timed out)
- # [08:16] * Joins: jernoble_ (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [08:16] * Quits: jernoble_ (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Client Quit)
- # [08:17] * Quits: benbarnett (~Adium@149.241.212.83) (Quit: Leaving.)
- # [08:20] * Quits: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net) (Quit: miketaylr)
- # [08:28] * Joins: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si)
- # [08:42] * Joins: Ms2ger (~Ms2ger@91.182.23.40)
- # [08:47] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [08:57] * Joins: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net)
- # [09:01] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [09:02] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: Computer has gone to sleep.)
- # [09:08] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [09:14] * Joins: zkis (~zkis@2001:998:22:0:91e2:7c43:5925:3fb3)
- # [09:16] * Joins: tobie (~tobielang@46.189.28.108)
- # [09:25] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [09:33] * Quits: Ms2ger (~Ms2ger@91.182.23.40) (Quit: bbl)
- # [09:35] * jonlee|afk is now known as jonlee
- # [09:42] * Joins: annevk (~annevk@2.28.172.199)
- # [09:46] * Joins: jim0thy_ (~jim0thy_@212.113.198.34)
- # [09:49] * jonlee is now known as jonlee|afk
- # [09:50] * jonlee|afk is now known as jonlee
- # [09:50] * Quits: birtles (~chatzilla@61-121-216-2.bitcat.net) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
- # [09:54] * Quits: annevk (~annevk@2.28.172.199) (Remote host closed the connection)
- # [09:57] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [10:00] * Joins: codeho (~codeho@88.217.181.50)
- # [10:01] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Ping timeout: 256 seconds)
- # [10:02] * Quits: dbaron (~dbaron@173-228-85-238.dsl.dynamic.sonic.net) (Ping timeout: 246 seconds)
- # [10:04] * Joins: lerc_ (~quassel@121.75.145.115)
- # [10:04] * Quits: lerc (~quassel@121.75.145.115) (Ping timeout: 248 seconds)
- # [10:06] * Quits: tobie (~tobielang@46.189.28.108) (Quit: tobie)
- # [10:08] * Joins: tobie (~tobielang@46.189.28.108)
- # [10:13] * Joins: miketaylr (~miketaylr@64.132.190.126)
- # [10:22] * Quits: miketaylr (~miketaylr@64.132.190.126) (Quit: miketaylr)
- # [10:22] * Joins: hasather (~hasather@80.91.33.141)
- # [10:27] * Joins: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [10:29] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Read error: Connection reset by peer)
- # [10:29] * Joins: enr^ (~enr@90-224-37-101-no105.tbcn.telia.com)
- # [10:29] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [10:31] * Quits: jim0thy_ (~jim0thy_@212.113.198.34) (Quit: jim0thy_)
- # [10:36] * Quits: zkis (~zkis@2001:998:22:0:91e2:7c43:5925:3fb3) (Ping timeout: 264 seconds)
- # [10:38] * Joins: jim0thy_ (~jim0thy_@212.113.198.34)
- # [10:38] * Quits: enr^ (~enr@90-224-37-101-no105.tbcn.telia.com) (Ping timeout: 256 seconds)
- # [10:40] * Joins: annevk (~annevk@207.218.72.65)
- # [10:40] * Joins: Lachy (~Lachy@213.166.174.2)
- # [10:41] * jonlee is now known as jonlee|afk
- # [10:41] * Quits: jdaggett (~jdaggett@61-121-216-2.bitcat.net) (Quit: jdaggett)
- # [10:41] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [10:52] * Quits: lilmonkey (~colin@pdpc/supporter/professional/riven) (Read error: Connection reset by peer)
- # [10:53] * Joins: lilmonkey (~colin@5469E6D4.cm-12-2d.dynamic.ziggo.nl)
- # [10:53] * Quits: lilmonkey (~colin@5469E6D4.cm-12-2d.dynamic.ziggo.nl) (Changing host)
- # [10:53] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
- # [10:53] * heycam is now known as heycam|away
- # [11:00] * Quits: jim0thy_ (~jim0thy_@212.113.198.34) (Quit: jim0thy_)
- # [11:03] * Quits: tobie (~tobielang@46.189.28.108) (Quit: tobie)
- # [11:06] <annevk> Domenic_: that's a pretty go
- # [11:06] <annevk> Domenic_: oops, compelling reply
- # [11:06] * Quits: reggna (~reggna@irc.jagochmittmoln.se) (Ping timeout: 245 seconds)
- # [11:06] <annevk> Domenic_: thanks!
- # [11:07] * Joins: reggna (~reggna@irc.jagochmittmoln.se)
- # [11:08] * Joins: jim0thy_ (~jim0thy_@212.113.198.34)
- # [11:09] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [11:21] * Joins: tomasf (~tomasf@77.72.97.10.c.fiberdirekt.net)
- # [11:24] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Ping timeout: 264 seconds)
- # [11:29] * Joins: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si)
- # [11:35] * Joins: tobie_ (~tobielang@webdb.irt.de)
- # [11:38] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 268 seconds)
- # [11:45] * Quits: tobie_ (~tobielang@webdb.irt.de) (Quit: tobie_)
- # [12:07] * Joins: smaug____ (~chatzilla@85-76-13-112-nat.elisa-mobile.fi)
- # [12:23] * Parts: a-ja (~Instantbi@70.230.158.83)
- # [12:34] <annevk> Woohoo, found more browser differences...
- # [12:34] <annevk> baseURI is apparently cloned in Gecko, not in Chrome.
- # [12:35] <annevk> Whoa, IE doesn't even support baseURI
- # [12:38] <annevk> I wonder if IE supports xml:base...
- # [12:46] * Quits: smaug____ (~chatzilla@85-76-13-112-nat.elisa-mobile.fi) (Ping timeout: 246 seconds)
- # [12:49] <annevk> So, none of Chrome/Safari/IE support xml:base!
- # [12:51] * Joins: tobie_ (~tobielang@webdb.irt.de)
- # [13:01] * Quits: codeho (~codeho@88.217.181.50) (Quit: codeho)
- # [13:08] * Joins: [[zz]] (~q@node-1a4f.pool-101-109.dynamic.totbb.net)
- # [13:10] <MikeSmith> annevk: crazy
- # [13:11] * Joins: yorick (~yorick@oftn/member/yorick)
- # [13:11] <annevk> Since xml:base is kinda crazy, I'd like to call this one an opportunity.
- # [13:12] <zcorpan> apparently my fingers think that </var> is an appropriate way to close any element
- # [13:13] <zcorpan> i guess killing xml:base also means complexity is reduced quite a bit
- # [13:14] <SimonSapin> So can we just remove that last test and move on? http://test.csswg.org/suites/css-style-attr/nightly-unstable/report/results.html
- # [13:15] * Quits: dcheng_ (dcheng@nat/google/x-fxbjcvoafafoiujz) (Read error: Operation timed out)
- # [13:16] <zcorpan> ok i've defined how declaration blocks are serialized, with shorthands. anyone want to review the diff before i commit?
- # [13:20] * Quits: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com) (Remote host closed the connection)
- # [13:20] <annevk> Filed https://bugzilla.mozilla.org/show_bug.cgi?id=903372 on removing xml:base from Gecko
- # [13:20] <zcorpan> http://pastebin.com/3LRZVbLP
- # [13:21] <annevk> zcorpan: I don't think it make sense to talk about syntax
- # [13:21] <annevk> "If a property is specified more than once" is a syntax thing, it's not a model thing
- # [13:22] <zcorpan> annevk: yeah, i should probably hook into the cascade there in some way
- # [13:23] <annevk> zcorpan: some complexity can be removed I suppose, but <base> is still there
- # [13:24] * Joins: darobin_ (~darobin@lns-bzn-61-82-250-85-156.adsl.proxad.net)
- # [13:24] * Joins: Ms2ger (~Ms2ger@94-226-220-62.access.telenet.be)
- # [13:25] * Quits: barneybook (~kvirc@1-160-50-130.dynamic.hinet.net) (Read error: Connection reset by peer)
- # [13:27] * Quits: darobin (~darobin@lns-bzn-37-82-253-28-72.adsl.proxad.net) (Ping timeout: 264 seconds)
- # [13:31] * Quits: tobie_ (~tobielang@webdb.irt.de) (Quit: tobie_)
- # [13:40] * Joins: codeho (~codeho@217.110.90.131)
- # [13:48] <gsnedders> annevk: FWIW, xml:base is required in stuff like RSS/Atom
- # [14:07] * Joins: scor (scor@drupal.org/user/52142/view)
- # [14:08] * Quits: scor (scor@drupal.org/user/52142/view) (Client Quit)
- # [14:11] <zcorpan> it could be made an RSS/Atom-specific attribute
- # [14:13] * Joins: decotii (~decotii@hq.croscon.com)
- # [14:14] * Joins: barneybook (~kvirc@220-136-210-84.dynamic.hinet.net)
- # [14:15] <zcorpan> TabAtkins: is there something in css-cascade that i can hook into for the purpose of saying which declarations go in to the CSSOM? it seems to talk about the processing going from an element and matching against it, but for CSSOM that's not what i need
- # [14:22] * Joins: scor (scor@drupal.org/user/52142/view)
- # [14:24] <zcorpan> TabAtkins: see the top of http://pastebin.com/3LRZVbLP for context
- # [14:31] * Joins: felipeduardo (~felipedua@189.115.44.34)
- # [14:44] * Quits: tomasf (~tomasf@77.72.97.10.c.fiberdirekt.net) (Ping timeout: 240 seconds)
- # [14:46] <annevk> gsnedders: could care less
- # [14:48] * Joins: zkis (~zkis@2001:998:22:0:85a7:2507:b828:3a39)
- # [14:48] <zcorpan> annevk: you mean couldn't?
- # [14:49] <annevk> zcorpan: oops
- # [14:51] <gsnedders> annevk: Does Firefox, at least on Android, not inc. a feed reader?
- # [14:53] <annevk> gsnedders: support for xml:base we need there is way different and less complex
- # [14:53] <annevk> gsnedders: can just be done at the application layer
- # [15:00] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [15:00] * Joins: krawchyk_ (~krawchyk@65.220.49.251)
- # [15:01] * Joins: ehynds (~ehynds@64.206.121.41)
- # [15:03] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [15:04] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [15:05] * ehynds is now known as erichynds
- # [15:05] * erichynds is now known as ehynds
- # [15:10] * Joins: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net)
- # [15:15] * Quits: karlcow (~karl@nerval.la-grange.net) (Read error: Connection reset by peer)
- # [15:17] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [15:21] * Quits: nessy1 (~silviapf@101.164.144.53) (Quit: Leaving.)
- # [15:25] * Joins: TallTed (~Thud@63.119.36.36)
- # [15:41] * Quits: ehynds (~ehynds@64.206.121.41) (Quit: ehynds)
- # [15:45] * Joins: reyre (~reyre@66.207.208.102)
- # [15:51] * Joins: ehynds (~erichynds@64.206.121.41)
- # [15:59] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Remote host closed the connection)
- # [16:18] * Quits: ehynds (~erichynds@64.206.121.41) (Quit: ehynds)
- # [16:23] * Quits: zkis (~zkis@2001:998:22:0:85a7:2507:b828:3a39) (Ping timeout: 264 seconds)
- # [16:24] * Joins: ehsan (~ehsan@66.207.208.102)
- # [16:30] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [16:35] * Joins: yoshu (~josh@174-21-168-144.tukw.qwest.net)
- # [16:36] * Joins: enr^ (~enr@90-224-37-101-no105.tbcn.telia.com)
- # [16:38] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 260 seconds)
- # [16:44] * Quits: enr^ (~enr@90-224-37-101-no105.tbcn.telia.com) (Ping timeout: 256 seconds)
- # [16:46] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Remote host closed the connection)
- # [16:46] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [16:52] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Ping timeout: 264 seconds)
- # [16:57] * Joins: zkis (~zkis@2001:998:22:0:85a7:2507:b828:3a39)
- # [16:59] * Quits: yoshu (~josh@174-21-168-144.tukw.qwest.net) (Quit: yoshu)
- # [17:01] * Quits: hasather (~hasather@80.91.33.141) (Ping timeout: 264 seconds)
- # [17:10] * Quits: Lachy (~Lachy@213.166.174.2) (Read error: Operation timed out)
- # [17:11] * Joins: smaug____ (~chatzilla@cs164155.pp.htv.fi)
- # [17:40] * Quits: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [17:41] * Joins: Maurice (~copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [17:42] <MikeSmith> win 17
- # [17:49] <sangwhan> Has someone been crazy enough to polyfill CSS exclusions? :)
- # [17:49] * sangwhan assumes not
- # [17:51] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Ping timeout: 256 seconds)
- # [17:56] * Joins: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net)
- # [17:56] * Quits: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net) (Remote host closed the connection)
- # [17:57] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [17:58] * Joins: nimbu (~nimbu@192.150.10.210)
- # [18:01] * Joins: yoshu (~josh@nat60-100.net.kcls.org)
- # [18:03] * Quits: nimbu (~nimbu@192.150.10.210) (Ping timeout: 260 seconds)
- # [18:08] <annevk> So I wanted to put URL tests into some kind of universal format. But JSON doesn't allow comments. Suggestions?
- # [18:08] * Joins: hasather (~hasather@guest.schibsted.no)
- # [18:08] * Parts: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net)
- # [18:09] * Joins: dbaron (~dbaron@173-228-85-238.dsl.dynamic.sonic.net)
- # [18:12] <SimonSapin> annevk: for CSS parsing tests I went with JSON + a readme
- # [18:13] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 248 seconds)
- # [18:13] * Joins: dcheng (dcheng@nat/google/x-dvhzifpyipeonxfp)
- # [18:15] * Joins: cabanier (~cabanier@192.150.22.55)
- # [18:16] * Quits: yoshu (~josh@nat60-100.net.kcls.org) (Quit: yoshu)
- # [18:17] * Joins: nimbu (~nimbu@192.150.10.205)
- # [18:17] * nimbu is now known as divya
- # [18:17] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [18:21] * Joins: jernoble_ (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [18:23] * Joins: vcarbune (vcarbune@nat/google/x-gxtegohmtzfvaaug)
- # [18:26] * Joins: sgalineau (~sylvaing@192.150.10.208)
- # [18:31] * Quits: codeho (~codeho@217.110.90.131) (Ping timeout: 276 seconds)
- # [18:31] * Joins: weinig (~weinig@17.114.107.175)
- # [18:32] * Joins: rniwa (~rniwa@17.212.154.114)
- # [18:32] * Joins: ap (~ap@2620:149:4:1b01:e9b5:bc5d:383:997e)
- # [18:33] <Domenic_> annevk: compelling reply to what?
- # [18:35] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [18:38] * Joins: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si)
- # [18:39] * Quits: reyre (~reyre@66.207.208.102) (Remote host closed the connection)
- # [18:39] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [18:40] * Joins: alecf (alecf@nat/google/x-hidzyjsxbgzblbsg)
- # [18:40] * Joins: reyre (~reyre@66.207.208.102)
- # [18:47] * Joins: yoshu (~josh@174-21-168-144.tukw.qwest.net)
- # [18:50] * Quits: divya (~nimbu@192.150.10.205) (Quit: Leaving.)
- # [18:53] * Quits: jim0thy_ (~jim0thy_@212.113.198.34) (Quit: jim0thy_)
- # [18:55] * Quits: darobin_ (~darobin@lns-bzn-61-82-250-85-156.adsl.proxad.net) (Remote host closed the connection)
- # [19:01] * Joins: yoshu_ (~josh@174-21-168-144.tukw.qwest.net)
- # [19:01] * Joins: frozenice (~frozenice@unaffiliated/fr0zenice)
- # [19:02] * Quits: yoshu (~josh@174-21-168-144.tukw.qwest.net) (Read error: Connection reset by peer)
- # [19:02] * Joins: yoshu__ (~josh@174-21-168-144.tukw.qwest.net)
- # [19:05] * Quits: yoshu_ (~josh@174-21-168-144.tukw.qwest.net) (Ping timeout: 264 seconds)
- # [19:24] * Quits: zkis (~zkis@2001:998:22:0:85a7:2507:b828:3a39) (Ping timeout: 264 seconds)
- # [19:35] <TabAtkins> zcorpan: Actually, that's a lack in Syntax - I'm adding a paragraph now stating that style rules need to ignore duplicate declarations.
- # [19:35] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [19:35] <TabAtkins> zcorpan: Do you need a more abstract hook?
- # [19:36] <TabAtkins> Hm, though, you *do* need something more abstract I think, because Syntax probably doesn't want to do shorthand expansion.
- # [19:37] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Read error: Operation timed out)
- # [19:37] * Joins: WeirdAl (~chatzilla@g2spf.ask.info)
- # [19:37] <TabAtkins> Since the actual list of properties that CSSOM will see should include shorthands (so it can serialize).
- # [19:39] <TabAtkins> zcorpan: Just let me know what you need and I can hook you up.
- # [19:42] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com)
- # [19:43] * Joins: tobie (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [19:49] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [19:49] * Joins: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net)
- # [19:52] * Joins: yoshu (~josh@174-21-168-144.tukw.qwest.net)
- # [19:52] * Quits: tobie (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie)
- # [19:54] * Quits: yoshu__ (~josh@174-21-168-144.tukw.qwest.net) (Ping timeout: 246 seconds)
- # [20:07] * Joins: enr (~enr@107.6.80.86)
- # [20:19] * Quits: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net) (Quit: sicking)
- # [20:20] * Quits: reyre (~reyre@66.207.208.102) (Remote host closed the connection)
- # [20:24] * Joins: reyre (~reyre@66.207.208.102)
- # [20:25] * Quits: weinig (~weinig@17.114.107.175) (Quit: weinig)
- # [20:29] * Joins: weinig (~weinig@17.114.107.175)
- # [20:30] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [20:32] * Quits: smaug____ (~chatzilla@cs164155.pp.htv.fi) (Ping timeout: 246 seconds)
- # [20:34] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Ping timeout: 240 seconds)
- # [20:34] * Quits: annevk (~annevk@207.218.72.65) (Remote host closed the connection)
- # [20:35] * Joins: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [20:36] * Quits: dbaron (~dbaron@173-228-85-238.dsl.dynamic.sonic.net) (Ping timeout: 246 seconds)
- # [20:40] * Quits: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 248 seconds)
- # [20:41] * Joins: tobie (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [20:42] * Quits: danielfilho|w (~danielfil@200.232.113.107) (Quit: ig halt)
- # [20:43] * Quits: stalled (~stalled@unaffiliated/stalled) (Read error: Connection reset by peer)
- # [20:46] * Quits: weinig (~weinig@17.114.107.175) (Quit: weinig)
- # [20:48] * Joins: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net)
- # [20:54] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [20:54] * Joins: weinig (~weinig@17.114.107.175)
- # [20:59] * Quits: ap (~ap@2620:149:4:1b01:e9b5:bc5d:383:997e) (Quit: ap)
- # [21:11] * Quits: fishd (~darin@216.239.45.66) (Read error: Connection reset by peer)
- # [21:12] * Joins: fishd (~darin@216.239.45.66)
- # [21:18] * Quits: jernoble_ (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Quit: Computer has gone to sleep.)
- # [21:26] * Quits: vcarbune (vcarbune@nat/google/x-gxtegohmtzfvaaug) (Quit: Leaving)
- # [21:26] * Joins: vcarbune (~vcarbune@vpn-global-dhcp2-106.ethz.ch)
- # [21:27] * Quits: tobie (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie)
- # [21:29] * Joins: jernoble_ (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [21:30] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
- # [21:36] * Joins: alrra (~alrra@unaffiliated/alrra)
- # [21:36] * Joins: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [21:38] * Joins: annevk (~annevk@2.28.172.199)
- # [21:41] * Quits: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 260 seconds)
- # [21:42] * Joins: mven (~mven@ip68-108-124-177.lv.lv.cox.net)
- # [21:44] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [21:46] * Joins: garciawebdev (~garciaweb@host72.181-6-222.telecom.net.ar)
- # [21:52] * Quits: alrra (~alrra@unaffiliated/alrra) (Quit: Leaving)
- # [21:53] * Joins: zkis (~zkis@87-95-22-126.bb.dnainternet.fi)
- # [21:55] * Joins: tobie (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [22:02] * Quits: Ms2ger (~Ms2ger@94-226-220-62.access.telenet.be) (Quit: nn)
- # [22:04] * Joins: gavinc (~gavin@barad-dur.carothers.name)
- # [22:06] * Quits: rcombs (~rcombs@rcombs.me) (Read error: Connection reset by peer)
- # [22:06] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Quit: ZNC - http://znc.in)
- # [22:06] * Joins: rcombs (~rcombs@rcombs.me)
- # [22:09] * Quits: weinig (~weinig@17.114.107.175) (Quit: weinig)
- # [22:11] * Quits: nielsle (~nielsle@3239149-cl69.boa.fiberby.dk) (Ping timeout: 256 seconds)
- # [22:11] * Quits: krawchyk_ (~krawchyk@65.220.49.251) (Remote host closed the connection)
- # [22:13] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [22:16] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [22:19] * Quits: reyre (~reyre@66.207.208.102) (Remote host closed the connection)
- # [22:22] * Joins: jwalden (~waldo@nat/mozilla/x-znfddnsauuavogfn)
- # [22:23] * Joins: nielsle (~nielsle@3239149-cl69.boa.fiberby.dk)
- # [22:26] * Quits: tobie (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie)
- # [22:27] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [22:29] * Quits: garciawebdev (~garciaweb@host72.181-6-222.telecom.net.ar) (Read error: Connection reset by peer)
- # [22:29] * Joins: garciawebdev (~garciaweb@host72.181-6-222.telecom.net.ar)
- # [22:31] * Joins: garciawe_ (~garciaweb@11-223-235-201.fibertel.com.ar)
- # [22:33] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: Computer has gone to sleep.)
- # [22:34] * Quits: garciawebdev (~garciaweb@host72.181-6-222.telecom.net.ar) (Ping timeout: 248 seconds)
- # [22:36] * Joins: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [22:41] * Quits: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [22:41] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [22:46] <Hixie> did we decide we were going to use IDL for deciding what was visible in workers?
- # [22:46] * Joins: weinig (~weinig@17.114.217.185)
- # [22:55] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [22:56] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
- # [22:56] * Joins: jacobolus (~jacobolus@108-75-75-178.lightspeed.sntcca.sbcglobal.net)
- # [22:59] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: Computer has gone to sleep.)
- # [22:59] * Quits: frozenice (~frozenice@unaffiliated/fr0zenice) (Remote host closed the connection)
- # [23:00] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:00] * Quits: scor (scor@drupal.org/user/52142/view) (Quit: scor)
- # [23:00] * Quits: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net) (Quit: miketaylr)
- # [23:12] * Joins: enr^ (~enr@90-224-37-101-no105.tbcn.telia.com)
- # [23:15] * Quits: TallTed (~Thud@63.119.36.36)
- # [23:15] * Quits: enr (~enr@107.6.80.86) (Ping timeout: 260 seconds)
- # [23:21] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [23:28] * Quits: vcarbune (~vcarbune@vpn-global-dhcp2-106.ethz.ch) (Ping timeout: 264 seconds)
- # [23:29] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [23:30] * Quits: WeirdAl (~chatzilla@g2spf.ask.info) (Remote host closed the connection)
- # [23:31] * Joins: AlexNRoss (~Aleoss@198.55.126.104)
- # [23:31] * Quits: AlexNRoss (~Aleoss@198.55.126.104) (Changing host)
- # [23:31] * Joins: AlexNRoss (~Aleoss@unaffiliated/aleoss)
- # [23:36] <Hixie> heycam|away: any opinions on https://www.w3.org/Bugs/Public/show_bug.cgi?id=22646 ?
- # [23:37] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [23:38] * Quits: rniwa (~rniwa@17.212.154.114) (Remote host closed the connection)
- # [23:42] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [23:47] * Quits: garciawe_ (~garciaweb@11-223-235-201.fibertel.com.ar) (Remote host closed the connection)
- # [23:47] * Joins: rniwa (~rniwa@17.212.154.114)
- # [23:48] * Quits: zkis (~zkis@87-95-22-126.bb.dnainternet.fi) (Ping timeout: 240 seconds)
- # [23:50] * Joins: saba (~foo@unaffiliated/saba)
- # [23:53] * Quits: mven (~mven@ip68-108-124-177.lv.lv.cox.net) (Remote host closed the connection)
- # [23:56] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com)
- # Session Close: Sat Aug 10 00:00:01 2013
The end :)