Options:
- # Session Start: Tue Jul 10 00:00:00 2012
- # Session Ident: #whatwg
- # [00:01] <TabAtkins_> It would be nice if we didn't do so yet. ^_^
- # [00:03] <Hixie> anyone know if any non-chrome browsers implement seamless="" yet?
- # [00:04] <Hixie> TabAtkins_: any suggestions on what i should make the intrinsic width of shrinkwrapping seamless iframes?
- # [00:04] <TabAtkins_> I assume you dont' want to expose the min-content width of the contained document.
- # [00:04] <TabAtkins_> So... probably 300px.
- # [00:05] <Hixie> i think the ideal width to expose would be the canvas shrink-wrap width, but that seems impossible to define in a way that isn't sometimes impossible to calculate
- # [00:05] * Joins: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [00:06] <TabAtkins_> The canvas doesn't have a shrink-wrap width, unless you mean the document's shrink-wrap width. That's always possible to calculate, but it will expose data about the document.
- # [00:06] <Hixie> exposing data is fine, these are always same-origin
- # [00:06] <Hixie> we're already exposing the height
- # [00:07] <TabAtkins_> Oh, okay. Then yeah, just get the document's own intrinsic width. That's always well-defined.
- # [00:07] <Hixie> fair enough
- # [00:07] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [00:08] <Hixie> (what should i reference?)
- # [00:08] <TabAtkins_> CSS 2.1.
- # [00:09] * Joins: SimonSapin (~simon@ip-222.net-80-236-80.issy.rev.numericable.fr)
- # [00:09] <Hixie> i don't see anything in css2.1 about documents having intrinsic dimensions, unless i'm missing something.
- # [00:09] <Hixie> there's stuff about the root element, but that depends on the viewport
- # [00:09] <Hixie> and it's the viewport i'm trying to size
- # [00:10] <TabAtkins_> You want the fit-content size of the root element.
- # [00:10] * Joins: gkellogg__ (~gregg@38.127.199.123)
- # [00:10] <TabAtkins_> fit-content depends on min-content, max-content, and the available space, none of which are dependent on the viewport size.
- # [00:11] * Joins: MikeSmith_ (~MikeSmith@s1106117.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [00:11] <TabAtkins_> Though, hm, actually the available space would depend on the viewport size naively.
- # [00:11] <TabAtkins_> So instead, just use the definition directly - max(min-content, min(max-content, available space for the iframe))
- # [00:12] * Quits: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Quit: abarth_)
- # [00:12] * jonlee is now known as jonlee|afk
- # [00:12] <Hixie> "available space for the iframe" is undefined in this case, i think (we're talking about out-of-flow or inline-blocks iframes)
- # [00:12] <TabAtkins_> No, it's well-defined. It's the width of the iframe's containing block.
- # [00:13] * Quits: gkellogg__ (~gregg@38.127.199.123) (Client Quit)
- # [00:13] * Quits: MikeSmith (~MikeSmith@s1106176.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 255 seconds)
- # [00:13] * MikeSmith_ is now known as MikeSmith
- # [00:13] <Hixie> (and fit-content doesn't seem to be in css2.1)
- # [00:13] <TabAtkins_> Which, in the worst case, is the width of the iframe's viewport.
- # [00:13] <TabAtkins_> No, it's called "shrinkwrap width" or something in 2.1. fit-content is defined in Writing Modes currently.
- # [00:13] * Quits: gkellogg_ (~gregg@38.127.199.123) (Ping timeout: 264 seconds)
- # [00:13] <Hixie> oh. css2.1 doesn't define the shrink-wrap width. :-)
- # [00:14] <Hixie> that's why i was asking in the first place :-)
- # [00:14] <TabAtkins_> (By "iframe's viewport" I mean the viewport of the document the iframe is in, not the viewport it defines for its contained document.)
- # [00:14] <Hixie> (sure)
- # [00:15] * Joins: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [00:15] * Quits: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Client Quit)
- # [00:15] <TabAtkins_> Okay, then refer to Writing Modes, say that it's the fit-content width of the document's root element, except with the available space of the iframe used in place of the available space in the algorithm.
- # [00:15] <Hixie> even if i do use the css2.1 underdefined "shrink-to-fit" width, that still won't really work, i think.
- # [00:15] <Hixie> because if the document just consists of positioned elements, the shrink-to-fit width will be 0
- # [00:15] <TabAtkins_> Yes.
- # [00:15] <TabAtkins_> That's a problem?
- # [00:16] * jonlee|afk is now known as jonlee
- # [00:16] * Joins: jacobolus (~jacobolus@c-24-5-81-102.hsd1.ca.comcast.net)
- # [00:16] <Hixie> well for the height i avoid the problem by fixing the width and using the canvas boundary extents or some such
- # [00:16] <TabAtkins_> Why are you going to that much trouble?
- # [00:16] <TabAtkins_> Just let it fall down to 0x0.
- # [00:17] <Hixie> that seems... less than ideal
- # [00:17] <TabAtkins_> They can set width/height on either the iframe, the document's root, or something else in there if they want.
- # [00:17] <TabAtkins_> You're trying to be smarter than necessary. ^_^
- # [00:18] <Hixie> story of my life :-)
- # [00:18] <Hixie> i'm thinking of just punting and making it 300x150 if they're floating/positioning the iframe
- # [00:18] <Hixie> or 300xresulting-height
- # [00:18] <TabAtkins_> <iframe seamless> is supposed to act like you just transplanted the document's root into the outer document.
- # [00:18] <TabAtkins_> So just do that.
- # [00:19] <Hixie> yeah, that's fair enough
- # [00:19] <TabAtkins_> If the inner document is all positioned, shrug, its root will be 0x0, just like a container element in the same circumstances.
- # [00:19] <Hixie> ok
- # [00:20] <Velmont> Hehe. Seems easy enough to relate to.
- # [00:24] * Joins: isherman (isherman@nat/google/x-zlkwshmlqqnzmpcw)
- # [00:26] <ojan> Hixie: i agree with TabAtkins_. i'm pretty sure that's roughly what webkit does
- # [00:26] <ojan> Hixie: although i just reviewed the code. eseidel (on #webkit) wrote the code...he might know better.
- # [00:27] <ojan> making float do the wrong thing because of the edge case of a document only containing positioned elements would be a shame
- # [00:28] <Hixie> webkit seems to do weird things
- # [00:28] * Quits: isherman (isherman@nat/google/x-zlkwshmlqqnzmpcw) (Ping timeout: 240 seconds)
- # [00:28] * Joins: arunranga (~otherarun@pool-71-125-201-161.nycmny.east.verizon.net)
- # [00:29] <Hixie> e.g. http://software.hixie.ch/utilities/js/live-dom-viewer/saved/1655
- # [00:29] <Hixie> why scrollbars?
- # [00:29] <Velmont> film at 11?
- # [00:29] <Hixie> (with overflow:hidden: http://software.hixie.ch/utilities/js/live-dom-viewer/saved/1656 )
- # [00:30] * Hixie joins a CG that has published some FSA specs to see what the UI looks like when you have published FSA specs
- # [00:30] * arunranga is now known as otherarun
- # [00:30] <Hixie> (prepare for the linked data community to think i've gone over to their side...)
- # [00:30] <ojan> Hixie: lol...it's a bug...there's some crazy hackery w scrollbars and seamless iframes
- # [00:30] <Hixie> ojan: k
- # [00:30] * Quits: otherarun (~otherarun@pool-71-125-201-161.nycmny.east.verizon.net) (Client Quit)
- # [00:31] <Hixie> aw, man, i can't join the damn group without going through my AC rep
- # [00:31] <ojan> Hixie: i'll file these. hopefully eseidel will fix them. :)
- # [00:31] * Quits: zcorpan (~zcorpan@pat.se.opera.com) (Remote host closed the connection)
- # [00:31] <TabAtkins_> Hixie: I know, it's so annoying. >_<
- # [00:31] <ojan> Hixie: anyways...the 0x0 behavior is what a regular element would do...so i don't see why it's problematic for a seamless iframe to do that
- # [00:32] <Hixie> ojan: k
- # [00:32] <hober> Hixie: I'm sure tvr would be thrilled that you've developed an interest in linked data :)
- # [00:32] <Hixie> yeah but not if i wanted to leave the group 5 minutes later :-)
- # [00:32] <hober> heh
- # [00:32] <Hixie> is anyone here either a member of a CG that has published an FSA or an individual member who isn't a member company employee who could do me a favour?
- # [00:32] * Quits: SimonSapin (~simon@ip-222.net-80-236-80.issy.rev.numericable.fr) (Quit: Leaving.)
- # [00:33] <JonathanNeal> Hixie: do I qualify?
- # [00:33] <Hixie> JonathanNeal: possibly :-)
- # [00:33] <Hixie> JonathanNeal: i'm trying to get a screenshot of the page that lets you sign on to the FSA deed
- # [00:34] <Hixie> JonathanNeal: once you're a member of teh group, it should be either on this page: http://www.w3.org/community/json-ld/
- # [00:34] <Hixie> or this page: http://www.w3.org/community/json-ld/spec/22/commitments
- # [00:34] <Hixie> oh i guess i could just create a bogus account for testing purposes
- # [00:35] <Hixie> except i bet w3c has a human in that loop
- # [00:35] <Hixie> so that wouldn't work either
- # [00:36] <JonathanNeal> Sorry.
- # [00:36] <JonathanNeal> I saw the "Join this group" button, but if I can't see the agreement without a human approving something, meh.
- # [00:36] <Hixie> oh i don't think you need a human to approve joining
- # [00:36] <Hixie> unless you don't have an account
- # [00:37] <Hixie> in which case don't worry
- # [00:37] * Quits: espadrine (~espadrine@63-235-13-3.dia.static.qwest.net) (Quit: espadrine)
- # [00:37] * Quits: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk) (Quit: sarspazam)
- # [00:38] <JonathanNeal> I definitely have some kind of account with this site, I used it to join a css group.
- # [00:39] * Quits: cgiffard (~cgiffard@180.148.120.105) (Quit: cgiffard)
- # [00:42] * Quits: smaug____ (~chatzilla@a91-154-42-69.elisa-laajakaista.fi) (Ping timeout: 246 seconds)
- # [00:45] * Joins: smaug____ (~chatzilla@a91-154-42-69.elisa-laajakaista.fi)
- # [00:45] * Joins: tndrH (~Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginmedia.com)
- # [00:45] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [00:46] * Quits: tantek (~tantek@md82036d0.tmodns.net) (Quit: tantek)
- # [00:53] * Quits: necolas (~necolas@5ade2fae.bb.sky.com) (Remote host closed the connection)
- # [00:53] * Quits: smaug____ (~chatzilla@a91-154-42-69.elisa-laajakaista.fi) (Ping timeout: 252 seconds)
- # [00:53] * Quits: annevk (~annevk@bl9-212-233.dsl.telepac.pt) (Remote host closed the connection)
- # [00:56] * Joins: ^esc_ (~esc_ape@77.117.247.89.wireless.dyn.drei.com)
- # [00:58] * Quits: ^esc (~esc_ape@77.116.246.2.wireless.dyn.drei.com) (Ping timeout: 265 seconds)
- # [01:00] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [01:02] * Joins: isherman (isherman@nat/google/x-sbahkzmceytqhlpu)
- # [01:06] * Joins: espadrine (~espadrine@63-235-13-3.dia.static.qwest.net)
- # [01:06] * Joins: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [01:07] * Quits: espadrine (~espadrine@63-235-13-3.dia.static.qwest.net) (Read error: Connection reset by peer)
- # [01:07] * Joins: espadrine_ (~espadrine@63-235-13-3.dia.static.qwest.net)
- # [01:07] * Joins: cgcardona_ (~cgcardona@unaffiliated/cgcardona)
- # [01:08] * Quits: isherman (isherman@nat/google/x-sbahkzmceytqhlpu) (Ping timeout: 250 seconds)
- # [01:08] * Joins: tantek (~tantek@md82036d0.tmodns.net)
- # [01:09] * Joins: tantek_ (~tantek@199.223.125.134)
- # [01:09] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Ping timeout: 245 seconds)
- # [01:10] * Quits: tantek (~tantek@md82036d0.tmodns.net) (Read error: Connection reset by peer)
- # [01:10] * tantek_ is now known as tantek
- # [01:10] * heycam|away is now known as heycam
- # [01:11] * Quits: cgcardona_ (~cgcardona@unaffiliated/cgcardona) (Ping timeout: 240 seconds)
- # [01:14] * Joins: gkellogg_ (~gregg@38.127.199.123)
- # [01:15] * Joins: Delapouite (~Delapouit@dsl-58-6-19-17.wa.westnet.com.au)
- # [01:17] * Quits: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Quit: abarth)
- # [01:17] * abarth_ is now known as abarth
- # [01:24] * Quits: dgathright (~dgathrigh@nat/yahoo/x-buqvelolquynbvfr) (Read error: Connection reset by peer)
- # [01:25] * Joins: dgathright (~dgathrigh@nat/yahoo/x-bfgvfzpxzyvlpvtz)
- # [01:27] * fishd_ is now known as fishd
- # [01:28] * Quits: tomasf (~tom@c-36dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [01:33] <TabAtkins_> Hixie: For <iframe seamless>, I wonder if it the inner document should use the outer document's information for viewport-related media queries.
- # [01:33] * Quits: drublic (~drublic@frbg-5f7339f8.pool.mediaWays.net) (Remote host closed the connection)
- # [01:33] <Velmont> Opera has something in the speeddails there. Never looked at it though.
- # [01:34] * Quits: jryans (~jryans@office.massrel.com) (Quit: Be back later)
- # [01:37] <Hixie> TabAtkins_: possibly, yeah. file a bug?
- # [01:37] <TabAtkins_> Related: Does inline SVG create a sub-document with its own viewport size?
- # [01:38] * TabAtkins_ doesn't want to hunt for the relevant details to try and answer the question himself.
- # [01:40] * Quits: tndrH (~Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginmedia.com) (Ping timeout: 264 seconds)
- # [01:41] * Joins: myakura (~myakura@FL1-122-130-129-42.tky.mesh.ad.jp)
- # [01:42] * Joins: isherman (isherman@nat/google/x-thszzdummykehvgo)
- # [01:42] * Quits: myakura (~myakura@FL1-122-130-129-42.tky.mesh.ad.jp) (Remote host closed the connection)
- # [01:46] * Quits: isherman (isherman@nat/google/x-thszzdummykehvgo) (Ping timeout: 240 seconds)
- # [01:49] <Hixie> TabAtkins_: svg always kinda confuses me on this front
- # [01:49] <Hixie> it used to be very poorly defined
- # [01:49] <Hixie> now it's defined, but i'm not 100% sure where
- # [01:52] * Joins: JVoracek (~J_Voracek@cpe-76-184-40-47.tx.res.rr.com)
- # [01:53] * Quits: JVoracek (~J_Voracek@cpe-76-184-40-47.tx.res.rr.com) (Client Quit)
- # [01:55] * Joins: darcyclark (~darcyclar@108.162.149.34)
- # [01:55] * Quits: darcyclarke (~darcyclar@108.162.149.34) (Ping timeout: 244 seconds)
- # [01:59] * Quits: ehsan (~ehsan@66.207.208.98) (Remote host closed the connection)
- # [02:02] <TabAtkins_> Ah, cool, dbaron already filed the bug about seamless and MQ.
- # [02:02] * Joins: AlexNRoss (~AleossIRC@unaffiliated/aleoss)
- # [02:03] * Quits: jacobolus (~jacobolus@c-24-5-81-102.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [02:04] * ojan is now known as ojan_away
- # [02:08] * Joins: MikeSmith_ (~MikeSmith@s1106009.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [02:10] * Quits: MikeSmith (~MikeSmith@s1106117.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 245 seconds)
- # [02:10] * MikeSmith_ is now known as MikeSmith
- # [02:12] * Quits: mattgifford (~mattgiffo@75-93-37-212.war.clearwire-wmx.net) (Remote host closed the connection)
- # [02:15] * Joins: ehsan (~ehsan@209.20.29.228)
- # [02:20] * Joins: isherman (isherman@nat/google/x-ziukdthkecrthobg)
- # [02:21] <dbaron> TabAtkins_, actually, Hixie filed it for me (as I noticed after posting to www-style)
- # [02:23] <TabAtkins_> Ah, heh.
- # [02:24] <TabAtkins_> Well, as long as it's filed, I'm happy.
- # [02:25] * Quits: isherman (isherman@nat/google/x-ziukdthkecrthobg) (Ping timeout: 264 seconds)
- # [02:25] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [02:31] * Quits: dgathright (~dgathrigh@nat/yahoo/x-bfgvfzpxzyvlpvtz) (Quit: dgathright)
- # [02:35] * Quits: AlexNRoss (~AleossIRC@unaffiliated/aleoss) (Ping timeout: 245 seconds)
- # [02:35] * Joins: AlexNRoss (~AleossIRC@unaffiliated/aleoss)
- # [02:38] * Joins: cgcardona (~cgcardona@c-24-5-113-12.hsd1.ca.comcast.net)
- # [02:38] * Quits: cgcardona (~cgcardona@c-24-5-113-12.hsd1.ca.comcast.net) (Changing host)
- # [02:38] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
- # [02:38] * Quits: jsbell (jsbell@nat/google/x-pdsjlvlvrblwszqm) (Quit: There's no place like home...)
- # [02:42] * Quits: gkellogg_ (~gregg@38.127.199.123) (Quit: gkellogg_)
- # [02:42] * Quits: pablof (~pablof@144.189.101.1) (Quit: ^z)
- # [02:44] * Quits: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com) (Remote host closed the connection)
- # [02:46] * Quits: dbaron (~dbaron@nat/mozilla/x-miraflecvjwbhsou) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [02:47] * Joins: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com)
- # [02:55] * Quits: yuuki (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp) (Quit: Leaving...)
- # [02:57] * Joins: yuuki (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [02:59] * Joins: isherman (isherman@nat/google/x-tnfaxodqjbslsjvj)
- # [03:03] * Quits: isherman (isherman@nat/google/x-tnfaxodqjbslsjvj) (Ping timeout: 240 seconds)
- # [03:07] * jonlee is now known as jonlee|afk
- # [03:07] * Parts: rektide (~rektide@deneb.eldergods.com)
- # [03:13] * Joins: jryans (~jryans@cpe-70-124-81-135.austin.res.rr.com)
- # [03:17] * Quits: aklein (u4454@gateway/web/irccloud.com/x-ykxmaqhhxypmsspp)
- # [03:18] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [03:22] * Quits: jennb (jennb@nat/google/x-sxxgsnvvfjwwezuu) (Quit: jennb)
- # [03:25] * Quits: jwalden (~waldo@2620:101:8003:200:b47f:6e38:1aa5:d8bf) (Quit: ChatZilla 0.9.87-5.1450hg.fc17 [XULRunner 13.0.1/20120616205746])
- # [03:25] * Quits: jochen__ (jochen@nat/google/x-maeiamsdkcaefqiq) (Remote host closed the connection)
- # [03:25] * Joins: jochen__ (jochen@nat/google/x-ycuxdfcqiqkupkls)
- # [03:26] * Quits: rniwa (rniwa@nat/google/x-qyctapfxmgzdyzyn) (Quit: rniwa)
- # [03:27] * Quits: lumely (~lumely@dhcp2-235.slis.tsukuba.ac.jp) (Read error: Connection reset by peer)
- # [03:27] * Joins: lumely (~lumely@dhcp2-235.slis.tsukuba.ac.jp)
- # [03:29] * Joins: Druide_ (Druid@p5B1351B5.dip.t-dialin.net)
- # [03:29] * Quits: Druide__ (Druid@p5B136441.dip.t-dialin.net) (Ping timeout: 265 seconds)
- # [03:32] * Quits: tantek (~tantek@199.223.125.134) (Quit: tantek)
- # [03:34] * Joins: isherman (isherman@nat/google/x-snwcczfqicwsgbuv)
- # [03:36] * Joins: rniwa (rniwa@nat/google/x-mrbolxbephgigfpc)
- # [03:38] * Quits: isherman (isherman@nat/google/x-snwcczfqicwsgbuv) (Ping timeout: 248 seconds)
- # [03:41] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [03:45] * Quits: jryans (~jryans@cpe-70-124-81-135.austin.res.rr.com) (Quit: Be back later)
- # [03:50] * Quits: gavin_ (~gavin@76.14.87.162) (Read error: Connection reset by peer)
- # [03:50] * Joins: gavin_ (~gavin@76.14.87.162)
- # [03:57] * Quits: michaeln (michaeln@nat/google/x-xetlmzqjfqbygkge) (Quit: Leaving.)
- # [03:58] * Quits: jdaggett (~jdaggett@ad008216.dynamic.ppp.asahi-net.or.jp) (Quit: jdaggett)
- # [04:03] * Quits: ben_alman (~cowboy@awesome.benalman.com) (Excess Flood)
- # [04:04] * Quits: rniwa (rniwa@nat/google/x-mrbolxbephgigfpc) (Quit: rniwa)
- # [04:04] * Quits: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Quit: abarth)
- # [04:05] * Quits: darcyclark (~darcyclar@108.162.149.34) (Quit: Bye!)
- # [04:09] * Joins: isherman (isherman@nat/google/x-ttexmlgwrlenktoa)
- # [04:10] * Joins: ben_alman (~cowboy@awesome.benalman.com)
- # [04:14] * Quits: isherman (isherman@nat/google/x-ttexmlgwrlenktoa) (Ping timeout: 264 seconds)
- # [04:14] * heycam is now known as heycam|away
- # [04:14] * boaz is now known as boaz|away
- # [04:15] * Joins: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [04:16] * Joins: boblet (u1921@gateway/web/irccloud.com/x-nkowetghgsscgdzl)
- # [04:30] * Joins: tomasf (~tom@2002:55e5:db36:0:6c11:8f3a:c3c4:2e12)
- # [04:36] * heycam|away is now known as heycam
- # [04:38] * Joins: jacobolus (~jacobolus@70-36-215-74.dsl.dynamic.sonic.net)
- # [04:41] * Joins: jdaggett (~jdaggett@ad008216.dynamic.ppp.asahi-net.or.jp)
- # [04:48] * Joins: isherman (isherman@nat/google/x-awgfqugekaujeyif)
- # [04:51] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 244 seconds)
- # [04:53] * Quits: isherman (isherman@nat/google/x-awgfqugekaujeyif) (Ping timeout: 248 seconds)
- # [04:54] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [04:55] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [04:56] * Quits: carlos_antonio (~benway@173.230.152.21) (Changing host)
- # [04:56] * Joins: carlos_antonio (~benway@unaffiliated/disusered)
- # [05:02] * Joins: michaeln (michaeln@nat/google/x-cjstkhptkjwliedd)
- # [05:18] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [05:22] * Quits: fishd (darin@nat/google/x-qddzryprvikjyzyq) (Quit: Leaving)
- # [05:23] * Joins: isherman (isherman@nat/google/x-icvrqfsdktzfwmwp)
- # [05:25] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [05:27] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [05:28] * Quits: isherman (isherman@nat/google/x-icvrqfsdktzfwmwp) (Ping timeout: 272 seconds)
- # [05:29] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [05:30] * Joins: mattgiff_ (~mattgiffo@108.161.20.199)
- # [05:34] * Quits: mattgiff_ (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [06:02] * Joins: isherman (isherman@nat/google/x-jivaanhvlvcdhaem)
- # [06:07] * Quits: isherman (isherman@nat/google/x-jivaanhvlvcdhaem) (Ping timeout: 248 seconds)
- # [06:18] * Quits: tomasf (~tom@2002:55e5:db36:0:6c11:8f3a:c3c4:2e12) (Quit: tomasf)
- # [06:27] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (Quit: linclark)
- # [06:31] * Quits: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Quit: snowfox)
- # [06:39] * Joins: rniwa (~rniwa@216.239.45.130)
- # [06:41] * Joins: isherman (isherman@nat/google/x-hpkixyadoftwgkpn)
- # [06:46] * Quits: isherman (isherman@nat/google/x-hpkixyadoftwgkpn) (Ping timeout: 248 seconds)
- # [06:51] * Joins: [[zzz]] (~q@node-a4s.pool-125-25.dynamic.totbb.net)
- # [06:55] * Quits: [[zz]] (~q@node-19ef.pool-101-109.dynamic.totbb.net) (Ping timeout: 248 seconds)
- # [06:55] * Joins: izhak (~izhak@213.87.241.22)
- # [06:56] * Quits: jacobolus (~jacobolus@70-36-215-74.dsl.dynamic.sonic.net) (Remote host closed the connection)
- # [07:00] <zewt> heh youtube seems to be out to give <video> a boost by switching to hopelessly broken buffering behavior
- # [07:00] <zewt> now it won't buffer more than 30 seconds ahead, which means i ... can't watch things
- # [07:00] <zewt> (unless i feel like watching it in 30 second chunks)
- # [07:12] <Hixie> you can't watch online?
- # [07:13] <zewt> it won't stream fast enough to watch it
- # [07:14] <zewt> normally i'd just pause it and let it buffer to full in the background ... but now it stops buffering after the buffer is 30s ahead of the play position, which broke that
- # [07:16] <Hixie> it doesn't buffer fast enough even if it's playing?
- # [07:18] <zewt> wow, the html5 player is doing it too (capping the buffer); wonder if that's something they're doing in script (can you even do that?) or if FF is doing the same thing
- # [07:18] <Hixie> i would assume it's the server
- # [07:19] <zewt> oh wait, the html5 one kept buffering (eventually)
- # [07:19] <zewt> (the flash one stops after 30s read-ahead and stays stopped indefinitely)
- # [07:20] * Joins: isherman (isherman@nat/google/x-nikmxenhstdmkdiv)
- # [07:22] <zewt> (the html5 one working is what I expected--i suppose you could probably jump the hoops to cripple prebuffering like that with <video> if you wanted to badly enough, though)
- # [07:25] * Quits: isherman (isherman@nat/google/x-nikmxenhstdmkdiv) (Ping timeout: 248 seconds)
- # [07:26] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [07:31] * Joins: Areks (~Areks@rs.gridnine.com)
- # [07:33] * boaz|away is now known as boaz
- # [07:43] * Joins: silverroots (~silverroo@144.187.180.13)
- # [07:59] * Joins: isherman (isherman@nat/google/x-jtcmokspypbsedtw)
- # [08:02] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [08:02] * Quits: JohnAlbin_zzzzzz (~JohnAlbin@114-42-52-7.dynamic.hinet.net) (Quit: HTTP/1.1 404 JohnAlbin Not Found)
- # [08:04] * Quits: isherman (isherman@nat/google/x-jtcmokspypbsedtw) (Ping timeout: 245 seconds)
- # [08:11] * Joins: tantek (~tantek@c-76-115-51-221.hsd1.or.comcast.net)
- # [08:14] * Joins: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [08:14] * Quits: JonathanNeal (~Adium@cpe-72-130-1-137.socal.res.rr.com) (Quit: Leaving.)
- # [08:15] * Joins: SimonSapin (~simon@ip-222.net-80-236-80.issy.rev.numericable.fr)
- # [08:16] * Quits: rniwa (~rniwa@216.239.45.130) (Quit: rniwa)
- # [08:23] * Joins: PalleZingmark (~Adium@217.13.228.226)
- # [08:28] * Joins: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [08:34] * Quits: ImBcmDth (~Jon@pool-173-63-154-183.nwrknj.fios.verizon.net) (Ping timeout: 245 seconds)
- # [08:35] * Joins: isherman (isherman@nat/google/x-oveyybzowzcplhvy)
- # [08:35] * Joins: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no)
- # [08:36] * Joins: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk)
- # [08:38] * Quits: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk) (Client Quit)
- # [08:39] * Quits: isherman (isherman@nat/google/x-oveyybzowzcplhvy) (Ping timeout: 240 seconds)
- # [08:48] * Joins: ImBcmDth (~Jon@pool-173-63-154-183.nwrknj.fios.verizon.net)
- # [08:51] * boaz is now known as boaz|away
- # [08:52] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [08:54] * Joins: markkes (~markkes@62.207.90.201)
- # [08:57] * Joins: jryans (~jryans@cpe-70-124-81-135.austin.res.rr.com)
- # [08:59] <MikeSmith> has anybody written tests for CSS animations?
- # [08:59] * MikeSmith finds http://test.csswg.org/source/contributors/microsoft/incoming/CSS3/animations/
- # [09:01] * Joins: nielsle (~nielsle@3239059-cl69.boa.fiberby.dk)
- # [09:02] * Joins: SonicX (~quassel@116.203.88.245)
- # [09:06] * Joins: niloy (~niloy@61.12.96.242)
- # [09:14] * Joins: isherman (isherman@nat/google/x-akccuprwjmeanddq)
- # [09:14] * Joins: Ducki (~Ducki@pD9E39BAF.dip0.t-ipconnect.de)
- # [09:19] * Quits: isherman (isherman@nat/google/x-akccuprwjmeanddq) (Ping timeout: 264 seconds)
- # [09:20] * Joins: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk)
- # [09:21] * Quits: jryans (~jryans@cpe-70-124-81-135.austin.res.rr.com) (Quit: Be back later)
- # [09:22] * Joins: Kolombiken (~Adium@c80-216-10-244.bredband.comhem.se)
- # [09:29] * Quits: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk) (Quit: sarspazam)
- # [09:32] * Joins: pyrsmk (~pyrsmk@17.4.101.84.rev.sfr.net)
- # [09:34] * Joins: roven (~chatzilla@d51530390.static.telenet.be)
- # [09:36] * Joins: raphc (~quassel@153-107-190-109.dsl.ovh.fr)
- # [09:37] * Joins: ImBcmDth_ (~Jon@pool-173-63-154-183.nwrknj.fios.verizon.net)
- # [09:38] * Quits: ImBcmDth (~Jon@pool-173-63-154-183.nwrknj.fios.verizon.net) (Ping timeout: 264 seconds)
- # [09:50] * Joins: shwetank (~shwetank@122.173.201.69)
- # [09:52] * Joins: isherman (isherman@nat/google/x-egywusgsgwuwgpch)
- # [09:53] * Joins: charl (~user@2001:0:53aa:64c:20f4:629b:7da6:12dc)
- # [09:55] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [09:56] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [09:57] * Quits: isherman (isherman@nat/google/x-egywusgsgwuwgpch) (Ping timeout: 250 seconds)
- # [09:59] <matjas> lol @ XHTML 1.0 Strict
- # [10:00] <odinho> Yes, could do that once every day.
- # [10:00] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Ping timeout: 265 seconds)
- # [10:00] * Joins: necolas (~necolas@5ade2fae.bb.sky.com)
- # [10:01] * Joins: annevk (~annevk@bl9-212-233.dsl.telepac.pt)
- # [10:02] * Joins: drublic (~drublic@frbg-4d029cd5.pool.mediaWays.net)
- # [10:05] * Joins: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net)
- # [10:05] * Quits: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no) (Remote host closed the connection)
- # [10:06] * Joins: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no)
- # [10:07] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Ping timeout: 250 seconds)
- # [10:08] * Joins: Ms2ger (~Ms2ger@91.181.7.84)
- # [10:09] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [10:13] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Quit: cgcardona)
- # [10:14] * Quits: necolas (~necolas@5ade2fae.bb.sky.com) (Remote host closed the connection)
- # [10:15] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [10:18] * Quits: Lachy (~Lachy@cm-84.215.193.125.getinternet.no) (Quit: Computer has gone to sleep.)
- # [10:21] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [10:22] * Parts: Kolombiken (~Adium@c80-216-10-244.bredband.comhem.se)
- # [10:23] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [10:23] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [10:24] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [10:24] * Quits: SimonSapin (~simon@ip-222.net-80-236-80.issy.rev.numericable.fr) (Quit: Leaving.)
- # [10:31] * Joins: isherman (isherman@nat/google/x-poilnpjajpurctft)
- # [10:36] * Quits: isherman (isherman@nat/google/x-poilnpjajpurctft) (Ping timeout: 250 seconds)
- # [10:40] * heycam is now known as heycam|away
- # [10:47] * Joins: PalleZingmark1 (~Adium@90-229-139-33-no195.tbcn.telia.com)
- # [10:48] * Quits: PalleZingmark (~Adium@217.13.228.226) (Ping timeout: 248 seconds)
- # [10:51] * Joins: Lachy (~Lachy@office.oslo.opera.com)
- # [10:53] * Quits: tantek (~tantek@c-76-115-51-221.hsd1.or.comcast.net) (Quit: tantek)
- # [10:56] * Quits: Adawerk (~ada@169.241.49.57) (Read error: Connection reset by peer)
- # [10:57] * Joins: Adawerk (~ada@169.241.49.57)
- # [10:59] * [[zzz]] is now known as [[zz]]
- # [11:00] * Joins: GlitchMr (~glitchmr@178-36-129-249.adsl.inetia.pl)
- # [11:01] * Joins: SimonSapin (~simon@2a01:e35:2e8d:b5f0:ea9d:87ff:fe22:e221)
- # [11:04] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 244 seconds)
- # [11:08] * Quits: michaeln (michaeln@nat/google/x-cjstkhptkjwliedd) (Quit: Leaving.)
- # [11:10] * Joins: isherman (isherman@nat/google/x-mgkxqwautjocarno)
- # [11:14] * Quits: isherman (isherman@nat/google/x-mgkxqwautjocarno) (Ping timeout: 240 seconds)
- # [11:14] * Joins: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net)
- # [11:14] * Quits: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net) (Remote host closed the connection)
- # [11:15] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [11:16] * Joins: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net)
- # [11:26] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [11:30] * Quits: ehsan (~ehsan@209.20.29.228) (Remote host closed the connection)
- # [11:33] * Joins: zcorpan (~zcorpan@pat.se.opera.com)
- # [11:39] * Quits: sicking (~chatzilla@nat/mozilla/x-rykadlgnprvxbrjn) (Ping timeout: 264 seconds)
- # [11:42] * Joins: smaug____ (~chatzilla@a91-154-42-69.elisa-laajakaista.fi)
- # [11:49] * Joins: isherman (isherman@nat/google/x-kcrotyhuhetjiign)
- # [11:50] * Quits: jarib (~jarib@unaffiliated/jarib) (Excess Flood)
- # [11:52] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [11:54] * Quits: isherman (isherman@nat/google/x-kcrotyhuhetjiign) (Ping timeout: 250 seconds)
- # [11:58] * Joins: nonge_ (~nonge@p5082B50A.dip.t-dialin.net)
- # [12:02] * Quits: nonge (~nonge@p5082A559.dip.t-dialin.net) (Ping timeout: 245 seconds)
- # [12:06] * Quits: smaug____ (~chatzilla@a91-154-42-69.elisa-laajakaista.fi) (Ping timeout: 250 seconds)
- # [12:13] * Joins: sicking (~chatzilla@c-67-180-8-184.hsd1.ca.comcast.net)
- # [12:17] * Joins: MikeSmith_ (~MikeSmith@s1106190.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [12:18] * Quits: annevk (~annevk@bl9-212-233.dsl.telepac.pt) (Remote host closed the connection)
- # [12:19] * Quits: MikeSmith (~MikeSmith@s1106009.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 245 seconds)
- # [12:19] * MikeSmith_ is now known as MikeSmith
- # [12:26] * Quits: sicking (~chatzilla@c-67-180-8-184.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [12:27] * Joins: isherman (isherman@nat/google/x-ahcvebbudjeufteq)
- # [12:32] * Quits: isherman (isherman@nat/google/x-ahcvebbudjeufteq) (Ping timeout: 245 seconds)
- # [12:38] * Joins: michaeln (michaeln@nat/google/x-kmwwtprztorzrzdm)
- # [12:39] * Quits: ^esc_ (~esc_ape@77.117.247.89.wireless.dyn.drei.com) (Ping timeout: 265 seconds)
- # [12:39] <SimonSapin> border-collapse with colspan/rowspan is "funny" ... http://dabblet.com/gist/3082417 (compare webkit and gecko)
- # [12:40] <zcorpan> firefox 16 will be the unprefixing release, huh?
- # [12:41] <Ms2ger> Yeah
- # [12:41] <zcorpan> SimonSapin: opera has a third rendering :-)
- # [12:41] * Ms2ger looks for other things to unprefix
- # [12:41] <SimonSapin> zcorpan: yes, I just checked
- # [12:42] <zcorpan> SimonSapin: what's correct per spec? does it say?
- # [12:42] <SimonSapin> the spec doesn’t say anything …
- # [12:42] <Ms2ger> zcorpan, Ha. Ha. Ha.
- # [12:43] <SimonSapin> I’ll just do whatever is more convenient in WeasyPrint
- # [12:43] <zcorpan> anyone have ie to check?
- # [12:43] <zcorpan> i bet it has its own take on it
- # [12:44] <SimonSapin> I don’t even what to bother reporting this to www-style, nothing’s gonna happen until someone makes css3-tables in a few decades
- # [12:45] <zcorpan> would be nice to have issues documented somewhere though when that someone wants to take it
- # [12:46] <zcorpan> maybe a wiki page is better than emails to www-style
- # [12:48] <SimonSapin> I think that CSSWG has both a wiki and a bugzilla for tracking issues
- # [12:49] <zcorpan> heycam|away: shouldn't webidl drop the "must have a length" if ES already requires length to be present?
- # [12:49] * Joins: ^esc (~esc_ape@77.117.247.89.wireless.dyn.drei.com)
- # [12:58] <Ms2ger> SimonSapin, and Tracker
- # [12:59] <SimonSapin> Ms2ger: indeed
- # [13:00] <Ms2ger> Might be useful to ask MikeSmith to create a bugzilla component for tabkes
- # [13:00] <Ms2ger> tables*
- # [13:02] * Joins: mattlucht (~mattlucht@109.144.219.197)
- # [13:03] <SimonSapin> Ms2ger: wrote about this to www-style, I’ll leave the rest to the WG
- # [13:06] * Joins: isherman (isherman@nat/google/x-tdvvmqrmbbenyqdo)
- # [13:06] * Quits: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no) (Ping timeout: 248 seconds)
- # [13:07] * Joins: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no)
- # [13:09] * Quits: michaeln (michaeln@nat/google/x-kmwwtprztorzrzdm) (Quit: Leaving.)
- # [13:10] * Quits: isherman (isherman@nat/google/x-tdvvmqrmbbenyqdo) (Ping timeout: 240 seconds)
- # [13:15] * Quits: roven (~chatzilla@d51530390.static.telenet.be) (Ping timeout: 255 seconds)
- # [13:23] * Quits: mattlucht (~mattlucht@109.144.219.197) (Quit: mattlucht)
- # [13:28] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
- # [13:29] * abstractj|away is now known as abstractj
- # [13:35] * Joins: mattlucht (~mattlucht@109.144.219.197)
- # [13:41] * Quits: espadrine_ (~espadrine@63-235-13-3.dia.static.qwest.net) (Quit: espadrine_)
- # [13:46] * Joins: isherman (isherman@nat/google/x-amhfpubuubtohjtk)
- # [13:50] * Quits: isherman (isherman@nat/google/x-amhfpubuubtohjtk) (Ping timeout: 245 seconds)
- # [13:51] * abstractj is now known as abstractj|away
- # [13:52] * Joins: roven (~chatzilla@d51530390.static.telenet.be)
- # [13:53] * Joins: JohnAlbin (~JohnAlbin@114-42-52-7.dynamic.hinet.net)
- # [14:01] * Joins: kinuko (~kinuko@2401:fa00:4:1004:bd2d:963f:c992:5ab)
- # [14:03] <MikeSmith> Ms2ger: CSS tables?
- # [14:05] <MikeSmith> btw, I added a bunch of CSS features to http://platform.html5.org/
- # [14:05] <MikeSmith> lots more green flags there now
- # [14:07] * Quits: mattlucht (~mattlucht@109.144.219.197) (Quit: mattlucht)
- # [14:08] * Quits: shwetank (~shwetank@122.173.201.69) (Quit: Leaving...)
- # [14:13] <zcorpan> i love how http://html5please.com/#WebSockets recommends disabling websocket for safari but at the same time using Flash Sockets
- # [14:13] <AryehGregor> Is there really no Array.remove() or something in JS?
- # [14:14] <AryehGregor> arr.splice(i, 1) seems a bit abstruse compared to arr.remove(i) or such.
- # [14:17] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [14:20] * Joins: erichynds (~ehynds@64.206.121.41)
- # [14:25] * Joins: isherman (isherman@nat/google/x-jxtkjnkbilisvrqo)
- # [14:27] * Quits: charl (~user@2001:0:53aa:64c:20f4:629b:7da6:12dc) (Ping timeout: 272 seconds)
- # [14:27] * Joins: charl (~user@2001:0:53aa:64c:20f4:629b:7da6:12dc)
- # [14:29] * Quits: isherman (isherman@nat/google/x-jxtkjnkbilisvrqo) (Ping timeout: 245 seconds)
- # [14:31] * Joins: hasathe__ (~hasather_@cm-84.208.57.129.getinternet.no)
- # [14:32] * Quits: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no) (Ping timeout: 264 seconds)
- # [14:34] * Quits: roven (~chatzilla@d51530390.static.telenet.be) (Ping timeout: 245 seconds)
- # [14:36] * Joins: roven (~chatzilla@d51530390.static.telenet.be)
- # [14:39] * Joins: michaeln (michaeln@nat/google/x-vruojghimngmofud)
- # [14:42] * Joins: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no)
- # [14:44] * Quits: hasathe__ (~hasather_@cm-84.208.57.129.getinternet.no) (Ping timeout: 245 seconds)
- # [14:46] * Quits: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no) (Ping timeout: 240 seconds)
- # [14:54] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (Quit: linclark)
- # [14:55] * Joins: MikeSmith_ (~MikeSmith@s1106196.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [14:56] * Quits: roven (~chatzilla@d51530390.static.telenet.be) (Read error: Connection reset by peer)
- # [14:56] * Quits: MikeSmith (~MikeSmith@s1106190.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 245 seconds)
- # [14:56] * MikeSmith_ is now known as MikeSmith
- # [14:56] * Joins: roven (~chatzilla@d51530390.static.telenet.be)
- # [14:59] * Quits: charl (~user@2001:0:53aa:64c:20f4:629b:7da6:12dc) (Quit: leaving)
- # [15:04] * Joins: isherman (isherman@nat/google/x-szqiffnsjrjbbxfb)
- # [15:05] * Joins: mattlucht (~mattlucht@109.144.223.179)
- # [15:05] * Joins: myakura (~myakura@FL1-122-130-129-42.tky.mesh.ad.jp)
- # [15:08] * Quits: isherman (isherman@nat/google/x-szqiffnsjrjbbxfb) (Ping timeout: 250 seconds)
- # [15:08] * Quits: michaeln (michaeln@nat/google/x-vruojghimngmofud) (Quit: Leaving.)
- # [15:09] * abstractj|away is now known as abstractj
- # [15:12] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
- # [15:13] * Quits: silverroots (~silverroo@144.187.180.13) (Ping timeout: 264 seconds)
- # [15:25] * Joins: ehsan (~ehsan@209.20.29.228)
- # [15:25] * Joins: silverroots (~silverroo@144.187.180.12)
- # [15:28] * Joins: JohnAlbin_ (~JohnAlbin@114-42-52-7.dynamic.hinet.net)
- # [15:28] * Quits: JohnAlbin_ (~JohnAlbin@114-42-52-7.dynamic.hinet.net) (Client Quit)
- # [15:29] * Joins: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
- # [15:30] <kennyluck> CSS Undefined Module
- # [15:30] <Ms2ger> Do you mean CSS 2.1?
- # [15:30] * Joins: yodasw16 (~dgillhesp@ql1fwhide.rockfin.com)
- # [15:32] * Quits: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net) (Quit: tomasf)
- # [15:37] * Quits: silverroots (~silverroo@144.187.180.12) (Remote host closed the connection)
- # [15:38] * Quits: mattlucht (~mattlucht@109.144.223.179) (Ping timeout: 265 seconds)
- # [15:42] * Joins: isherman (isherman@nat/google/x-yjidalfnhfeehlti)
- # [15:43] * Joins: mattlucht (~mattlucht@109.144.223.179)
- # [15:43] <kennyluck> yeah :)
- # [15:43] * Quits: jdaggett (~jdaggett@ad008216.dynamic.ppp.asahi-net.or.jp) (Quit: jdaggett)
- # [15:45] * Quits: mattlucht (~mattlucht@109.144.223.179) (Client Quit)
- # [15:46] * Quits: SonicX (~quassel@116.203.88.245) (Ping timeout: 244 seconds)
- # [15:47] * Quits: isherman (isherman@nat/google/x-yjidalfnhfeehlti) (Ping timeout: 272 seconds)
- # [15:50] * Parts: Charun (~Charun@unaffiliated/charun)
- # [16:01] * Joins: shwetank (~shwetank@122.173.201.69)
- # [16:01] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [16:02] * Joins: cgcardona (~cgcardona@c-24-5-113-12.hsd1.ca.comcast.net)
- # [16:02] * Quits: cgcardona (~cgcardona@c-24-5-113-12.hsd1.ca.comcast.net) (Changing host)
- # [16:02] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
- # [16:03] * Joins: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se)
- # [16:03] * Quits: niloy (~niloy@61.12.96.242) (Ping timeout: 248 seconds)
- # [16:04] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Client Quit)
- # [16:10] * Quits: PalleZingmark1 (~Adium@90-229-139-33-no195.tbcn.telia.com) (Quit: Leaving.)
- # [16:10] * Joins: PalleZingmark (~Adium@217.13.228.226)
- # [16:12] * Quits: gkellogg (~gregg@c-98-248-150-91.hsd1.ca.comcast.net) (Quit: gkellogg)
- # [16:13] * Joins: gkellogg (~gregg@c-98-248-150-91.hsd1.ca.comcast.net)
- # [16:17] * Quits: izhak (~izhak@213.87.241.22) (Ping timeout: 245 seconds)
- # [16:20] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [16:21] * Joins: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no)
- # [16:21] * Joins: SonicX (~quassel@116.203.95.177)
- # [16:21] * Joins: isherman (isherman@nat/google/x-jqqglyieqjgopjge)
- # [16:26] * Quits: isherman (isherman@nat/google/x-jqqglyieqjgopjge) (Ping timeout: 248 seconds)
- # [16:28] * Quits: barneybook (kvirc@220-133-195-146.HINET-IP.hinet.net) (Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/)
- # [16:29] * Quits: Delapouite (~Delapouit@dsl-58-6-19-17.wa.westnet.com.au) (Remote host closed the connection)
- # [16:37] * Joins: michaeln (michaeln@nat/google/x-rwmlixevyqoytbwi)
- # [16:38] * Joins: cgcardona (~cgcardona@c-24-5-113-12.hsd1.ca.comcast.net)
- # [16:38] * Quits: cgcardona (~cgcardona@c-24-5-113-12.hsd1.ca.comcast.net) (Changing host)
- # [16:38] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
- # [16:38] * Joins: thisgeek (~chris@ool-45757f42.dyn.optonline.net)
- # [16:41] * Quits: MikeSmith (~MikeSmith@s1106196.xgsspn.imtp.tachikawa.spmode.ne.jp) (Read error: Connection reset by peer)
- # [16:41] * Joins: MikeSmith (~MikeSmith@s1106196.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [16:42] * Joins: ksweeney (~Kevin_Swe@nyv-exweb.iac.com)
- # [16:44] <zcorpan> what's the procedure of publishing a Final Specification?
- # [16:45] * Quits: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se) (Quit: tomasf)
- # [16:46] <Ms2ger> Sacrifice a goat
- # [16:47] * Parts: ksweeney (~Kevin_Swe@nyv-exweb.iac.com)
- # [16:47] <zcorpan> :-(
- # [16:47] <zewt> declare the spec dead?
- # [16:48] <zcorpan> i thought it was possible to publish Final Specifications several times
- # [16:49] <zewt> i thought that was just Final Fantasy
- # [16:49] <Ms2ger> I think that's the idea
- # [16:49] * Joins: smaug____ (~chatzilla@212-226-48-4-nat.elisa-mobile.fi)
- # [16:49] <Ms2ger> Maybe AryehGregor knows
- # [16:49] <AryehGregor> Yes, that's my understanding.
- # [16:49] <AryehGregor> A Final Specification is a frozen snapshot.
- # [16:49] <AryehGregor> But a CG can publish however many it wants.
- # [16:50] <AryehGregor> And/or continue work on the specs after forking them.
- # [16:50] <AryehGregor> I imagine the procedure for publishing a Final Specification is "Talk to Ian Jacobs, he'll be very excited because no one's done it yet".
- # [16:50] <zcorpan> should whatcg publish FSs for all the drafts (and one for html)?
- # [16:51] <zcorpan> i see whatcg doesn't list html under current drafts
- # [16:51] <zcorpan> but i thought the purpose was to publish html as FS at some point
- # [16:52] <Ms2ger> The purpose was the patent policy
- # [16:52] * Joins: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se)
- # [16:52] <Ms2ger> And I thought that happened earlier than FS
- # [16:53] * Joins: jryans (~jryans@office.massrel.com)
- # [16:55] <zcorpan> well we haven't published a draft either so i guess the CLA doesn't apply for html yet
- # [16:56] * Quits: myakura (~myakura@FL1-122-130-129-42.tky.mesh.ad.jp) (Remote host closed the connection)
- # [16:56] <zcorpan> i haven't read the CLA and FSA in detail yet
- # [16:56] * Joins: mattlucht (~mattlucht@194.102.13.2)
- # [16:59] * Quits: mattlucht (~mattlucht@194.102.13.2) (Read error: Connection reset by peer)
- # [16:59] * Joins: mattlucht (~mattlucht@194.102.13.2)
- # [17:00] * Quits: Obvious (tachikoma@188.226.74.2) (Read error: Connection reset by peer)
- # [17:01] * Joins: isherman (isherman@nat/google/x-nbpochfxgswjympb)
- # [17:01] * Joins: JVoracek (~J_Voracek@cpe-76-184-40-47.tx.res.rr.com)
- # [17:02] <zcorpan> http://www.w3.org/community/reports/reqs/ copyright boilerplate for FS says to link to https://www.w3.org/community/about/agreements/fsa/ but that redirects to fsa-deed, i guess final/ was intended
- # [17:02] * Quits: JVoracek (~J_Voracek@cpe-76-184-40-47.tx.res.rr.com) (Client Quit)
- # [17:04] <zcorpan> also uses https on some links but they seem to redirect to http
- # [17:06] * Quits: isherman (isherman@nat/google/x-nbpochfxgswjympb) (Ping timeout: 272 seconds)
- # [17:06] * Quits: erichynds (~ehynds@64.206.121.41)
- # [17:06] * zcorpan sends an email
- # [17:07] * Quits: michaeln (michaeln@nat/google/x-rwmlixevyqoytbwi) (Quit: Leaving.)
- # [17:07] * Joins: Obvious (tachikoma@188.226.74.2)
- # [17:11] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 246 seconds)
- # [17:12] * Quits: ehsan (~ehsan@209.20.29.228) (Remote host closed the connection)
- # [17:18] * Quits: Ducki (~Ducki@pD9E39BAF.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
- # [17:18] * Joins: MacTed (~Thud@63.119.36.36)
- # [17:22] * ImBcmDth_ is now known as ImBcmDth
- # [17:22] * Joins: micheil (~micheil@109.224.128.70)
- # [17:22] * Quits: markkes (~markkes@62.207.90.201) (Read error: Connection reset by peer)
- # [17:24] * boaz|away is now known as boaz
- # [17:26] * Joins: ehsan (~ehsan@66.207.208.98)
- # [17:32] <zcorpan> fast ij is fast
- # [17:36] * Joins: isherman (isherman@nat/google/x-mvitcaptgyvxbfys)
- # [17:41] * Quits: isherman (isherman@nat/google/x-mvitcaptgyvxbfys) (Ping timeout: 245 seconds)
- # [17:41] * boaz is now known as boaz|away
- # [17:43] * Quits: ben_alman (~cowboy@awesome.benalman.com) (Excess Flood)
- # [17:45] <AryehGregor> Ms2ger, the patent policy before FS only applies to contributors, I think. At FS, everyone is invited to agree to license their patents on the subject matter, although it's optional. (I think.)
- # [17:45] <AryehGregor> I guess I should publish a FS of the editing spec.
- # [17:45] <AryehGregor> But if the WHATCG wants to test the waters first, please be my guest. :)
- # [17:49] * Joins: mhausenblas (~mhausenbl@wlan-nat.fwgal01.deri.ie)
- # [17:50] * Joins: ben_alman (~cowboy@awesome.benalman.com)
- # [17:51] * Joins: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [17:54] * Parts: SimonSapin (~simon@2a01:e35:2e8d:b5f0:ea9d:87ff:fe22:e221)
- # [17:54] * Joins: SimonSapin (~simon@2a01:e35:2e8d:b5f0:ea9d:87ff:fe22:e221)
- # [17:55] * Joins: tantek (~tantek@76.115.51.221)
- # [17:56] * Quits: shwetank (~shwetank@122.173.201.69) (Quit: Linkinus - http://linkinus.com)
- # [17:57] * Quits: zcorpan (~zcorpan@pat.se.opera.com) (Remote host closed the connection)
- # [17:59] * Quits: thisgeek (~chris@ool-45757f42.dyn.optonline.net) (Quit: thisgeek)
- # [18:00] * Quits: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Quit: abarth_)
- # [18:01] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [18:01] * Quits: Areks (~Areks@rs.gridnine.com) (Ping timeout: 272 seconds)
- # [18:01] * Joins: izhak (~izhak@188.168.200.202)
- # [18:02] * Joins: jwalden (~waldo@2620:101:8003:200:4e1:8ffe:4d5:52ae)
- # [18:07] * Quits: roven (~chatzilla@d51530390.static.telenet.be) (Quit: ChatZilla 0.9.88.2 [Firefox 13.0.1/20120614114901])
- # [18:09] * Joins: sicking (~chatzilla@nat/mozilla/x-ogpmdynntdjkwsvl)
- # [18:12] * Joins: isherman (isherman@nat/google/x-makrhxnlkycvkcxd)
- # [18:12] * Joins: thisgeek (~chris@ool-45757782.dyn.optonline.net)
- # [18:14] * Joins: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [18:16] * Quits: isherman (isherman@nat/google/x-makrhxnlkycvkcxd) (Ping timeout: 245 seconds)
- # [18:17] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [18:20] * Quits: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 264 seconds)
- # [18:24] * Quits: raphc (~quassel@153-107-190-109.dsl.ovh.fr) (Ping timeout: 240 seconds)
- # [18:25] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [18:28] * Joins: espadrine (~espadrine@63-235-13-3.dia.static.qwest.net)
- # [18:30] * Joins: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [18:35] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [18:37] * Joins: jennb (jennb@nat/google/x-kguspqfwyuynjaiu)
- # [18:39] * Quits: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Quit: abarth_)
- # [18:41] * Quits: [[zz]] (~q@node-a4s.pool-125-25.dynamic.totbb.net) (Ping timeout: 264 seconds)
- # [18:42] * Joins: [[zz]] (~q@node-a4s.pool-125-25.dynamic.totbb.net)
- # [18:42] * Joins: michaeln (michaeln@nat/google/x-jgsppbbyqlxrrcyq)
- # [18:47] * Joins: isherman (isherman@nat/google/x-bgtzwqtgrxhtrvvp)
- # [18:48] * Quits: Lachy (~Lachy@office.oslo.opera.com) (Quit: Computer has gone to sleep.)
- # [18:51] * Joins: pablof (~pablof@144.189.101.1)
- # [18:52] * Quits: isherman (isherman@nat/google/x-bgtzwqtgrxhtrvvp) (Ping timeout: 272 seconds)
- # [18:54] * Quits: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se) (Quit: tomasf)
- # [18:56] * Joins: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk)
- # [18:56] * Joins: myakura (~myakura@FL1-122-130-129-42.tky.mesh.ad.jp)
- # [18:59] * Quits: micheil (~micheil@109.224.128.70) (Quit: http://brandedcode.com | http://github.com/miksago)
- # [19:00] * ojan_away is now known as ojan
- # [19:01] * Quits: myakura (~myakura@FL1-122-130-129-42.tky.mesh.ad.jp) (Ping timeout: 264 seconds)
- # [19:01] * Quits: SimonSapin (~simon@2a01:e35:2e8d:b5f0:ea9d:87ff:fe22:e221) (Ping timeout: 264 seconds)
- # [19:03] * Quits: tantek (~tantek@76.115.51.221) (Quit: tantek)
- # [19:03] * Quits: sicking (~chatzilla@nat/mozilla/x-ogpmdynntdjkwsvl) (Ping timeout: 255 seconds)
- # [19:04] * Quits: mhausenblas (~mhausenbl@wlan-nat.fwgal01.deri.ie) (Quit: brb)
- # [19:05] * Joins: sicking (~chatzilla@nat/mozilla/x-oosxqxwycvuyhrrz)
- # [19:09] * Quits: sicking (~chatzilla@nat/mozilla/x-oosxqxwycvuyhrrz) (Client Quit)
- # [19:09] * Joins: sicking (~chatzilla@nat/mozilla/x-rnwpvgiyltcrpzsl)
- # [19:10] * Quits: pyrsmk (~pyrsmk@17.4.101.84.rev.sfr.net) (Remote host closed the connection)
- # [19:11] * abstractj is now known as abstractj|lunch
- # [19:12] * Quits: michaeln (michaeln@nat/google/x-jgsppbbyqlxrrcyq) (Quit: Leaving.)
- # [19:13] * Quits: jarib (~jarib@unaffiliated/jarib) (Excess Flood)
- # [19:14] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [19:15] * Quits: mattlucht (~mattlucht@194.102.13.2) (Quit: mattlucht)
- # [19:15] * nonge_ is now known as nonge
- # [19:17] * Joins: fishd (darin@nat/google/x-pmlzixxqrcmiwatw)
- # [19:18] * jonlee|afk is now known as jonlee
- # [19:21] * Joins: gkellogg_ (~gregg@c-98-248-150-91.hsd1.ca.comcast.net)
- # [19:23] * Quits: gkellogg_ (~gregg@c-98-248-150-91.hsd1.ca.comcast.net) (Client Quit)
- # [19:26] * Joins: isherman (isherman@nat/google/x-kbudnoyhkqxhmmqv)
- # [19:28] * Joins: tantek (~tantek@mf82036d0.tmodns.net)
- # [19:28] * Joins: myakura (~myakura@FL1-122-130-129-42.tky.mesh.ad.jp)
- # [19:30] * Quits: isherman (isherman@nat/google/x-kbudnoyhkqxhmmqv) (Ping timeout: 240 seconds)
- # [19:30] * Joins: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [19:31] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [19:31] * Joins: jsbell (jsbell@nat/google/x-ldibhgblkztnhadm)
- # [19:35] * Joins: aklein (u4454@gateway/web/irccloud.com/x-kjaicafvsuelxcno)
- # [19:38] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [19:44] * Quits: jwalden (~waldo@2620:101:8003:200:4e1:8ffe:4d5:52ae) (Quit: brb)
- # [19:44] * Joins: Lachy (~Lachy@cm-84.215.193.125.getinternet.no)
- # [19:46] * Joins: michaeln (michaeln@nat/google/x-cfadkfbmuiooqbgk)
- # [19:47] * Quits: drublic (~drublic@frbg-4d029cd5.pool.mediaWays.net) (Remote host closed the connection)
- # [19:48] * Joins: jwalden (~waldo@2620:101:8003:200:4e1:8ffe:4d5:52ae)
- # [19:48] * Joins: niloy (~niloy@117.219.115.162)
- # [19:48] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [19:49] * Quits: sicking (~chatzilla@nat/mozilla/x-rnwpvgiyltcrpzsl) (Ping timeout: 265 seconds)
- # [19:50] * Quits: espadrine (~espadrine@63-235-13-3.dia.static.qwest.net) (Quit: espadrine)
- # [19:50] * Quits: tantek (~tantek@mf82036d0.tmodns.net) (Quit: tantek)
- # [19:52] * abstractj|lunch is now known as abstractj
- # [19:56] <matjas> annevk: re: HTTP & data URLs & same-origin: http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html#data:-urls-and-http seems to allow it
- # [19:56] <matjas> annevk: couldn’t find it in the HTML spec
- # [19:57] <matjas> annevk: or did I misunderstand that section ^?
- # [19:59] * Joins: quinnirill (~jussi@static-ip-62-75-175-58.inaddr.ip-pool.com)
- # [20:01] * Quits: izhak (~izhak@188.168.200.202) (Ping timeout: 252 seconds)
- # [20:02] <quinnirill> hey everyone, I have a question about the XHR2
- # [20:02] <quinnirill> is Anne here?
- # [20:02] <zewt> that's an easy question, nope
- # [20:02] <quinnirill> hehe
- # [20:03] <quinnirill> ok, I'll try again later then, thanks
- # [20:03] <TabAtkins_> Anne's on vacation, except when he checks in.
- # [20:03] <quinnirill> ahh
- # [20:03] * Joins: tantek (~tantek@67.139.65.163)
- # [20:03] <quinnirill> hmm, I'll just drop this in to boil now then
- # [20:04] <quinnirill> it looks to me like the current spec doesn't have any support for streaming, am I correct? has this been discussed?
- # [20:06] * Joins: isherman (isherman@nat/google/x-usfygbrqevjtfhdu)
- # [20:08] <quinnirill> the thing is, we're building these JS audio decoders and *not* streaming would be horrible UX as potential use cases can include 1h+ songs and even for 3m+ songs downloading the whole song before starting playback is usually unacceptable
- # [20:09] * Joins: tndrH (~Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginmedia.com)
- # [20:09] * Quits: tantek (~tantek@67.139.65.163) (Quit: tantek)
- # [20:09] <quinnirill> so for now, we're using partial requests, but that's hogging bandwidth like a... well, hog.
- # [20:09] * Quits: isherman (isherman@nat/google/x-usfygbrqevjtfhdu) (Ping timeout: 240 seconds)
- # [20:09] <quinnirill> I was wondering if there's a better solution cooking and whether we could maybe contribute ideas
- # [20:10] * Joins: tantek (~tantek@67.139.65.163)
- # [20:10] <zewt> iirc you can access arraybuffer while loading to get the data so far (never tried it/don't know if it's implemented/might be wrong)
- # [20:10] <zewt> don't think that lets you actually stream (eg. discard data as you read to read an unbounded stream)
- # [20:12] <quinnirill> zewt: ok, I'll try that and see if it would be good enough, thanks!
- # [20:12] * Joins: espadrine (~espadrine@nat/mozilla/x-iijgkzfbcarjrbcl)
- # [20:12] * Joins: Atom138 (~Atom138@unaffiliated/atom138)
- # [20:13] * Parts: Atom138 (~Atom138@unaffiliated/atom138)
- # [20:16] * Quits: Lachy (~Lachy@cm-84.215.193.125.getinternet.no) (Quit: Computer has gone to sleep.)
- # [20:16] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [20:20] * Joins: dgathright_ (~dgathrigh@nat/yahoo/x-jnjmbonrorbiyapm)
- # [20:22] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 240 seconds)
- # [20:23] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [20:24] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [20:24] * boaz|away is now known as boaz
- # [20:24] * Quits: dgathright_ (~dgathrigh@nat/yahoo/x-jnjmbonrorbiyapm) (Ping timeout: 244 seconds)
- # [20:25] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [20:26] * Quits: myakura (~myakura@FL1-122-130-129-42.tky.mesh.ad.jp) (Remote host closed the connection)
- # [20:29] <Hixie> i don't suppose we can just drop xslt support from the platform?
- # [20:29] <TabAtkins_> I'm cool with this.
- # [20:29] * Hixie stares at hsivonen's scary-looking feedback regarding how readyState should work with xslt
- # [20:31] * Quits: tantek (~tantek@67.139.65.163) (Quit: tantek)
- # [20:32] <Hixie> oh hey, i already have a section that basically says "i give up on xslt, but in the absence of xslt defining this stuff, here's some handwaving suggestions"
- # [20:32] * Hixie adds more to it
- # [20:32] * Quits: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net) (Remote host closed the connection)
- # [20:33] * Joins: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net)
- # [20:37] * Quits: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net) (Ping timeout: 250 seconds)
- # [20:40] * Joins: sicking (~chatzilla@nat/mozilla/x-nbigjdqiducncvkz)
- # [20:43] * Joins: drublic (~drublic@frbg-5f7317a0.pool.mediaWays.net)
- # [20:44] * Joins: isherman (isherman@nat/google/x-jwqqeeqockxfgbly)
- # [20:45] * Joins: rniwa (rniwa@nat/google/x-qlkqcyegjuntpgyj)
- # [20:48] * Quits: isherman (isherman@nat/google/x-jwqqeeqockxfgbly) (Ping timeout: 248 seconds)
- # [20:53] * Quits: niloy (~niloy@117.219.115.162) (Ping timeout: 265 seconds)
- # [21:04] * Quits: cheron (~cheron@unaffiliated/cheron) (Quit: Leaving.)
- # [21:08] * JohnAlbin is now known as JohnAlbin_zzzzzz
- # [21:08] * Quits: SonicX (~quassel@116.203.95.177) (Remote host closed the connection)
- # [21:12] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [21:15] * Quits: GlitchMr (~glitchmr@178-36-129-249.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [21:15] * Quits: jarib (~jarib@unaffiliated/jarib) (Excess Flood)
- # [21:16] * Joins: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu)
- # [21:16] * Joins: Lachy (~Lachy@cm-84.215.193.125.getinternet.no)
- # [21:16] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [21:16] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [21:18] * Quits: Lachy (~Lachy@cm-84.215.193.125.getinternet.no) (Client Quit)
- # [21:20] * Joins: dbaron (~dbaron@nat/mozilla/x-uylychymkmqwzqra)
- # [21:22] * Joins: tomasf (~tom@c-36dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [21:23] * Joins: isherman (isherman@nat/google/x-ordkgvnvrbjugrej)
- # [21:24] * Quits: ben_alman (~cowboy@awesome.benalman.com) (Excess Flood)
- # [21:27] * Quits: isherman (isherman@nat/google/x-ordkgvnvrbjugrej) (Ping timeout: 240 seconds)
- # [21:29] * Joins: ben_alman (~cowboy@awesome.benalman.com)
- # [21:30] * jonlee is now known as jonlee|afk
- # [21:39] <zewt> gar does google really not index w3 tickets
- # [21:39] <zewt> site:https://www.w3.org/Bugs/Public/ 1 result
- # [21:43] <TabAtkins_> view-source:https://www.w3.org/Bugs/Public/robots.txt
- # [21:43] * Joins: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net)
- # [21:43] <TabAtkins_> So, no.
- # [21:44] <zewt> (obviously, the real question was "why does w3's tracker have a completely BS robots.txt")
- # [21:45] <zewt> that's beyond absurd ... even for the w3c
- # [21:48] * Quits: michaeln (michaeln@nat/google/x-cfadkfbmuiooqbgk) (Quit: Leaving.)
- # [21:49] * Quits: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net) (Ping timeout: 252 seconds)
- # [21:49] * jonlee|afk is now known as jonlee
- # [21:50] <gsnedders> jwalden: __proto__ is in Carakan!
- # [21:52] * Joins: darcyclarke (~darcyclar@108.162.149.34)
- # [21:56] <jwalden> yay!
- # [21:57] * Joins: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [21:57] * Quits: abarth_ (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Client Quit)
- # [21:57] <Hixie> zewt: bugzilla in general disables robots because of load, iirc
- # [21:58] <Hixie> also the real robots.txt that matters is https://www.w3.org/robots.txt
- # [21:58] <Velmont> They should learn it some caching :-)
- # [21:58] <Hixie> (a robots.txt in a subdirectory doesn't work)
- # [21:58] <Velmont> Do some varnish magic.
- # [22:02] * Joins: isherman (isherman@nat/google/x-icjzhmumntqefhfs)
- # [22:05] * Joins: jarek (~jarek@aeal127.neoplus.adsl.tpnet.pl)
- # [22:05] * Quits: jarek (~jarek@aeal127.neoplus.adsl.tpnet.pl) (Changing host)
- # [22:05] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [22:06] <jarek> which spec should I be looking at to get the list of all possible color names?
- # [22:06] <gsnedders> css3-color
- # [22:06] <jarek> SVG? CSS2.1? CSS3 Color module?
- # [22:06] * Quits: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 264 seconds)
- # [22:06] * Quits: isherman (isherman@nat/google/x-icjzhmumntqefhfs) (Ping timeout: 248 seconds)
- # [22:06] <jarek> http://www.w3.org/TR/css3-iccprof
- # [22:06] * Joins: gavinc (~gavin@50.0.77.3)
- # [22:06] <jarek> but it's from 2001 :/
- # [22:07] <gsnedders> http://www.w3.org/TR/css3-color/ is a REC from last year
- # [22:07] <jarek> cool, thanks
- # [22:07] <TabAtkins_> jarek: If you want to use the list for something, I have a few versions of the list in JSON.
- # [22:08] <jarek> TabAtkins_: I need a list of all color names that could be used with "fill" SVG property
- # [22:08] <jarek> TabAtkins_: how many colors are on your list? 147?
- # [22:09] <TabAtkins_> In browsers, 'fill' takes every single CSS color, including ones that SVG doesn't officially define.
- # [22:09] <TabAtkins_> All of which are defined in css3-color, that gsnedders linked to.
- # [22:09] * Joins: annevk (~annevk@62.48.251.2)
- # [22:11] <jarek> TabAtkins_: css3-color seems to contains exactly the same colors as SVG 1.1
- # [22:11] <TabAtkins_> Yes.
- # [22:12] <TabAtkins_> The colors haven't changed for a decade.
- # [22:13] * Quits: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no) (Remote host closed the connection)
- # [22:14] * Joins: othermaciej (~mjs@17.244.2.31)
- # [22:14] <jarek> there is gray and gray which are basically the same color :/
- # [22:15] <jarek> I mean gray and grey
- # [22:16] <TabAtkins_> Yes, they're identical. The named colors list is *retarded*.
- # [22:17] * Quits: bzed (~bzed@devel.recluse.de) (Remote host closed the connection)
- # [22:17] <jarek> I assume that decision to include both gray and grey on the list was purely political?
- # [22:17] <Hixie> probably dates back to X11
- # [22:17] * Joins: bzed (~bzed@devel.recluse.de)
- # [22:19] * Quits: bzed (~bzed@devel.recluse.de) (Remote host closed the connection)
- # [22:20] * Joins: bzed (~bzed@devel.recluse.de)
- # [22:21] <jarek> I didn't know that X11 was designed by a committee
- # [22:21] <jarek> it looks more like addition from W3C
- # [22:21] <gsnedders> Totally backwards compatible, most of it never used.
- # [22:22] <TabAtkins_> Not political. The X11 list was copied from an old rgb.txt file that someone had.
- # [22:22] <TabAtkins_> Someone on that Linux distro decided that that particular list was worthwhile.
- # [22:22] <TabAtkins_> I respectfully submit that that distro maintainer was stupid.
- # [22:23] <Hixie> http://en.wikipedia.org/wiki/X11_color_names suggests it's even more complicated than i feared
- # [22:23] <Hixie> looks like netscape was on the path of blame
- # [22:24] * Quits: bzed (~bzed@devel.recluse.de) (Remote host closed the connection)
- # [22:26] * Joins: necolas (~necolas@5ade2fae.bb.sky.com)
- # [22:26] <jarek> "Some browsers like Netscape navigator insisted on an ‘a’ in any ‘Gray’ except for ‘Light Grey’."
- # [22:27] <gavinc> I this mess starts in the 19th century :P
- # [22:28] <gavinc> http://grammarist.com/spelling/gray-grey/
- # [22:29] <gsnedders> There's 50 Shades of Grey, but only 1 Shade of Gray.
- # [22:30] * Joins: Guest27068 (~bzed@devel.recluse.de)
- # [22:33] * boaz is now known as boaz|away
- # [22:34] * Quits: Guest27068 (~bzed@devel.recluse.de) (Quit: leaving)
- # [22:34] * Joins: bzed_ (~bzed@devel.recluse.de)
- # [22:41] * Joins: isherman (isherman@nat/google/x-zqbbmbrlqpzvwdja)
- # [22:43] * bzed_ is now known as bzed
- # [22:46] * Quits: isherman (isherman@nat/google/x-zqbbmbrlqpzvwdja) (Ping timeout: 264 seconds)
- # [22:49] * Joins: michaeln (michaeln@nat/google/x-hdemefodqzqpsqet)
- # [22:51] * Joins: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no)
- # [22:55] * Quits: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no) (Ping timeout: 255 seconds)
- # [23:01] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [23:04] * Quits: jarek (~jarek@unaffiliated/jarek) (Quit: Leaving)
- # [23:05] * Joins: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [23:09] * Quits: MacTed (~Thud@63.119.36.36)
- # [23:12] * Parts: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [23:12] * Quits: thisgeek (~chris@ool-45757782.dyn.optonline.net) (Quit: thisgeek)
- # [23:12] * Joins: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [23:13] * Quits: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 264 seconds)
- # [23:16] * Joins: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no)
- # [23:19] * Joins: isherman (isherman@nat/google/x-zoezyhtwgmoqzmqz)
- # [23:20] * Quits: hasather_ (~hasather_@cm-84.208.57.129.getinternet.no) (Ping timeout: 245 seconds)
- # [23:22] * Quits: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [23:24] * Quits: isherman (isherman@nat/google/x-zoezyhtwgmoqzmqz) (Ping timeout: 250 seconds)
- # [23:25] * Quits: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Ping timeout: 265 seconds)
- # [23:25] * Quits: Ms2ger (~Ms2ger@91.181.7.84) (Quit: nn)
- # [23:26] * Quits: othermaciej (~mjs@17.244.2.31) (Quit: othermaciej)
- # [23:28] * Quits: kennyluck (~kennyluck@114-43-123-182.dynamic.hinet.net) (Read error: Connection reset by peer)
- # [23:32] * abstractj is now known as abstractj|brb
- # [23:33] * Quits: annevk (~annevk@62.48.251.2) (Remote host closed the connection)
- # [23:36] * ImBcmDth is now known as ImBcmAwy
- # [23:36] * Joins: kennyluck (~kennyluck@114-43-118-69.dynamic.hinet.net)
- # [23:39] * Joins: PalleZingmark1 (~Adium@90-229-139-33-no195.tbcn.telia.com)
- # [23:40] * Quits: PalleZingmark (~Adium@217.13.228.226) (Ping timeout: 245 seconds)
- # [23:42] * boaz|away is now known as boaz
- # [23:43] * Joins: Lachy (~Lachy@cm-84.215.193.125.getinternet.no)
- # [23:44] * Joins: othermaciej (~mjs@17.245.105.228)
- # [23:45] * Quits: yodasw16 (~dgillhesp@ql1fwhide.rockfin.com) (Quit: yodasw16)
- # [23:58] * Joins: isherman (isherman@nat/google/x-svwyawifsrdtxxrp)
- # Session Close: Wed Jul 11 00:00:00 2012
The end :)