Options:
- # Session Start: Sat Apr 26 00:00:00 2014
- # Session Ident: #whatwg
- # [00:00] * Quits: Maurice` (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [00:03] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [00:07] * Joins: jeremyj (~jeremyj@17.202.44.231)
- # [00:08] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [00:11] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [00:13] * Joins: lmclister (~lmclister@192.150.10.210)
- # [00:14] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [00:14] * Quits: jensnockert_ (~jensnocke@212.16.170.227) (Remote host closed the connection)
- # [00:15] * Joins: jensnockert (~jensnocke@212.16.170.227)
- # [00:16] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Client Quit)
- # [00:17] * Joins: LazerBeak (~Lazerbeak@unafffiliated/lazerbeak)
- # [00:19] * Quits: jensnockert (~jensnocke@212.16.170.227) (Ping timeout: 265 seconds)
- # [00:20] * Quits: benv (~benv@208.64.184.50) (Quit: Computer has gone to sleep.)
- # [00:23] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [00:24] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Client Quit)
- # [00:26] <sicking> abarth: ping
- # [00:26] <abarth> sicking: hiya
- # [00:27] <sicking> abarth: do you guys have any special rules regarding loading data from filesystem:// in sandboxed pages?
- # [00:27] <abarth> we've certainly had bugs in that area
- # [00:28] <abarth> but I thought we fixed them
- # [00:28] <abarth> the problem was that those URLs contain an origin string
- # [00:28] <abarth> and sandboxed iframes have origins that can't be represented a strings
- # [00:29] <sicking> that's not quite the attack I was thinking of though
- # [00:29] <abarth> https://code.google.com/p/chromium/codesearch#chromium/src/third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp&l=47
- # [00:29] <abarth> i think we solve that problem with the security origin cache
- # [00:29] <abarth> which lets us use a memory address to represent a unique origin in some cases
- # [00:34] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [00:39] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [00:46] <sicking> abarth: speaking of origins. Did you see the recent discussion about origins for blob: URLs and data: URLs?
- # [00:47] <sicking> abarth: i put forward a proposal to fix the current mess of origins in data: URLs. I believe that different browsers still have different security handling of data:
- # [00:47] <sicking> a very handwavy proposal still
- # [00:51] <abarth> sicking: oh, what's the proposal
- # [00:52] <abarth> ?
- # [00:52] <sicking> abarth: basically treat data: as out-of-origin unless the loader explicitly opts in to something else
- # [00:52] <sicking> at least in cases where the contents of the data: can run script
- # [00:52] * Joins: jensnockert (~jensnocke@212.16.170.227)
- # [00:53] <abarth> ah, something like that could work
- # [00:53] <sicking> so for <iframe src="data:..."> it would be considered something similar to a sandboxed origin, unless you do <iframe src="data:..." allowinheritorigin?
- # [00:53] <sicking> >
- # [00:53] <sicking> we're working towards doing something similar internally in gecko
- # [00:54] <abarth> there's a little trickiness there
- # [00:54] <abarth> because you haven't linked the allowinheritorigin to the contents of the data URL in a strong way
- # [00:54] <sicking> yeah, navigation would get tricky
- # [00:55] <abarth> the trouble we have in our implementation is that when we're asked to load a URL in a frame
- # [00:55] <sicking> is that what you mean?
- # [00:55] <abarth> (yes)
- # [00:55] * Quits: zdobersek (~zan@109.201.154.158) (Quit: Leaving.)
- # [00:55] <abarth> we don't have a fool-proof way to figure out where the load request came from
- # [00:56] <sicking> just shoot from the hip, that's what we do :)
- # [00:56] <sicking> docshell is awesome
- # [00:56] <abarth> that might just be some work for us to boil that ocean and keep careful track of where the load comes from
- # [00:56] <abarth> it's harder in WebKit, but I guess that's more Apple's problem now
- # [00:56] <sicking> i think the idea would be to default all places to "treat data: as sandbox-origin", and then only whitelist particular code paths
- # [00:56] <abarth> in WebKit, the URL of the load can be mutated in arbitrary ways in the middle of the load
- # [00:57] <abarth> Blink still has all that machinery, but we can rip it out
- # [00:57] <sicking> hmm... interesting
- # [00:57] <sicking> we have similar abilities
- # [00:57] * Joins: jensnockert_ (~jensnocke@212.209.1.74)
- # [00:58] <sicking> an addon can redirect and say "don't load that URL, load this one instead"
- # [00:58] <abarth> what if they give a data URL?
- # [00:58] <abarth> does it get the origin of the site that originally asked to load http://example.com ?
- # [00:58] <sicking> it's a bit of a mess what we do now, so i don't know
- # [00:58] <sicking> but the idea would be to treat it as sandbox-origin
- # [00:59] <abarth> yeah, that makes sense
- # [00:59] <abarth> what's the usecase for making it same-origin?
- # [00:59] <abarth> i'm curious why srcdoc doesn't work instead
- # [01:00] <sicking> for workers i think there are strong use cases
- # [01:00] <sicking> i.e. doing new Worker("data:...")
- # [01:00] <abarth> oh, that case is much easier than the iframe case
- # [01:00] <sicking> in which case you want to consider the URL same-origin
- # [01:00] <abarth> because there's no navigation to worry about
- # [01:00] <sicking> right
- # [01:01] <sicking> for <iframe> i'm not sure. I'm sure people do use <iframe src="data:...">, but i'm not sure if they have strong use cases
- # [01:01] <abarth> so, you'd write new Worker("data:...", { dataURLsInheritOrigins: true } ) ?
- # [01:01] * Quits: jensnockert (~jensnocke@212.16.170.227) (Ping timeout: 265 seconds)
- # [01:01] <sicking> yeah, something like that
- # [01:01] <sicking> *handwave*
- # [01:01] <abarth> yeah, that would be easy for us to implement
- # [01:02] <abarth> the worker loading path is complicated, but it's just a straight line :)
- # [01:03] <sicking> heh
- # [01:03] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [01:03] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [01:03] <sicking> a question is what to do if you write: new Worker("http://...", { dataURLsInheritOrigins: true })
- # [01:04] <sicking> and the http server redirects to data:
- # [01:04] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [01:04] <sicking> I'd be inclined to say that it should be treated like sandbox-origin (which means that it'll fail)
- # [01:05] * Joins: yoav (~yoav@212.183.128.157)
- # [01:08] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [01:09] * Quits: abinader (sid21713@gateway/web/irccloud.com/x-mvcuxcggemjspxif)
- # [01:10] <abarth> I think we block redirects to data URLs entirely
- # [01:15] <sicking> ah
- # [01:15] <sicking> we don't
- # [01:16] <sicking> but we always treat them as sandbox-origin I think
- # [01:16] * Quits: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod) (Remote host closed the connection)
- # [01:17] * Joins: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod)
- # [01:21] * Quits: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod) (Ping timeout: 255 seconds)
- # [01:22] * Joins: benv (~benv@38.104.194.126)
- # [01:24] * Joins: dbaron (~dbaron@corp-nat.p2p.sfo1.mozilla.com)
- # [01:27] * Quits: KevinMarks (~yaaic@2607:fb90:509:2025:e6dc:6c5:3c7:6bf8) (Ping timeout: 240 seconds)
- # [01:31] * Krinkle|detached is now known as Krinkle
- # [01:31] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [01:32] * Quits: lmclister (~lmclister@192.150.10.210)
- # [01:33] * Joins: KevinMarks (~yaaic@2607:fb90:509:2025:d76d:9a9:d83f:3819)
- # [01:33] * Quits: jensnockert_ (~jensnocke@212.209.1.74) (Read error: Connection reset by peer)
- # [01:35] * Quits: jeremyj (~jeremyj@17.202.44.231) (Ping timeout: 255 seconds)
- # [01:38] * Joins: jensnockert_ (~jensnocke@212.209.1.74)
- # [01:39] * Quits: jensnockert (~jensnocke@212.209.1.74) (Ping timeout: 265 seconds)
- # [01:48] * Joins: gavin_ (~gavin@76.14.87.162)
- # [01:54] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [01:57] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [01:59] * Quits: jeffreyatw (~jeffreyat@173.247.197.10) (Quit: jeffreyatw)
- # [02:02] * Quits: ap (~ap@17.202.44.214) (Quit: ap)
- # [02:05] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [02:08] * Quits: weinig (~weinig@17.114.216.47) (Quit: weinig)
- # [02:09] * Quits: jsbell (jsbell@nat/google/x-cmqsapqzdifivuwx) (Quit: There's no place like home...)
- # [02:09] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 276 seconds)
- # [02:14] * Quits: gavin_ (~gavin@76.14.87.162) (Remote host closed the connection)
- # [02:14] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [02:14] * Joins: gavin_ (~gavin@76.14.87.162)
- # [02:16] * Quits: heycam|away|away (~cam@wok.mcc.id.au) (Quit: Terminated with extreme prejudice - dircproxy 1.0.5)
- # [02:20] * Quits: gavin_ (~gavin@76.14.87.162) (Remote host closed the connection)
- # [02:20] * Joins: gavin_ (~gavin@76.14.87.162)
- # [02:21] * Quits: nielsle (~nielsle@3239078-cl69.boa.fiberby.dk) (Quit: Ex-Chat)
- # [02:27] * Quits: ehsan (~ehsan@66.207.208.102) (Remote host closed the connection)
- # [02:38] * Joins: lmclister (~lmclister@c-98-210-38-110.hsd1.ca.comcast.net)
- # [02:47] * Joins: weinig (~weinig@98.234.191.242)
- # [02:47] * Quits: llkats (~llkats@h-64-236-138-3.aoltw.net) (Remote host closed the connection)
- # [02:50] * Quits: weinig (~weinig@98.234.191.242) (Client Quit)
- # [03:00] * Joins: jmason (~jmason@174.137.110.73)
- # [03:05] * Quits: dbaron (~dbaron@corp-nat.p2p.sfo1.mozilla.com) (Ping timeout: 252 seconds)
- # [03:05] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [03:09] * Quits: ambv (~ambv@206.108.217.134) (Read error: Connection reset by peer)
- # [03:10] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [03:11] * Joins: ambv (~ambv@206.108.217.134)
- # [03:17] * Joins: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod)
- # [03:18] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Ping timeout: 265 seconds)
- # [03:20] * Quits: lmclister (~lmclister@c-98-210-38-110.hsd1.ca.comcast.net)
- # [03:22] * Quits: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod) (Ping timeout: 264 seconds)
- # [03:34] * Quits: jensnockert_ (~jensnocke@212.209.1.74) (Remote host closed the connection)
- # [03:47] * Quits: JosephSilber (~Joseph@ool-44c3e80a.static.optonline.net) (Ping timeout: 276 seconds)
- # [03:54] * Quits: jmason (~jmason@174.137.110.73) (Ping timeout: 240 seconds)
- # [03:54] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [03:56] * Joins: dbaron (~dbaron@50-0-248-164.dsl.dynamic.sonic.net)
- # [03:57] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [04:02] * Quits: ambv (~ambv@206.108.217.134) (Quit: sys.exit(0) # computer went to sleep)
- # [04:04] <Domenic_> Hixie: https://www.dropbox.com/s/pk685ndmevf2jee/Screenshot%202014-04-25%2022.03.08.png
- # [04:06] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [04:09] <zewt> the vertical gradient is a bit unpleasant, but I don't see that when I load it
- # [04:09] * Quits: rniwa (~rniwa@17.202.43.222) (Read error: Connection reset by peer)
- # [04:09] <zewt> by the way, vertical tabs ^5
- # [04:10] * Quits: ivan`` (~ivan@unaffiliated/ivan/x-000001) (Quit: ERC Version 5.3 (IRC client for Emacs))
- # [04:10] <Hixie> Domenic_: it's all changed now :-)
- # [04:10] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [04:11] <Hixie> (what was the problem with that screen shot?)
- # [04:11] <Domenic_> Ohhh, that's nicer
- # [04:11] <Domenic_> the overflowing text and the weird color distribution when not in a 3x3 grid
- # [04:11] <Hixie> meh, not sure it's that much better. i'm still not really hapy with it overall.
- # [04:12] <Hixie> happy
- # [04:12] <Domenic_> it's definitely better.
- # [04:12] <Domenic_> It'd be nice if the groups were always on the same line
- # [04:12] <Hixie> hmmm
- # [04:13] <zewt> if there was some way to have CSS derive colors using a formula taking the X and Y position relative to some position into account, and maybe select colors in an HSV color space, you could have the items select colors in some smart way based on how they're laid out dynamically :P
- # [04:13] <zewt> (was: re: no)
- # [04:14] <zewt> it's sort of weird how resizing the page in chrome makes chrome freeze up for 1-2 seconds
- # [04:14] * Quits: dbaron (~dbaron@50-0-248-164.dsl.dynamic.sonic.net) (Ping timeout: 276 seconds)
- # [04:14] <zewt> i'd think it'd just lay out the stuff that's visible, and do some really fast rough estimation for the rest just to guesstimate the scrollbar
- # [04:15] * Joins: ivan`` (~ivan@unaffiliated/ivan/x-000001)
- # [04:16] * Quits: ivan`` (~ivan@unaffiliated/ivan/x-000001) (Remote host closed the connection)
- # [04:16] * Quits: benv (~benv@38.104.194.126) (Quit: Computer has gone to sleep.)
- # [04:16] <zewt> oops, i forgot that opening the inspector on the spec is a mistake
- # [04:16] * Joins: rniwa (~rniwa@17.202.43.222)
- # [04:18] <zewt> fwiw, I have no idea what the "watch for updates" checkbox means
- # [04:18] <zewt> (not so much asking for an explanation as pointing out the page seems unobvious)
- # [04:18] <Hixie> it does pretty much exactly what it says
- # [04:18] <zewt> the text says to me "click here to sign up for emails when something changes", but that doesn't make sense with a checkbox
- # [04:19] <Hixie> that's the "Edit Subscriptions" button
- # [04:19] * Joins: ivan`` (~ivan@unaffiliated/ivan/x-000001)
- # [04:20] * Quits: ivan`` (~ivan@unaffiliated/ivan/x-000001) (Remote host closed the connection)
- # [04:21] <Hixie> Domenic_: ok, they stick together now
- # [04:22] <Domenic_> Hixie: nice, I think that's a definite win.
- # [04:25] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [04:26] * Joins: ivan`` (~ivan@unaffiliated/ivan/x-000001)
- # [04:27] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [04:34] * Quits: LazerBeak (~Lazerbeak@unafffiliated/lazerbeak) (Ping timeout: 264 seconds)
- # [04:37] * Joins: weinig (~weinig@98.234.191.242)
- # [04:39] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [04:46] * Krinkle is now known as Krinkle|detached
- # [05:01] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [05:07] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [05:07] * Joins: bholley_ (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [05:07] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [05:08] * Quits: bholley_ (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Client Quit)
- # [05:11] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [05:27] * Joins: gavin__ (~gavin@76.14.87.162)
- # [05:30] * Joins: boogyman (~boogyman@pdpc/supporter/professional/boogyman)
- # [05:31] * Quits: gavin__ (~gavin@76.14.87.162) (Remote host closed the connection)
- # [05:32] * Quits: gavin_ (~gavin@76.14.87.162) (Ping timeout: 276 seconds)
- # [05:38] * Joins: tantek (~tantek@172.56.18.237)
- # [05:58] * Quits: eatsomeatso (~eatsomeat@gateway/tor-sasl/eatsomeatso) (Quit: eatsomeatso)
- # [05:59] * Quits: slopjong (~slopjong@linda.rhrk.uni-kl.de) (Ping timeout: 245 seconds)
- # [06:08] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [06:08] * Quits: tantek (~tantek@172.56.18.237) (Quit: tantek)
- # [06:12] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 255 seconds)
- # [06:12] * Joins: dbaron (~dbaron@50-0-248-164.dsl.dynamic.sonic.net)
- # [06:17] * Joins: tantek (~tantek@172.56.18.237)
- # [06:18] * Quits: tantek (~tantek@172.56.18.237) (Client Quit)
- # [06:24] * Quits: ahf (ahf@irssi/staff/ahf) (Ping timeout: 240 seconds)
- # [06:41] * Joins: tantek (~tantek@172.56.18.237)
- # [06:43] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [06:44] * Quits: rniwa (~rniwa@17.202.43.222) (Quit: rniwa)
- # [06:47] * Joins: llkats (~llkats@c-69-181-45-245.hsd1.ca.comcast.net)
- # [06:52] * Quits: llkats (~llkats@c-69-181-45-245.hsd1.ca.comcast.net) (Ping timeout: 255 seconds)
- # [06:55] * Quits: jwalden (~waldo@corp.mtv2.mozilla.com) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 27.0/20140203120101])
- # [07:00] * Quits: falken_ (uid20729@gateway/web/irccloud.com/x-jqybceignjvpuoxj) (Quit: Connection closed for inactivity)
- # [07:04] * Joins: benv (~benv@c-67-188-10-155.hsd1.ca.comcast.net)
- # [07:07] * Quits: ImBcmDth (~Jon@oftn/member/ImBcmDth) (Read error: Connection reset by peer)
- # [07:07] * Joins: ImBcmDth (~Jon@oftn/member/ImBcmDth)
- # [07:08] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [07:13] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [07:19] * Joins: sicking (~sicking@c-98-210-154-157.hsd1.ca.comcast.net)
- # [07:21] * Joins: BigBangUDR (~Thunderbi@220.225.242.27)
- # [07:24] * Quits: benv (~benv@c-67-188-10-155.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [07:28] * Joins: lmclister (~lmclister@c-98-210-38-110.hsd1.ca.comcast.net)
- # [07:51] * Joins: weinig (~weinig@98.234.191.242)
- # [07:56] * Quits: tav (~tav`@host109-154-1-226.range109-154.btcentralplus.com) (Quit: tav)
- # [08:03] * Quits: bufferino (~bufferino@unaffiliated/bufferino) (Read error: Connection reset by peer)
- # [08:03] * Joins: bufferino (~bufferino@bb115-66-4-98.singnet.com.sg)
- # [08:03] * Quits: bufferino (~bufferino@bb115-66-4-98.singnet.com.sg) (Changing host)
- # [08:03] * Joins: bufferino (~bufferino@unaffiliated/bufferino)
- # [08:09] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [08:13] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [08:23] * Quits: lmclister (~lmclister@c-98-210-38-110.hsd1.ca.comcast.net)
- # [08:33] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [08:35] * Quits: sicking (~sicking@c-98-210-154-157.hsd1.ca.comcast.net) (Quit: sicking)
- # [08:38] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [08:39] * Krinkle|detached is now known as Krinkle
- # [08:46] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [08:51] * Quits: boogyman (~boogyman@pdpc/supporter/professional/boogyman) (Ping timeout: 252 seconds)
- # [08:54] * Joins: jeffreyatw (~jeffreyat@199-188-192-206.PUBLIC.monkeybrains.net)
- # [08:56] * Joins: nielsle (~nielsle@3239078-cl69.boa.fiberby.dk)
- # [09:05] * Joins: IZh (~IZh@0897578511.static.corbina.ru)
- # [09:06] * Quits: CvP (~CvP@27.147.198.50) (Disconnected by services)
- # [09:06] * Joins: xCG (~CvP@27.147.198.50)
- # [09:07] * Joins: zdobersek (~zan@109.201.152.241)
- # [09:09] * xCG is now known as CvP
- # [09:10] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [09:11] * Quits: yoav (~yoav@212.183.128.157) (Ping timeout: 240 seconds)
- # [09:15] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 276 seconds)
- # [09:23] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [09:28] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [09:29] * Joins: slopjong (~slopjong@linda.rhrk.uni-kl.de)
- # [09:33] * Quits: jeffreyatw (~jeffreyat@199-188-192-206.PUBLIC.monkeybrains.net) (Quit: jeffreyatw)
- # [09:36] * Joins: zdobersek1 (~zan@cpe-77.38.31.63.cable.t-1.si)
- # [09:39] * Quits: zdobersek (~zan@109.201.152.241) (Ping timeout: 265 seconds)
- # [09:41] * Quits: tantek (~tantek@172.56.18.237) (Quit: tantek)
- # [09:44] * Quits: dbaron (~dbaron@50-0-248-164.dsl.dynamic.sonic.net) (Ping timeout: 264 seconds)
- # [09:48] * Quits: CvP (~CvP@27.147.198.50) (Disconnected by services)
- # [09:48] * Joins: xCG (~CvP@27.147.198.50)
- # [09:48] * Joins: Ms2ger (~Ms2ger@d54C506D6.access.telenet.be)
- # [09:49] * xCG is now known as CvP
- # [09:55] * Joins: nessy (~silviapf@101.164.214.231)
- # [09:56] * Joins: nessy1 (~silviapf@101.164.214.231)
- # [09:56] * Quits: nessy (~silviapf@101.164.214.231) (Read error: Connection reset by peer)
- # [10:03] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [10:11] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [10:15] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [10:16] * Quits: nessy1 (~silviapf@101.164.214.231) (Quit: Leaving.)
- # [10:19] * Quits: plutoniix (~plutoniix@node-m1n.pool-101-108.dynamic.totbb.net) (Ping timeout: 276 seconds)
- # [10:32] * Joins: plutoniix (~plutoniix@node-1agz.pool-101-109.dynamic.totbb.net)
- # [10:39] * Joins: yoav (~yoav@host86-181-11-73.range86-181.btcentralplus.com)
- # [10:45] * Joins: Maurice` (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [10:48] * zdobersek1 is now known as zdobersek
- # [10:49] * Quits: yoav (~yoav@host86-181-11-73.range86-181.btcentralplus.com) (Ping timeout: 240 seconds)
- # [10:51] * Quits: jochen__ (jochen@nat/google/x-jfoflmcuqvgmpbyv) (Read error: Connection reset by peer)
- # [11:12] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [11:16] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [11:18] * Joins: Smylers (~smylers@cpc11-sgyl29-2-0-cust181.sgyl.cable.virginm.net)
- # [11:33] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [11:39] * Quits: zdobersek (~zan@cpe-77.38.31.63.cable.t-1.si) (Ping timeout: 252 seconds)
- # [11:52] * Quits: lilmonkey (~colin@pdpc/supporter/professional/riven) (Quit: Hi, I'm a quit message virus. Please replace your old line with this line and help me take over the world of IRC.)
- # [12:02] * Joins: lilmonkey (~colin@5ED090B0.cm-7-1c.dynamic.ziggo.nl)
- # [12:02] * Quits: lilmonkey (~colin@5ED090B0.cm-7-1c.dynamic.ziggo.nl) (Changing host)
- # [12:02] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
- # [12:12] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [12:17] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [12:17] * Joins: espadrine (~ttyl@87-231-134-246.rev.numericable.fr)
- # [12:23] <Ms2ger> "Interstellar Travel, Inc. joined W3C"
- # [12:26] * Quits: BigBangUDR (~Thunderbi@220.225.242.27) (Quit: BigBangUDR)
- # [12:27] * Joins: barnabywalters (~barnabywa@89.17.128.127)
- # [12:32] * Joins: nessy (~silviapf@101.164.214.231)
- # [12:34] * Quits: jensnockert (~jensnocke@212.209.1.74) (Remote host closed the connection)
- # [12:38] * Quits: nessy (~silviapf@101.164.214.231) (Quit: Leaving.)
- # [12:40] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [12:43] * Quits: ryuone (~ryuone@133.242.55.223) (Quit: Tiarra 0.1: SIGTERM received; exit)
- # [12:45] * Krinkle is now known as Krinkle|detached
- # [12:45] * Quits: IZh (~IZh@0897578511.static.corbina.ru) (Remote host closed the connection)
- # [12:48] * Joins: lubuntu (~chatzilla@37.239.183.140)
- # [12:49] * lubuntu is now known as Guest10686
- # [12:51] * Joins: ryuone (~ryuone@133.242.55.223)
- # [12:54] * Quits: Guest10686 (~chatzilla@37.239.183.140) (Ping timeout: 252 seconds)
- # [12:59] * Joins: nessy (~silviapf@101.164.214.231)
- # [12:59] * Quits: jensnockert (~jensnocke@212.209.1.74) (Read error: Connection reset by peer)
- # [12:59] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [13:00] * Quits: nessy (~silviapf@101.164.214.231) (Client Quit)
- # [13:01] * Joins: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl)
- # [13:07] * Joins: nessy (~silviapf@101.164.214.231)
- # [13:13] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [13:15] * Quits: barnabywalters (~barnabywa@89.17.128.127) (Quit: barnabywalters)
- # [13:16] * Quits: nessy (~silviapf@101.164.214.231) (Quit: Leaving.)
- # [13:17] * Joins: MutantMahesh (b4d7a583@gateway/web/freenode/ip.180.215.165.131)
- # [13:18] * MutantMahesh is now known as Guest51915
- # [13:18] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 265 seconds)
- # [13:18] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [13:21] * Quits: CvP (~CvP@27.147.198.50) (Disconnected by services)
- # [13:21] * Joins: xCG (~CvP@27.147.198.50)
- # [13:21] * Guest51915 is now known as MutantMahesh
- # [13:21] * Quits: MutantMahesh (b4d7a583@gateway/web/freenode/ip.180.215.165.131) (Changing host)
- # [13:21] * Joins: MutantMahesh (b4d7a583@unaffiliated/msankhala)
- # [13:21] * Quits: MutantMahesh (b4d7a583@unaffiliated/msankhala) (Changing host)
- # [13:21] * Joins: MutantMahesh (b4d7a583@gateway/web/freenode/ip.180.215.165.131)
- # [13:22] * Quits: xCG (~CvP@27.147.198.50) (Read error: Connection reset by peer)
- # [13:23] * Joins: CvP (~CvP@27.147.198.50)
- # [13:36] * Joins: lubuntu (~chatzilla@37.239.201.213)
- # [13:36] * Quits: jensnockert (~jensnocke@212.209.1.74) (Read error: Connection reset by peer)
- # [13:36] * lubuntu is now known as Guest64648
- # [13:36] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [13:39] * Joins: Lachy_ (~Lachy@64.9.156.230)
- # [13:41] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Ping timeout: 276 seconds)
- # [13:47] <annevk> lol Apple still uses DTDs and stuff http://www.macrumors.com/2014/04/25/touch-id-ipad-biometrickit/
- # [13:54] * Quits: jensnockert (~jensnocke@212.209.1.74) (Remote host closed the connection)
- # [13:56] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [13:59] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [14:03] * Quits: cheron (~cheron@unaffiliated/cheron) (Ping timeout: 240 seconds)
- # [14:05] * Quits: jensnockert (~jensnocke@212.209.1.74) (Remote host closed the connection)
- # [14:07] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [14:07] * Joins: zdobersek (~zan@tsn77-247-182-241.dyn.nltelcom.net)
- # [14:13] * Quits: Guest64648 (~chatzilla@37.239.201.213) (Ping timeout: 252 seconds)
- # [14:14] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [14:17] * Joins: tantek (~tantek@172.56.18.237)
- # [14:18] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 240 seconds)
- # [14:19] * Joins: barnabywalters (~barnabywa@89.17.128.127)
- # [14:20] * GPHemsley wants to work on space travel specs!
- # [14:27] * Quits: tantek (~tantek@172.56.18.237) (Quit: tantek)
- # [14:28] * Quits: barnabywalters (~barnabywa@89.17.128.127) (Quit: barnabywalters)
- # [14:31] * Quits: MutantMahesh (b4d7a583@gateway/web/freenode/ip.180.215.165.131) (Ping timeout: 240 seconds)
- # [14:48] * Joins: eatsomeatso (~eatsomeat@gateway/tor-sasl/eatsomeatso)
- # [15:02] * Joins: tantek (~tantek@172.56.18.237)
- # [15:03] * Joins: fishd__ (~darin@216.239.45.66)
- # [15:06] * Quits: fishd_ (~darin@216.239.45.83) (Ping timeout: 252 seconds)
- # [15:13] * Joins: Dashiva_k (Dashiva@wikia/Dashiva)
- # [15:15] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [15:15] * Quits: Dashiva (Dashiva@wikia/Dashiva) (Ping timeout: 245 seconds)
- # [15:15] * Dashiva_k is now known as Dashiva
- # [15:19] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 255 seconds)
- # [15:20] * Quits: tantek (~tantek@172.56.18.237) (Ping timeout: 276 seconds)
- # [15:28] * Quits: Lachy_ (~Lachy@64.9.156.230) (Ping timeout: 265 seconds)
- # [15:30] * Quits: jensnockert (~jensnocke@212.209.1.74) (Read error: Connection reset by peer)
- # [15:30] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [15:31] * Quits: jensnockert (~jensnocke@212.209.1.74) (Remote host closed the connection)
- # [15:34] * Krinkle|detached is now known as Krinkle
- # [15:34] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [15:34] * Joins: jmason (~jmason@174.137.110.73)
- # [15:37] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [16:05] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [16:07] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Client Quit)
- # [16:11] * Joins: tav (~tav`@host109-154-1-226.range109-154.btcentralplus.com)
- # [16:15] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [16:16] * Joins: BigBangUDR (~Thunderbi@101.57.201.226)
- # [16:17] * Quits: BigBangUDR (~Thunderbi@101.57.201.226) (Client Quit)
- # [16:20] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 276 seconds)
- # [16:23] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [16:34] * Quits: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl) (Remote host closed the connection)
- # [16:35] * Quits: espadrine (~ttyl@87-231-134-246.rev.numericable.fr) (Ping timeout: 240 seconds)
- # [16:44] * Joins: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net)
- # [16:48] * Joins: ambv (~ambv@d23-16-55-40.bchsia.telus.net)
- # [16:48] * Quits: bholley (~bholley@c-50-148-162-19.hsd1.ca.comcast.net) (Ping timeout: 255 seconds)
- # [16:59] * Joins: smaug____ (~chatzilla@cs78246079.pp.htv.fi)
- # [17:01] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [17:06] * Quits: ambv (~ambv@d23-16-55-40.bchsia.telus.net) (Quit: sys.exit(0) # computer went to sleep)
- # [17:16] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [17:20] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [17:23] * Joins: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod)
- # [17:28] * Quits: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod) (Ping timeout: 264 seconds)
- # [17:30] * Joins: benvie (~bbenvie@204.28.118.69)
- # [17:53] * Joins: LazerBeak (~Lazerbeak@unafffiliated/lazerbeak)
- # [17:54] * Joins: bholley (~bholley@98.210.101.88)
- # [17:58] * Joins: BigBangUDR (~Thunderbi@101.57.201.226)
- # [17:59] * Quits: BigBangUDR (~Thunderbi@101.57.201.226) (Client Quit)
- # [18:02] * Joins: weinig (~weinig@98.234.191.242)
- # [18:03] * Quits: benvie (~bbenvie@204.28.118.69)
- # [18:13] * Quits: bholley (~bholley@98.210.101.88) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [18:16] * Joins: espadrine (~ttyl@AMontsouris-158-1-57-222.w92-128.abo.wanadoo.fr)
- # [18:17] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [18:17] * Joins: sicking (~sicking@c-98-210-154-157.hsd1.ca.comcast.net)
- # [18:21] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [18:22] * Krinkle is now known as Krinkle|detached
- # [18:51] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [18:51] * Quits: Rubennn (~Rubennn@apher.gewooniets.nl) (Quit: leaving)
- # [18:52] * Joins: Rubennn (~Rubennn@apher.gewooniets.nl)
- # [18:54] * Quits: Ms2ger (~Ms2ger@d54C506D6.access.telenet.be) (Quit: nn)
- # [18:57] * Joins: KevinMarks_ (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net)
- # [18:59] * Joins: seventh (seventh@207.207.28.66)
- # [19:17] * Joins: dbaron (~dbaron@50-0-248-164.dsl.dynamic.sonic.net)
- # [19:18] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [19:22] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 240 seconds)
- # [19:22] * Quits: LazerBeak (~Lazerbeak@unafffiliated/lazerbeak) (Read error: Connection reset by peer)
- # [19:23] * Joins: LazerBeak (~Lazerbeak@unafffiliated/lazerbeak)
- # [19:24] * Joins: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod)
- # [19:25] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [19:28] * Quits: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod) (Ping timeout: 240 seconds)
- # [19:35] * Joins: benv (~benv@c-67-188-10-155.hsd1.ca.comcast.net)
- # [19:51] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [20:00] <manu> In space, the only MUST is survival.
- # [20:01] <manu> (bad spec jokes, or a great tag line to a standardization movie set in space)
- # [20:01] * Joins: barnabywalters (~barnabywa@89.17.128.127)
- # [20:01] * Quits: jensnockert (~jensnocke@212.209.1.74) (Remote host closed the connection)
- # [20:08] * Joins: program247365 (~program24@cpe-76-180-53-113.buffalo.res.rr.com)
- # [20:08] * Parts: program247365 (~program24@cpe-76-180-53-113.buffalo.res.rr.com)
- # [20:11] * Quits: rektide (~rektide@eldergods.com) (Ping timeout: 245 seconds)
- # [20:12] * Joins: rektide (~rektide@eldergods.com)
- # [20:13] * Quits: benv (~benv@c-67-188-10-155.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [20:18] * Quits: barnabywalters (~barnabywa@89.17.128.127) (Quit: barnabywalters)
- # [20:23] * Joins: boogyman (~boogyman@pdpc/supporter/professional/boogyman)
- # [20:33] * Joins: jensnockert (~jensnocke@212.209.1.74)
- # [20:36] * Joins: ahf (ahf@irssi/staff/ahf)
- # [20:37] * Quits: jensnockert (~jensnocke@212.209.1.74) (Ping timeout: 240 seconds)
- # [20:43] * Joins: BigBangUDR (~Thunderbi@101.59.251.171)
- # [20:43] * Quits: BigBangUDR (~Thunderbi@101.59.251.171) (Client Quit)
- # [20:45] * Joins: SonicX (~quassel@ip98-180-46-147.ga.at.cox.net)
- # [20:48] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [20:49] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [20:53] * Joins: barnabywalters (~barnabywa@89.17.128.127)
- # [20:57] * Quits: boogyman (~boogyman@pdpc/supporter/professional/boogyman) (Ping timeout: 252 seconds)
- # [20:58] * Joins: llkats_ (~llkats@c-69-181-45-245.hsd1.ca.comcast.net)
- # [21:05] * Quits: sicking (~sicking@c-98-210-154-157.hsd1.ca.comcast.net) (Quit: sicking)
- # [21:05] * Quits: barnabywalters (~barnabywa@89.17.128.127) (Quit: barnabywalters)
- # [21:05] * Quits: Smylers (~smylers@cpc11-sgyl29-2-0-cust181.sgyl.cable.virginm.net) (Quit: Leaving.)
- # [21:07] * Joins: bret (~boot@50.7.8.106)
- # [21:17] * Quits: tav (~tav`@host109-154-1-226.range109-154.btcentralplus.com) (Quit: tav)
- # [21:18] * Joins: barnabywalters (~barnabywa@89.17.128.127)
- # [21:23] * Joins: tav (~tav`@host109-154-1-226.range109-154.btcentralplus.com)
- # [21:25] * Joins: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod)
- # [21:30] * Quits: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod) (Ping timeout: 255 seconds)
- # [21:32] <smaug____> xhr spec is getting hard to follow :(
- # [21:53] * Quits: tav (~tav`@host109-154-1-226.range109-154.btcentralplus.com) (Quit: tav)
- # [21:54] * Joins: BigBangUDR (~Thunderbi@101.59.251.171)
- # [21:57] * Joins: tav (~tav`@host109-154-1-226.range109-154.btcentralplus.com)
- # [22:03] * Joins: bholley (~bholley@98.210.101.88)
- # [22:03] * Quits: LazerBeak (~Lazerbeak@unafffiliated/lazerbeak) (Ping timeout: 264 seconds)
- # [22:05] * Joins: jwalden (~waldo@c-50-168-55-219.hsd1.ca.comcast.net)
- # [22:06] * Quits: smaug____ (~chatzilla@cs78246079.pp.htv.fi) (Ping timeout: 240 seconds)
- # [22:07] * Quits: BigBangUDR (~Thunderbi@101.59.251.171) (Quit: BigBangUDR)
- # [22:11] * Joins: program247365 (~program24@cpe-76-180-53-113.buffalo.res.rr.com)
- # [22:12] * Joins: srji (~srji@p508BA99E.dip0.t-ipconnect.de)
- # [22:12] * Quits: bholley (~bholley@98.210.101.88) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [22:20] * Joins: weinig (~weinig@17.114.216.47)
- # [22:34] * Joins: benv (~benv@c-67-188-10-155.hsd1.ca.comcast.net)
- # [22:41] * Joins: ambv (~ambv@d23-16-55-40.bchsia.telus.net)
- # [22:42] * Quits: 18VAALVTL (scrollback@conference/jsconf/x-qubbexjnwuflqayv) (Remote host closed the connection)
- # [22:43] * Joins: 17WAAKP6J (scrollback@conference/jsconf/x-ymbbiwrzuonjnorr)
- # [22:43] <zcorpan> https://bugs.webkit.org/show_bug.cgi?id=81752 yay productive
- # [22:48] * Joins: LazerBeak (~Lazerbeak@unafffiliated/lazerbeak)
- # [22:49] <jgraham> Well maybe if WebKit starts getting left behind they will give up with the stop energy on specwise correctness changes
- # [22:50] <jgraham> Alternatively buy some popcorn and enjoy the show
- # [22:51] <jgraham> Alternatively spend a few seconds reviewing https://critic.hoppipolla.co.uk/r/1393 instead ;)
- # [22:55] <zcorpan> jgraham: SharedWorker should never propagate error to window per spec, but dunno if you need to care about that in this test. i think i checked for it in some other sharedworker tests
- # [22:55] <jgraham> zcorpan: Yeah, I guess that's a bug in Gecko
- # [22:55] <zcorpan> yep
- # [22:56] <jgraham> But having this test be stable in the face of that bug is useful, especially if we check for it elsewhere
- # [22:57] * Quits: SonicX (~quassel@ip98-180-46-147.ga.at.cox.net) (Remote host closed the connection)
- # [22:57] <zcorpan> makes sense
- # [23:00] * Quits: benv (~benv@c-67-188-10-155.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [23:04] * Quits: ambv (~ambv@d23-16-55-40.bchsia.telus.net) (Quit: sys.exit(0) # computer went to sleep)
- # [23:06] <jgraham> zcorpan: Thanks
- # [23:08] * Parts: program247365 (~program24@cpe-76-180-53-113.buffalo.res.rr.com)
- # [23:12] * Quits: roven (~roven@78-20-24-80.access.telenet.be)
- # [23:19] * Quits: llkats_ (~llkats@c-69-181-45-245.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [23:19] * Quits: LazerBeak (~Lazerbeak@unafffiliated/lazerbeak) (Ping timeout: 264 seconds)
- # [23:22] * Joins: bholley (~bholley@98.210.101.88)
- # [23:23] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: Textual IRC Client: www.textualapp.com)
- # [23:26] * Joins: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod)
- # [23:30] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [23:31] * Quits: Jarrod_ (~Jarrod_@pdpc/supporter/active/jarrod) (Ping timeout: 276 seconds)
- # [23:31] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [23:32] * Joins: benv (~benv@c-67-188-10-155.hsd1.ca.comcast.net)
- # [23:32] * Joins: llkats (~llkats@c-69-181-45-245.hsd1.ca.comcast.net)
- # [23:33] * Quits: bholley (~bholley@98.210.101.88) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [23:35] * Joins: IZh (~IZh@0897578511.static.corbina.ru)
- # [23:35] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 240 seconds)
- # [23:35] <Hixie> jgraham: how's the spec's header? still too ugly?
- # [23:38] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [23:38] * Joins: bholley (~bholley@98.210.101.88)
- # [23:46] <IZh> Hixie: What about to make red image [WHATWG] on every page of developers site to be a link to whatwg.org?
- # [23:47] <IZh> Hi.
- # [23:47] <Hixie> that's benschwarz's
- # [23:48] <IZh> benschwarz: Hi.
- # [23:50] <IZh> Hixie: and what is yours? ;-)
- # [23:52] <Hixie> my what?
- # [23:52] <jgraham> Hixie: Well I don't exactly like it, but it's no worse than the rest of the spec now :)
- # [23:52] <Hixie> jgraham: ok, same as me then :-)
- # [23:52] <Hixie> jgraham: definitely open to better ideas if you have any btw :-)
- # [23:53] <IZh> Hixie: responsibility. I'm new here and don't know yet who makes what. :-)
- # [23:53] <Hixie> aah
- # [23:53] <Hixie> i do the html spec
- # [23:53] <Hixie> http://whatwg.org/html
- # [23:53] <Hixie> benschwarz: does the conversion to developers.whatwg.org
- # [23:53] <Hixie> (much like you do the conversion to pdf)
- # [23:54] <Hixie> anne does most of the other specs, like url, xhr, dom
- # [23:54] <Hixie> jgraham and zcorpan and others do a lot of testing and spec review
- # [23:54] <Hixie> smaug and others do implementation
- # [23:55] <IZh> I see. :-) It would be nice to note it somewhere on the site. :-)
- # [23:58] <IZh> By the way, offline caching is a coolest idea. Why not all sites in the XXI century use it? :-) It's Very useful for mobile browsing.
- # Session Close: Sun Apr 27 00:00:00 2014
The end :)