Options:
- # Session Start: Fri Aug 24 00:00:00 2012
- # Session Ident: #whatwg
- # [00:02] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # [00:03] * Parts: jzaefferer (~jzaeffere@205.186.165.147)
- # [00:03] <Hixie> heycam: i got some [AllowAny] DOMString arguments, do I just drop [AllowAny] ?
- # [00:04] <heycam> Hixie, yes DOMString arguments should always be preferred when an argument doesn't match the other overload types
- # [00:05] <Hixie> ok
- # [00:06] * Quits: xbuzz (~chris@pool-96-252-81-32.bstnma.fios.verizon.net) (Quit: xbuzz)
- # [00:09] * Joins: kinetik (~kinetik@121.98.132.55)
- # [00:09] * Joins: chriseppstein (~chrisepps@209.119.65.162)
- # [00:11] * Quits: dbaron (~dbaron@nat/mozilla/x-ulkthwgvqeizjygb) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [00:12] * Joins: nessy (~silviapf@124-171-9-172.dyn.iinet.net.au)
- # [00:13] * Quits: Zauberfisch (~Zauberfis@venus.zauberfisch.at) (Ping timeout: 246 seconds)
- # [00:13] <Hixie> heycam: so there's no difference between an attribute that's "attribute any foo;" and one where it's "attribute (DOMString | SpecialFoo) foo;" except that in the latter case things like coaxing to DOMString if the input is null or { valueOf: ... } etc are handled by Web IDL?
- # [00:14] <Hixie> er, "or", not "|"
- # [00:15] * Joins: Dashimon (Dashiva@84-72-44-85.dclient.hispeed.ch)
- # [00:15] * Quits: Dashimon (Dashiva@84-72-44-85.dclient.hispeed.ch) (Changing host)
- # [00:15] * Joins: Dashimon (Dashiva@wikia/Dashiva)
- # [00:15] * Quits: Dashimon (Dashiva@wikia/Dashiva) (Client Quit)
- # [00:16] * Joins: roc (~chatzilla@60.234.66.20)
- # [00:16] <Hixie> heycam: and if so, is there a way for me to define that i want an attribute that on setting always coaxes the input to DOMString but on getting could return "any"?
- # [00:17] * Parts: imsky (~imsky@99-38-162-2.lightspeed.iplsin.sbcglobal.net) ("Leaving")
- # [00:20] * Joins: Yuhong (~chatzilla@50-47-177-209.evrt.wa.frontiernet.net)
- # [00:22] * Joins: xbuzz (~chris@pool-96-252-81-32.bstnma.fios.verizon.net)
- # [00:22] * Quits: xbuzz (~chris@pool-96-252-81-32.bstnma.fios.verizon.net) (Client Quit)
- # [00:23] * jonlee is now known as jonlee|afk
- # [00:37] <heycam> Hixie, for the first question, yes that's right; for the second, unfortunately there isn't
- # [00:37] <Hixie> k
- # [00:37] <Hixie> is there an equivalent for [AllowAny] for "long" ?
- # [00:38] <heycam> no, but if there is no DOMString argument overloaded with it it will select the long
- # [00:38] <Hixie> i have a method where UAs treat integers one way, and everything else 0
- # [00:38] <Hixie> do i have to make it take any?
- # [00:38] <heycam> I don't think so, let me check though
- # [00:39] <Hixie> (HTMLOptionCollection.remove())
- # [00:39] <heycam> so you want f("abc") and f(node) to be like f(0)?
- # [00:39] <Hixie> yeah
- # [00:39] <Hixie> and f(NaN)
- # [00:39] <heycam> ok so I *think* it might be like that currently but I'll just confirm]
- # [00:39] <Hixie> and f(0.5)
- # [00:39] * heycam always forgets what the latest state of all the overload resolution stuff is
- # [00:40] <Hixie> but f(60.5) treated as f(60) apparently
- # [00:40] <heycam> always truncating?
- # [00:40] <Hixie> i've tested four numbers so far
- # [00:40] <Hixie> they all seemed to truncate
- # [00:40] <Hixie> but what do i know
- # [00:40] <heycam> ha
- # [00:41] <Hixie> seems like it truncates for all the numbers i care about
- # [00:41] * jonlee|afk is now known as jonlee
- # [00:41] <Hixie> -0.1 and -0.9 => 0
- # [00:41] <heycam> ok so that should be right, if you don't have an exact match then it'll prefer a DOMString argument, and if there's no DOMString argument it'll prefer a primitive argument
- # [00:41] <heycam> so it's then just down to the normal rules for converting to long
- # [00:41] <Hixie> ah cool
- # [00:41] <heycam> if they match what you need..
- # [00:41] <Hixie> so if i have a method that takes a long it'll never throw TYPE_MISMATCH?
- # [00:42] <Hixie> or whatever hte exception is
- # [00:42] <heycam> (TypeError)
- # [00:42] <heycam> right
- # [00:42] <Hixie> how convenient
- # [00:42] <Hixie> ok
- # [00:42] <Hixie> cool
- # [00:42] <Hixie> thanks
- # [00:42] <heycam> cool
- # [00:45] <Hixie> it astounds me how good a job we are doing of speccing the web platform these days, compared to where we were 13 years ago
- # [00:46] <Hixie> (web idl being a huge part of that)
- # [00:46] <heycam> hooray
- # [00:46] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Remote host closed the connection)
- # [00:49] * gavin_ is now known as gavin
- # [00:52] * Quits: izhak (~izhak@188.244.178.52) (Ping timeout: 245 seconds)
- # [00:54] <Yuhong> http://www.w3.org/2001/tag/2011/12/evolution/
- # [00:54] <Yuhong> http://www.w3.org/wiki/Evolution
- # [00:54] <Yuhong> I wonder what happened
- # [00:57] <Hixie> hober: your copy/paste resolutions are cute :-P
- # [00:58] * Quits: FedorEmelianenko (~fedor@151.74.100.96)
- # [01:00] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Quit: sedovsek)
- # [01:01] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [01:04] <Hixie> hober: is there any documentation anywhere that tracks which revisions the w3c spec has adopted and which it hasn't?
- # [01:05] * Quits: tomasf (~tom@c-41d8e555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [01:09] <Hixie> hober: also, is there something somewhere i can use to keep track of the decisions that were applied? I'm trying to update the list of ways the specs are forked
- # [01:10] * heycam is now known as heycam|away
- # [01:14] * ojan is now known as ojan_away
- # [01:21] <Yuhong> DirectX vs OpenGL again, now against CSS Shaders: http://codeflow.org/entries/2012/aug/22/css-shaders-w3c-microsoft-and-broken-standards/
- # [01:23] <jamesr> the rant is strong with this one
- # [01:23] * Joins: garciawebdev (~garciaweb@190.244.73.31)
- # [01:23] <zewt> yeah i closed the window as soon as i saw every other word bolded with some randomly in weird colors
- # [01:25] <zewt> (the distracting animations and mugshot didn't help on the "worth reading" scale, either)
- # [01:27] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Ping timeout: 245 seconds)
- # [01:30] * Joins: Delapouite (~Delapouit@dsl-58-6-19-17.wa.westnet.com.au)
- # [01:31] * jonlee is now known as jonlee|afk
- # [01:31] * Joins: MikeSmith_ (~MikeSmith@s1106059.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [01:31] * Quits: drublic (~drublic@frbg-5f731523.pool.mediaWays.net) (Remote host closed the connection)
- # [01:32] * Joins: drublic (~drublic@frbg-5f731523.pool.mediaWays.net)
- # [01:32] * Quits: MikeSmith (~MikeSmith@s1106224.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 244 seconds)
- # [01:32] * MikeSmith_ is now known as MikeSmith
- # [01:34] * Joins: drublic_ (~drublic@frbg-5f731523.pool.mediaWays.net)
- # [01:36] <Yuhong> https://news.ycombinator.com/item?id=4422022
- # [01:37] * Quits: drublic (~drublic@frbg-5f731523.pool.mediaWays.net) (Ping timeout: 276 seconds)
- # [01:38] * Quits: nessy (~silviapf@124-171-9-172.dyn.iinet.net.au) (*.net *.split)
- # [01:38] * Quits: eighty4 (~eighty4@unaffiliated/eighty4) (*.net *.split)
- # [01:40] * Joins: eighty4 (~eighty4@unaffiliated/eighty4)
- # [01:42] * Quits: erichynds (~ehynds@pool-173-76-135-79.bstnma.fios.verizon.net)
- # [01:42] * Joins: nessy (~silviapf@124-171-9-172.dyn.iinet.net.au)
- # [01:45] * Quits: ChrisWilson (~Adium@nat/mozilla/x-dkgriejxjrentjpz) (Quit: Leaving.)
- # [01:48] <Yuhong> jamesr: But considering it is MS fragmenting the web yet again, I am not surprised.
- # [01:49] <jamesr> i think the article is really misinformed
- # [01:50] * Joins: othermaciej (~mjs@17.245.108.176)
- # [01:54] * Quits: ^esc (~esc_ape@77.116.247.228.wireless.dyn.drei.com) (Excess Flood)
- # [01:55] * Joins: ^esc (~esc_ape@77.116.247.228.wireless.dyn.drei.com)
- # [01:55] * Quits: Yuhong (~chatzilla@50-47-177-209.evrt.wa.frontiernet.net) (Quit: ChatZilla 0.9.88.2 [Firefox 14.0.1/20120713134347])
- # [01:57] * jonlee|afk is now known as jonlee
- # [01:57] * Quits: Druide_ (~Druid@p5B135944.dip.t-dialin.net) (Ping timeout: 265 seconds)
- # [01:57] * Joins: tantek (~tantek@66-87-4-57.pools.spcsdns.net)
- # [02:02] * Quits: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1) (Ping timeout: 246 seconds)
- # [02:04] * Quits: drublic_ (~drublic@frbg-5f731523.pool.mediaWays.net) (Remote host closed the connection)
- # [02:05] * Quits: Areks (~Areks@128-69-102-87.broadband.corbina.ru) (Ping timeout: 245 seconds)
- # [02:05] * Joins: drublic (~drublic@frbg-5f731523.pool.mediaWays.net)
- # [02:06] * Joins: Druide_ (~Druid@p5B1368FB.dip.t-dialin.net)
- # [02:08] * abstractj is now known as abstractj|away
- # [02:08] * Quits: dgathright (~dgathrigh@nat/yahoo/x-nsrtqkggchyrbdsd) (Quit: dgathright)
- # [02:10] * Quits: drublic (~drublic@frbg-5f731523.pool.mediaWays.net) (Ping timeout: 276 seconds)
- # [02:11] * Quits: mattgifford (~mattgiffo@70.102.199.158) (Remote host closed the connection)
- # [02:12] * Joins: mattgifford (~mattgiffo@70.102.199.158)
- # [02:16] * Quits: mattgifford (~mattgiffo@70.102.199.158) (Ping timeout: 256 seconds)
- # [02:19] * Quits: ap_ (~ap@2620:149:4:1b01:7cbb:2316:e68d:2749) (Quit: ap_)
- # [02:19] * Joins: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net)
- # [02:20] * Joins: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1)
- # [02:24] * Quits: ehsan_ (~ehsan@66.207.208.98) (Remote host closed the connection)
- # [02:28] * Quits: Druide_ (~Druid@p5B1368FB.dip.t-dialin.net)
- # [02:29] * jonlee is now known as jonlee|afk
- # [02:41] * Quits: gwicke (~gabriel@wikimedia/gwicke) (Quit: Bye!)
- # [02:41] * Joins: gwicke_ (~gabriel@216.38.130.162)
- # [02:49] * Joins: MikeSmith_ (~MikeSmith@s1106059.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [02:51] * Quits: MikeSmith (~MikeSmith@s1106059.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 240 seconds)
- # [02:51] * MikeSmith_ is now known as MikeSmith
- # [02:57] * Joins: jondong (~jondong@123.126.22.58)
- # [02:57] * jondong is now known as Guest63939
- # [02:58] * Joins: ehsan (~ehsan@69.165.253.118)
- # [02:59] * Quits: gwicke_ (~gabriel@216.38.130.162) (Ping timeout: 245 seconds)
- # [03:07] * Joins: MikeSmith_ (~MikeSmith@s1106059.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [03:09] * Quits: MikeSmith (~MikeSmith@s1106059.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 240 seconds)
- # [03:09] * MikeSmith_ is now known as MikeSmith
- # [03:10] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [03:11] * Joins: garciawebdev (~garciaweb@190.244.73.31)
- # [03:16] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Ping timeout: 276 seconds)
- # [03:21] * Quits: crankharder (~crankhard@ip68-98-153-131.dc.dc.cox.net) (Ping timeout: 248 seconds)
- # [03:22] * Joins: crankharder (~crankhard@ip68-98-153-131.dc.dc.cox.net)
- # [03:22] * Quits: rniwa (rniwa@nat/google/x-ytfsolabregfvqvg) (Quit: rniwa)
- # [03:24] * Quits: rwaldron (~rwaldron@209-6-71-27.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: Leaving...)
- # [03:27] * Joins: rwaldron (~rwaldron@209-6-71-27.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
- # [03:28] * Quits: smaug____ (~chatzilla@2620:101:8003:200:89f5:df06:3b20:5062) (Ping timeout: 246 seconds)
- # [03:28] * Quits: tantek (~tantek@66-87-4-57.pools.spcsdns.net) (Quit: tantek)
- # [03:29] * Joins: MikeSmith_ (~MikeSmith@s1106059.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [03:31] * Quits: MikeSmith (~MikeSmith@s1106059.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 240 seconds)
- # [03:31] * MikeSmith_ is now known as MikeSmith
- # [03:32] * Quits: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1) (Ping timeout: 260 seconds)
- # [03:35] * heycam|away is now known as heycam
- # [03:35] * Quits: rwaldron (~rwaldron@209-6-71-27.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: Leaving...)
- # [03:36] * Quits: stefsull_ (~stefsull@wsip-98-191-178-254.ph.ph.cox.net) (Quit: stefsull_)
- # [03:37] * Quits: othermaciej (~mjs@17.245.108.176) (Quit: othermaciej)
- # [03:37] * Joins: stefsull_ (~stefsull@wsip-98-191-178-254.ph.ph.cox.net)
- # [03:42] * Quits: stefsull_ (~stefsull@wsip-98-191-178-254.ph.ph.cox.net) (Client Quit)
- # [03:56] * Quits: chriseppstein (~chrisepps@209.119.65.162) (Quit: chriseppstein)
- # [04:00] * Joins: rwaldron (~rwaldron@209-6-71-27.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
- # [04:26] * Joins: stefsull (~stefsull@wsip-98-174-235-55.ph.ph.cox.net)
- # [04:35] * Joins: MikeSmith_ (~MikeSmith@s1106008.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [04:38] * Quits: MikeSmith (~MikeSmith@s1106059.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 244 seconds)
- # [04:38] * MikeSmith_ is now known as MikeSmith
- # [04:47] <roc> in what way?
- # [04:53] <jamesr> roc, was that to me?
- # [04:53] <roc> yes
- # [04:54] <jamesr> it's supposing that microsoft wants to introduce their own shading language. i suspect they simply want to avoid the IPR obligations that requiring glsl would imply
- # [04:54] <jamesr> i really doubt they want anything at all
- # [04:54] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [04:56] <roc> IIRC the IPR argument was not raised the first time they objected to specifying GLSL
- # [04:56] <roc> I could be wrong.
- # [04:57] <jamesr> just because they didn't say it doesn't mean they weren't thinking it
- # [04:58] <roc> I suppose you could strike "They prefer their own shading language they call IESL.", but that doesn't affect the thrust of the rant, which is that it's absurd to standardize "CSS Shaders" without a standard common shading language
- # [04:58] <jamesr> i don't think they even want to standardize css shaders
- # [04:59] <roc> if not, they're not saying it for some reason
- # [04:59] * Joins: garciawebdev (~garciaweb@190.244.73.31)
- # [05:00] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [05:00] <jamesr> it doesn't really impact them at all if someone goes off and creates a standard unless it triggers IPR for them
- # [05:00] <roc> sure it does, because they'll be expected to support it sooner or later.
- # [05:01] <roc> it's kinda hard to avoid the conclusion that they don't like GLSL for the same reason they don't like WebGL. The reason for *that* is a bit more speculative, but maybe not much more :-)
- # [05:02] <jamesr> it doesn't really matter if they object on IPR grounds, which they definitely do
- # [05:02] <jamesr> so making further conspiracy theories just seems like a waste of time
- # [05:04] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Ping timeout: 276 seconds)
- # [05:05] <othermaciej> Microsoft seems to be asking for GLSL to be a MAY-level rather than SHOULD-level requirement
- # [05:05] <othermaciej> at least in that original email
- # [05:06] <othermaciej> I think anything less than a MUST does not trigger w3c IPR commitments
- # [05:14] * Quits: stefsull (~stefsull@wsip-98-174-235-55.ph.ph.cox.net) (Quit: stefsull)
- # [05:22] * Quits: Obvious (tachikoma@188.226.74.2) (Ping timeout: 246 seconds)
- # [05:24] <othermaciej> hmm, Sylvain seems to think SHOULD and RECOMMENDED mean different things in RFC2119 language
- # [05:29] <othermaciej> but I guess it does not matter since both appear to trigger the patent policy - optional features are covered as long as they are normative
- # [05:29] <othermaciej> however, the patent policy excludes "technology developed elsewhere and merely incorporated by reference in the body of the Recommendation"
- # [05:30] <roc> I would have expected GLSL to be excluded by that
- # [05:31] <othermaciej> so I think the IPR claim is doubtful
- # [05:31] * Joins: kennyluck (~kennyluck@119.161.158.96)
- # [05:31] <othermaciej> it is hard to assess the non-IPR objections, the thread has a poor signal-to-noise ratio
- # [05:31] <jamesr> yeah the thread is crap
- # [05:31] <jamesr> othermaciej, do you think he's not assessing it in terms of IPR and he's wrong, or that's not his concern?
- # [05:32] <jamesr> sorry too many negatives. do you think his assessment of the RFC2119 triggers is wrong, or that's not what he is bothered by?
- # [05:32] <othermaciej> his claims about IPR are:
- # [05:32] <othermaciej> (1) RECOMMENDED is an RFC2119 keyword that "is not just an optional should"
- # [05:33] <othermaciej> (2) therefore the W3C patent policy likely applies to IPR on GLSL
- # [05:33] <othermaciej> these statements are false or misleading for the following reasons:
- # [05:34] <othermaciej> (A) RECOMMENDED and SHOULD are synonyms in RFC2119, so they have no difference in normative effect (I am puzzled how he could miss this while quoting the RFC_
- # [05:34] * Quits: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net) (Remote host closed the connection)
- # [05:34] <othermaciej> (B) The W3C patent policy covers optional features so long as they are normatively specified, so the fact that recommended is in fact optional does not matter
- # [05:35] <othermaciej> C) however the w3c patent policy excludes technologies developed elsewhere and incorporated by reference, so it likely would not apply to GLSL in any case
- # [05:35] * Joins: crocket (~crocket@unaffiliated/crocket)
- # [05:36] <crocket> What do I use instead of <frame> with HTML5 web pages?
- # [05:36] <crocket> <frame> is obsolete.
- # [05:36] <jamesr> <iframe> typically
- # [05:36] <othermaciej> that depends on what you are trying to do
- # [05:36] <othermaciej> if you want an independently browsable area that really needs to hold separate pages, <iframe>
- # [05:36] <crocket> hmm....
- # [05:37] <othermaciej> if you just want your page to have separate areas that scroll independently, CSS overflow: scroll
- # [05:37] <crocket> I know what <iframe> is.
- # [05:37] <othermaciej> (that is, make it all one page and use overflow: scroll on the scroll containers)
- # [05:37] <crocket> othermaciej, Can you show me an example of how CSS overflow property works?
- # [05:38] <othermaciej> crocket: not offhand but if you google or bing it I am sure you will find some good tutorials
- # [05:39] * Joins: kennyluck_ (~kennyluck@119.161.158.96)
- # [05:39] <crocket> othermaciej, ok
- # [05:39] <crocket> kennyluck_, Who killed you?
- # [05:41] * Quits: kennyluck (~kennyluck@119.161.158.96) (Ping timeout: 252 seconds)
- # [05:41] * kennyluck_ is now known as kennyluck
- # [05:43] <jamesr> othermaciej, is that something you can ask the w3c people to convince the microsoft lawyers of? your logic sounds reasonable, but IANAL and if they don't feel comfy here they are quite capable of blocking this for a long time
- # [05:43] <jamesr> i doubt replying on that thread could do much good, especially at this point
- # [05:44] <othermaciej> I am hesitant to wade into the topic since it is a flame-splosion right now
- # [05:52] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
- # [05:54] * heycam is now known as heycam|away
- # [06:00] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [06:05] * heycam|away is now known as heycam
- # [06:32] * Joins: smaug____ (~chatzilla@173-164-174-193-SFBA.hfc.comcastbusiness.net)
- # [06:34] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [06:40] * Joins: tomasf (~tom@c-41d8e555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [06:40] * Quits: tomasf (~tom@c-41d8e555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Client Quit)
- # [06:47] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Read error: Connection reset by peer)
- # [06:47] * Joins: garciawebdev (~garciaweb@190.244.73.31)
- # [06:51] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [06:52] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Ping timeout: 240 seconds)
- # [06:52] * Joins: LBP (~Mirc@pD9EB1A2E.dip0.t-ipconnect.de)
- # [06:56] * Joins: gwicke_ (~gabriel@32.129.210.250)
- # [06:58] * Quits: deane (~dean@203.184.22.238) (Read error: Connection reset by peer)
- # [07:03] * Quits: gwicke_ (~gabriel@32.129.210.250) (Ping timeout: 265 seconds)
- # [07:04] * Quits: rwaldron (~rwaldron@209-6-71-27.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: Leaving...)
- # [07:11] * Quits: mattgifford (~mattgiffo@108.161.20.199) (*.net *.split)
- # [07:11] * Quits: nessy (~silviapf@124-171-9-172.dyn.iinet.net.au) (*.net *.split)
- # [07:21] * Joins: ParadoX- (parad0x@hades.spexhost.com)
- # [07:31] * Quits: gsnedders (~gsnedders@mail.gsnedders.com) (Ping timeout: 265 seconds)
- # [07:31] * Joins: gsnedders (~gsnedders@mail.gsnedders.com)
- # [07:33] * Quits: smaug____ (~chatzilla@173-164-174-193-SFBA.hfc.comcastbusiness.net) (Ping timeout: 272 seconds)
- # [07:36] * Joins: tantek (~tantek@67-42-176-212.eugn.qwest.net)
- # [07:46] * Joins: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net)
- # [07:49] * Joins: shepazu_ (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [07:50] * Joins: danbri (~danbri@78-2-140-73.adsl.net.t-com.hr)
- # [07:50] * jernoble is now known as jernoble|afk
- # [07:50] * jernoble|afk is now known as jernoble
- # [07:51] * Quits: danbri (~danbri@78-2-140-73.adsl.net.t-com.hr) (Remote host closed the connection)
- # [07:52] * Joins: danbri (~danbri@78-2-140-73.adsl.net.t-com.hr)
- # [07:55] * Joins: Martin_L (~Martin_L@194.18.12.26)
- # [07:56] * Quits: danbri (~danbri@78-2-140-73.adsl.net.t-com.hr) (Ping timeout: 265 seconds)
- # [08:01] * Joins: j_wright (jamesw@ip70-180-205-15.lv.lv.cox.net)
- # [08:01] * Quits: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net) (Quit: ^z)
- # [08:04] * Joins: silverroots (~silverroo@144.187.148.27)
- # [08:08] * Joins: Obvious (tachikoma@188.226.74.2)
- # [08:08] * Joins: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de)
- # [08:09] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [08:10] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # [08:10] * Joins: sicking (~chatzilla@c-67-180-8-184.hsd1.ca.comcast.net)
- # [08:12] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [08:13] * Quits: shepazu_ (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Ping timeout: 252 seconds)
- # [08:17] * jonlee|afk is now known as jonlee
- # [08:19] * Quits: roc (~chatzilla@60.234.66.20) (Ping timeout: 256 seconds)
- # [08:22] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Quit: sedovsek)
- # [08:27] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [08:28] * Joins: snowfox_ben (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [08:29] <MikeSmith> oh cool an interface index
- # [08:30] * Joins: gwicke (~gabriel@wikimedia/gwicke)
- # [08:31] <MikeSmith> non-element interfaces
- # [08:31] <MikeSmith> http://www.whatwg.org/specs/web-apps/current-work/multipage/section-index.html#all-interfaces
- # [08:32] * Joins: Ducki (~Ducki@pD9E394E0.dip0.t-ipconnect.de)
- # [08:36] * Joins: garciawebdev (~garciaweb@190.244.73.31)
- # [08:38] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [08:40] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Ping timeout: 276 seconds)
- # [08:44] * Joins: drollwit (~drollwit@c-67-183-156-240.hsd1.wa.comcast.net)
- # [08:48] * Joins: markkes (~markkes@62.207.90.201)
- # [08:49] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # [08:51] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Client Quit)
- # [08:52] * Joins: zcorpan (~zcorpan@c-5eeaaabb-74736162.cust.telenor.se)
- # [08:54] <MikeSmith> http://lists.webkit.org/pipermail/webkit-dev/2012-August/022049.html is interesting
- # [08:54] <MikeSmith> Apple going all out on CSS Regions it seems
- # [08:54] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr_)
- # [08:56] * Joins: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [08:57] * Quits: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de) (Ping timeout: 252 seconds)
- # [08:58] * Quits: Necrathex (~Necrathex@195-240-192-16.ip.telfort.nl) (Quit: Leaving)
- # [08:59] * Joins: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de)
- # [09:02] * Quits: gwicke (~gabriel@wikimedia/gwicke) (Ping timeout: 245 seconds)
- # [09:05] * Joins: Ms2ger (~Ms2ger@91.181.15.199)
- # [09:06] * Joins: deane (~dean@203.184.22.238)
- # [09:06] * Joins: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no)
- # [09:11] * Quits: sicking (~chatzilla@c-67-180-8-184.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [09:12] * Quits: Martin_L (~Martin_L@194.18.12.26) (Remote host closed the connection)
- # [09:14] * jonlee is now known as jonlee|afk
- # [09:14] * Joins: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net)
- # [09:15] * Joins: necolas (~necolas@5ade1f41.bb.sky.com)
- # [09:15] * Joins: Martin_L (~Martin_L@194.18.12.26)
- # [09:20] * Quits: drollwit (~drollwit@c-67-183-156-240.hsd1.wa.comcast.net) (Read error: Connection reset by peer)
- # [09:20] * Joins: linclark (clark@145.253.125.212)
- # [09:20] * Joins: drollwit (~drollwit@c-67-183-156-240.hsd1.wa.comcast.net)
- # [09:21] * Joins: Zauberfisch (~Zauberfis@venus.zauberfisch.at)
- # [09:21] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [09:22] * Quits: drollwit (~drollwit@c-67-183-156-240.hsd1.wa.comcast.net) (Read error: Connection reset by peer)
- # [09:22] * Joins: drollwit (~drollwit@c-67-183-156-240.hsd1.wa.comcast.net)
- # [09:24] * Joins: nessy (~silviapf@124-171-9-172.dyn.iinet.net.au)
- # [09:24] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [09:26] * Quits: nessy (~silviapf@124-171-9-172.dyn.iinet.net.au) (Quit: Leaving.)
- # [09:28] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [09:30] * Quits: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no) (Remote host closed the connection)
- # [09:39] * Joins: Necrathex (~Necrathex@195-240-192-16.ip.telfort.nl)
- # [09:43] * Quits: drollwit (~drollwit@c-67-183-156-240.hsd1.wa.comcast.net) (Remote host closed the connection)
- # [09:45] * Parts: Kolombiken (~Adium@217.13.228.226)
- # [09:50] * Joins: roven (~chatzilla@d51530390.static.telenet.be)
- # [09:52] * Joins: henrikkok (~henrikkok@81.27.221.193)
- # [09:59] * Joins: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net)
- # [10:08] * Joins: isherman-book (~Adium@173-167-102-230-sfba.hfc.comcastbusiness.net)
- # [10:09] * Quits: necolas (~necolas@5ade1f41.bb.sky.com) (Remote host closed the connection)
- # [10:09] <odinho> Aiai, I think I think pipermail should always force linebreaks if there is none. Always have to monkeypatch it in Dragonfly to be able to read pipermail archives :P
- # [10:11] * Philip` just does ctrl+F11 (fit to width) in Opera
- # [10:11] * Quits: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de) (Ping timeout: 260 seconds)
- # [10:12] * Joins: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de)
- # [10:14] <odinho> Philip`: That should teach me to learn all of my browsers hidden features. :S Thanks! :D That's a super cool feature.
- # [10:16] * Joins: nonge_ (~nonge@p5082B402.dip.t-dialin.net)
- # [10:17] * deane is disappointed that opera has discontinued it's irc chat feature.
- # [10:19] * Quits: snowfox_ben (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Quit: snowfox_ben)
- # [10:19] * Joins: [[zzz]] (~q@node-45i.pool-125-25.dynamic.totbb.net)
- # [10:20] * Quits: nonge (~nonge@p5082B5C7.dip.t-dialin.net) (Ping timeout: 260 seconds)
- # [10:21] * Joins: drublic (~drublic@frbg-4d02955d.pool.mediaWays.net)
- # [10:23] * Quits: [[zz]] (~q@node-9ok.pool-125-25.dynamic.totbb.net) (Ping timeout: 268 seconds)
- # [10:23] <jgraham> Bug annotations now have titles
- # [10:35] * Quits: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 276 seconds)
- # [10:35] * Quits: deane (~dean@203.184.22.238) (Read error: Connection reset by peer)
- # [10:35] * Quits: akaroa (~Dean@203.184.22.238) (Read error: Connection reset by peer)
- # [10:38] * [[zzz]] is now known as [[zz]]
- # [10:51] <Ms2ger> jgraham++
- # [10:51] * Quits: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net) (Quit: tomasf)
- # [10:55] * Joins: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net)
- # [10:58] * Quits: Zauberfisch (~Zauberfis@venus.zauberfisch.at) (Ping timeout: 246 seconds)
- # [11:00] * Joins: deane (~dean@203.184.22.238)
- # [11:02] <zcorpan> nice!
- # [11:02] <zcorpan> Hixie: it's a bit annoying that the bug links move when you hover. can the section link be moved to the bottom of the box, or so?
- # [11:04] * Quits: Ducki (~Ducki@pD9E394E0.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
- # [11:12] <jgraham> Argh, there was a WHATWG email and a gecko bug and maybe a spec bug about the interaction between loading and session history, and now I can't find any of them
- # [11:14] <zcorpan> Hixie: http://whatwg.org/specs/ doesn't list these specs: http://www.w3.org/community/whatwg/
- # [11:15] * Joins: niloy (~niloy@203.196.177.156)
- # [11:17] * Joins: Zauberfisch (~Zauberfis@venus.zauberfisch.at)
- # [11:17] * Quits: Zauberfisch (~Zauberfis@venus.zauberfisch.at) (Read error: Connection reset by peer)
- # [11:18] * Joins: garciawebdev (~garciaweb@190.244.73.31)
- # [11:18] * Quits: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net) (Quit: sedovsek)
- # [11:20] * Joins: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net)
- # [11:21] <zcorpan> Hixie: http://wiki.whatwg.org/wiki/Test_cases might be better if we point people to http://www.w3.org/html/wg/wiki/Testing
- # [11:23] * Quits: isherman-book (~Adium@173-167-102-230-sfba.hfc.comcastbusiness.net) (Quit: Leaving.)
- # [11:23] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Ping timeout: 276 seconds)
- # [11:25] <zcorpan> Hixie: "and in five to ten years you'll finally be able to do it!" - it doesn't necessarily have to take 5+ years
- # [11:25] <jgraham> zcorpan: You could just edit some of these pages you know :)
- # [11:27] * Quits: Lachy (~Lachy@cm-84.215.193.125.getinternet.no) (Quit: Computer has gone to sleep.)
- # [11:30] * Joins: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [11:37] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [11:41] * Joins: graememcc (~chatzilla@host86-147-206-1.range86-147.btcentralplus.com)
- # [11:41] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [11:45] * Quits: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net) (Quit: sedovsek)
- # [11:45] * Joins: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net)
- # [11:53] * Joins: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net)
- # [11:56] * Joins: scor (scor@145.253.125.212)
- # [11:56] * Quits: scor (scor@145.253.125.212) (Changing host)
- # [11:56] * Joins: scor (scor@drupal.org/user/52142/view)
- # [12:04] * Joins: Lachy (~Lachy@office.oslo.opera.com)
- # [12:05] * Joins: richt_ (~richt@pat-tazdevil.opera.com)
- # [12:08] * Quits: richt (~richt@office.oslo.opera.com) (Ping timeout: 265 seconds)
- # [12:19] * Joins: richt (~richt@office.oslo.opera.com)
- # [12:20] * Quits: ehsan (~ehsan@69.165.253.118) (Remote host closed the connection)
- # [12:22] * Quits: graememcc (~chatzilla@host86-147-206-1.range86-147.btcentralplus.com) (Ping timeout: 260 seconds)
- # [12:22] * heycam is now known as heycam|away
- # [12:22] * Quits: richt_ (~richt@pat-tazdevil.opera.com) (Ping timeout: 252 seconds)
- # [12:26] * Joins: roc (~chatzilla@121.98.230.221)
- # [12:28] * Joins: graememcc (~chatzilla@host86-160-244-43.range86-160.btcentralplus.com)
- # [12:29] * Quits: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net) (Quit: sedovsek)
- # [12:32] * Joins: graememcc_ (~chatzilla@host86-151-86-202.range86-151.btcentralplus.com)
- # [12:32] * Quits: eighty4 (~eighty4@unaffiliated/eighty4) (Ping timeout: 240 seconds)
- # [12:33] * Quits: jarib (~jarib@unaffiliated/jarib) (Ping timeout: 276 seconds)
- # [12:34] * Quits: jmb (~jmb@mail.parsifal.org.uk) (Ping timeout: 244 seconds)
- # [12:34] * Quits: graememcc (~chatzilla@host86-160-244-43.range86-160.btcentralplus.com) (Ping timeout: 264 seconds)
- # [12:35] * Joins: jmb (~jmb@mail.parsifal.org.uk)
- # [12:36] * Joins: graememcc (~chatzilla@host86-150-88-50.range86-150.btcentralplus.com)
- # [12:36] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [12:37] * Quits: graememcc_ (~chatzilla@host86-151-86-202.range86-151.btcentralplus.com) (Ping timeout: 272 seconds)
- # [12:38] * Joins: eighty4 (~eighty4@unaffiliated/eighty4)
- # [12:40] * Quits: jarib (~jarib@unaffiliated/jarib) (Read error: Operation timed out)
- # [12:47] * Joins: graememcc_ (~chatzilla@host31-52-60-211.range31-52.btcentralplus.com)
- # [12:47] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [12:48] * Quits: Guest63939 (~jondong@123.126.22.58) (Remote host closed the connection)
- # [12:50] * Quits: graememcc (~chatzilla@host86-150-88-50.range86-150.btcentralplus.com) (Ping timeout: 272 seconds)
- # [12:50] * graememcc_ is now known as graememcc
- # [12:54] * Quits: jarib (~jarib@unaffiliated/jarib) (Ping timeout: 244 seconds)
- # [13:06] * Joins: garciawebdev (~garciaweb@190.244.73.31)
- # [13:07] * Joins: graememcc_ (~chatzilla@host86-163-183-141.range86-163.btcentralplus.com)
- # [13:07] * Quits: Delapouite (~Delapouit@dsl-58-6-19-17.wa.westnet.com.au) (Remote host closed the connection)
- # [13:09] * Quits: graememcc (~chatzilla@host31-52-60-211.range31-52.btcentralplus.com) (Ping timeout: 272 seconds)
- # [13:09] * graememcc_ is now known as graememcc
- # [13:11] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Ping timeout: 276 seconds)
- # [13:14] * Joins: myakura (~myakura@FL1-49-129-49-171.tky.mesh.ad.jp)
- # [13:15] * Quits: Lachy (~Lachy@office.oslo.opera.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [13:16] * Joins: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net)
- # [13:19] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Quit: rniwa)
- # [13:20] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [13:22] <sedovsek> Just read this tweet:
- # [13:22] <sedovsek> https://twitter.com/w3c/status/238652019089485824
- # [13:22] <sedovsek> Twitter, Inc. (@TwitterEng) joined W3C http://dlvr.it/22l89w
- # [13:22] <sedovsek> Are there any Twitter employees that already contribute to W3C?
- # [13:22] <kennyluck> Not I know of.
- # [13:22] <sedovsek> If so, on which standards/drafts?
- # [13:23] <kennyluck> Tracking related stuff maybe?
- # [13:23] <sedovsek> I don't know, but I'm very curious.
- # [13:24] <sedovsek> Perhaps @TabAtkins has more insights?
- # [13:25] <kennyluck> sedovsek, if you know their corporate email domain, you can do a search here: http://www.w3.org/Search/Mail/Public/search?keywords=
- # [13:25] <sedovsek> Thanks.
- # [13:27] * Joins: smaug____ (~chatzilla@173-164-174-193-SFBA.hfc.comcastbusiness.net)
- # [13:30] * Joins: Lachy (~Lachy@pat-tazdevil.opera.com)
- # [13:43] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [13:56] * Joins: carli2 (~carli@xGagB341.WH1.TU-Dresden.De)
- # [13:56] <carli2> hi
- # [13:56] <carli2> I tried to ask a question in #html, but that was forbidden
- # [13:57] <carli2> does this channel has to do with that?
- # [13:57] <jgraham> Have to do with HTML?
- # [13:58] <carli2> I wanted to ask if/how I can load a static JSON document into a html page
- # [13:58] <jgraham> Yes; this is mostly people involved with in the development of specs around the web platform
- # [13:58] <carli2> ah
- # [13:58] * Joins: Areks (~Areks@128-69-102-87.broadband.corbina.ru)
- # [13:59] <jgraham> carli2: If you are generating the while thing server-side you can probably do <script type="text/json">/*json data*/</script>
- # [14:00] <jgraham> If you want to pull in an enternal file, use XHR
- # [14:00] <carli2> jgraham: but how can I access the JSON object then? the script is executed in the global scope
- # [14:01] <jgraham> carli2: You can read the content of the script element and use JSON.parse
- # [14:01] <jgraham> Or whatever the method is called
- # [14:01] <carli2> ah
- # [14:02] * Quits: richt (~richt@office.oslo.opera.com) (Remote host closed the connection)
- # [14:07] * Quits: kennyluck (~kennyluck@119.161.158.96) (Quit: kennyluck)
- # [14:09] <carli2> jgraham: I cannot read the content from the <script> element
- # [14:09] * Quits: smaug____ (~chatzilla@173-164-174-193-SFBA.hfc.comcastbusiness.net) (Ping timeout: 264 seconds)
- # [14:10] <jgraham> Internal or external script?
- # [14:10] <sedovsek> There's also a #html5 chann, which might be slightly more appropriate.
- # [14:10] <jgraham> An internal script should be readable with .textContent
- # [14:10] <sedovsek> an*
- # [14:10] <carli2> jgraham: should work for both, SO and non-SO
- # [14:10] <jgraham> Oh, well if you are trying to read data cross-origin things are harder
- # [14:11] <jgraham> Then you probably want to use CORS + XHR
- # [14:12] * Parts: carli2 (~carli@xGagB341.WH1.TU-Dresden.De)
- # [14:13] * Quits: Kolombiken (~Adium@217.13.228.226) (Quit: Leaving.)
- # [14:18] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [14:27] * Quits: Kolombiken (~Adium@217.13.228.226) (Quit: Leaving.)
- # [14:30] * Joins: Areks|2 (~Areks@128-69-102-87.broadband.corbina.ru)
- # [14:33] * Quits: Areks (~Areks@128-69-102-87.broadband.corbina.ru) (Ping timeout: 260 seconds)
- # [14:35] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [14:42] * Joins: tantek_ (~tantek@67-42-176-212.eugn.qwest.net)
- # [14:44] * Joins: yuuki__ (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [14:44] * Quits: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net) (Quit: sedovsek)
- # [14:44] * Joins: Obvious_MkII (tachikoma@188.226.74.2)
- # [14:44] * Joins: Jedi__ (~Jedi@jedi.org)
- # [14:46] * Joins: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net)
- # [14:47] * Joins: boaz- (~boaz@li326-230.members.linode.com)
- # [14:47] * Joins: DanielFriesen (~dantman@mediawiki/dantman)
- # [14:47] * Quits: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net) (Remote host closed the connection)
- # [14:48] * Joins: necolas (~necolas@8.25.194.28)
- # [14:50] * Joins: crocket2 (~crocket@175.119.94.104)
- # [14:52] * Quits: zcorpan (~zcorpan@c-5eeaaabb-74736162.cust.telenor.se) (*.net *.split)
- # [14:52] * Quits: Obvious (tachikoma@188.226.74.2) (*.net *.split)
- # [14:52] * Quits: tantek (~tantek@67-42-176-212.eugn.qwest.net) (*.net *.split)
- # [14:52] * Quits: yuuki (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp) (*.net *.split)
- # [14:52] * Quits: divya (u1924@gateway/web/irccloud.com/x-hmajezxgcacbqxvw) (*.net *.split)
- # [14:52] * Quits: boaz (~boaz@li326-230.members.linode.com) (*.net *.split)
- # [14:52] * Quits: crocket (~crocket@unaffiliated/crocket) (*.net *.split)
- # [14:52] * Quits: Dantman (~dantman@mediawiki/dantman) (*.net *.split)
- # [14:52] * Quits: ryuone_ (~ryuone@www2406uf.sakura.ne.jp) (*.net *.split)
- # [14:52] * Quits: Jedi_ (~Jedi@jedi.org) (*.net *.split)
- # [14:52] * boaz- is now known as boaz
- # [14:52] * tantek_ is now known as tantek
- # [14:52] * Joins: zcorpan (~zcorpan@94.234.170.187)
- # [14:54] * Joins: garciawebdev (~garciaweb@190.244.73.31)
- # [14:58] * Quits: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net) (Quit: sedovsek)
- # [14:58] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Ping timeout: 246 seconds)
- # [14:59] * Joins: ryuone_ (~ryuone@www2406uf.sakura.ne.jp)
- # [15:00] * Joins: divya (u1924@gateway/web/irccloud.com/x-fonptiazxntuieif)
- # [15:00] * Joins: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net)
- # [15:01] * Joins: ehsan (~ehsan@69.165.253.118)
- # [15:01] * Parts: Kolombiken (~Adium@217.13.228.226)
- # [15:03] * Joins: izhak (~izhak@213.87.240.90)
- # [15:03] * Quits: Scorchin (u1242@gateway/web/irccloud.com/x-azktmmmbdfnkpqmx) (Quit: Connection closed for inactivity)
- # [15:05] * Quits: silverroots (~silverroo@144.187.148.27) (Ping timeout: 264 seconds)
- # [15:07] * Jedi__ is now known as Jedi_
- # [15:09] * Quits: izhak (~izhak@213.87.240.90) (Remote host closed the connection)
- # [15:09] * Quits: yutak (~yutak@2401:fa00:4:1004:baac:6fff:fe99:adfb) (Quit: Ex-Chat)
- # [15:09] * Joins: izhak (~izhak@213.87.240.90)
- # [15:10] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [15:11] * Quits: mpt (~mpt@canonical/mpt) (Read error: Operation timed out)
- # [15:13] * Joins: rwaldron (~rwaldron@209-6-71-27.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
- # [15:21] * Quits: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net) (Quit: sedovsek)
- # [15:22] * Joins: erichynds (~ehynds@pool-173-76-135-79.bstnma.fios.verizon.net)
- # [15:22] * Quits: tomasf (~tomasf@77.72.97.5.c.fiberdirekt.net) (Quit: tomasf)
- # [15:23] * Joins: silverroots (~silverroo@144.187.148.25)
- # [15:25] * Quits: izhak (~izhak@213.87.240.90) (Remote host closed the connection)
- # [15:25] * Joins: izhak (~izhak@213.87.240.90)
- # [15:28] * Joins: mpt (~mpt@faun.canonical.com)
- # [15:28] * Quits: mpt (~mpt@faun.canonical.com) (Changing host)
- # [15:28] * Joins: mpt (~mpt@canonical/mpt)
- # [15:37] * Joins: nessy (~silviapf@124-171-9-172.dyn.iinet.net.au)
- # [15:41] * Quits: ehsan (~ehsan@69.165.253.118) (Remote host closed the connection)
- # [15:42] * Quits: yuuki__ (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp) (Quit: Leaving...)
- # [15:44] * Joins: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se)
- # [15:45] * Quits: izhak (~izhak@213.87.240.90) (Remote host closed the connection)
- # [15:45] * Joins: izhak (~izhak@213.87.240.90)
- # [15:47] * Quits: Areks|2 (~Areks@128-69-102-87.broadband.corbina.ru) (Ping timeout: 245 seconds)
- # [15:47] * Joins: Druide_ (~Druid@p5B1368FB.dip.t-dialin.net)
- # [15:48] * Joins: snowfox_ben (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
- # [15:53] * Joins: tomasf_ (~tomasf@static-88.131.62.36.addr.tdcsong.se)
- # [15:53] * Quits: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se) (Read error: Connection reset by peer)
- # [15:53] * tomasf_ is now known as tomasf
- # [15:55] * Joins: MacTed (~Thud@63.119.36.36)
- # [16:01] * Joins: Areks|2 (~Areks@128-69-102-87.broadband.corbina.ru)
- # [16:05] * Quits: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se) (Ping timeout: 268 seconds)
- # [16:07] * Quits: nessy (~silviapf@124-171-9-172.dyn.iinet.net.au) (Quit: Leaving.)
- # [16:12] * Quits: roven (~chatzilla@d51530390.static.telenet.be) (Quit: ChatZilla 0.9.88.2 [Firefox 14.0.1/20120713134347])
- # [16:13] * Quits: Kolombiken (~Adium@217.13.228.226) (Quit: Leaving.)
- # [16:13] * Quits: mpt (~mpt@canonical/mpt) (Quit: Ex-Chat)
- # [16:15] * Quits: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de) (Ping timeout: 264 seconds)
- # [16:16] * Quits: silverroots (~silverroo@144.187.148.25) (Remote host closed the connection)
- # [16:16] * Quits: izhak (~izhak@213.87.240.90) (Ping timeout: 276 seconds)
- # [16:22] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [16:25] * Quits: Martin_L (~Martin_L@194.18.12.26) (Ping timeout: 260 seconds)
- # [16:27] * Joins: ehsan (~ehsan@66.207.208.98)
- # [16:28] * Joins: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net)
- # [16:29] * Joins: maikmerten (~merten@vpn17018.itmc.tu-dortmund.de)
- # [16:30] * Quits: griswold (~quassel@vpn.space150.com) (Ping timeout: 245 seconds)
- # [16:33] * Quits: Kolombiken (~Adium@217.13.228.226) (Quit: Leaving.)
- # [16:37] * Quits: cheron (~cheron@unaffiliated/cheron) (Quit: Leaving.)
- # [16:39] * abstractj|away is now known as abstractj
- # [16:41] * Joins: smaug____ (~chatzilla@173-164-174-193-SFBA.hfc.comcastbusiness.net)
- # [16:43] * Quits: zcorpan (~zcorpan@94.234.170.187) (Remote host closed the connection)
- # [16:46] * Joins: mpt (~mpt@faun.canonical.com)
- # [16:46] * Quits: mpt (~mpt@faun.canonical.com) (Changing host)
- # [16:46] * Joins: mpt (~mpt@canonical/mpt)
- # [16:51] * Joins: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se)
- # [16:55] * Quits: smaug____ (~chatzilla@173-164-174-193-SFBA.hfc.comcastbusiness.net) (Ping timeout: 240 seconds)
- # [16:55] * Quits: snowfox_ben (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Quit: snowfox_ben)
- # [17:00] * Quits: roc (~chatzilla@121.98.230.221) (Ping timeout: 276 seconds)
- # [17:01] * Joins: snowfox_ben (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
- # [17:04] * Joins: griswold (~quassel@vpn.space150.com)
- # [17:07] * Quits: maikmerten (~merten@vpn17018.itmc.tu-dortmund.de) (Ping timeout: 268 seconds)
- # [17:11] * Quits: markkes (~markkes@62.207.90.201) (Read error: Connection reset by peer)
- # [17:14] * Joins: smaug____ (~chatzilla@173-164-174-193-SFBA.hfc.comcastbusiness.net)
- # [17:15] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [17:16] * Joins: garciawebdev (~garciaweb@190.244.73.31)
- # [17:22] * Joins: sarro (~sarro@i5E865184.versanet.de)
- # [17:23] * Parts: Kolombiken (~Adium@217.13.228.226)
- # [17:25] <jgraham> So, is there an event I can get in the top level browsing context when I navigate the joint session history of a browsing context with nested browsing contexts in such a way that it is one of the child browsing contexts that chnages its document
- # [17:25] <jgraham> ?
- # [17:25] * Quits: erichynds (~ehynds@pool-173-76-135-79.bstnma.fios.verizon.net)
- # [17:25] * Joins: danbri (~danbri@78-2-140-73.adsl.net.t-com.hr)
- # [17:25] <jgraham> i.e. I have a parent document A with an iframe in itially containing B. I navigate the iframe to C and then do history.go(-1)
- # [17:26] <jgraham> I want an event that will fire when I am back at B in the iframe
- # [17:26] * Quits: Lachy (~Lachy@pat-tazdevil.opera.com) (Quit: Computer has gone to sleep.)
- # [17:28] * Joins: thisgeek (~chris@ool-45757d25.dyn.optonline.net)
- # [17:29] * Quits: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net) (Quit: sedovsek)
- # [17:30] * Joins: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net)
- # [17:41] * Quits: smaug____ (~chatzilla@173-164-174-193-SFBA.hfc.comcastbusiness.net) (Ping timeout: 240 seconds)
- # [17:48] <Hixie> jgraham: i got method not allowed?
- # [17:52] <jgraham> Hixie: I forgot to restart the server. Try again?
- # [17:52] * Quits: tantek (~tantek@67-42-176-212.eugn.qwest.net) (Quit: tantek)
- # [17:53] * Joins: rworth (~rworth@pool-72-66-13-241.washdc.fios.verizon.net)
- # [17:54] * Joins: portenkirchner (~portenkir@p4FC5423C.dip.t-dialin.net)
- # [17:57] * Quits: henrikkok (~henrikkok@81.27.221.193) (Quit: Leaving.)
- # [17:57] * Quits: portenkirchner (~portenkir@p4FC5423C.dip.t-dialin.net) (Client Quit)
- # [17:58] <Hixie> jgraham: awesome
- # [17:58] <Hixie> ok i put it at the bottom of file-bug.cgi
- # [17:58] <Hixie> hopefully it doesn't break anything :-)
- # [17:59] <Hixie> this is awesome stuff
- # [17:59] <Hixie> really glad we did this
- # [17:59] <jgraham> Me too :)
- # [17:59] <Hixie> i also like my new styling for the boxes :-)
- # [18:00] <jgraham> Indeed, but see zcorpan's comment; having the bug link move on hover is annoying
- # [18:00] * Quits: linclark (clark@145.253.125.212) (Quit: linclark)
- # [18:00] <Hixie> moved it already
- # [18:01] * Joins: linclark (clark@145.253.125.212)
- # [18:01] <jgraham> Oh, I didn't reload
- # [18:01] <jgraham> It takes a while ;)
- # [18:01] <Hixie> ok, afk for a bit
- # [18:05] * Joins: tantek (~tantek@66-87-7-3.pools.spcsdns.net)
- # [18:05] * Quits: linclark (clark@145.253.125.212) (Client Quit)
- # [18:06] <jgraham> Hixie: New style is much better, thanks
- # [18:06] * Quits: Areks|2 (~Areks@128-69-102-87.broadband.corbina.ru) (Ping timeout: 244 seconds)
- # [18:07] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
- # [18:07] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Client Quit)
- # [18:10] * Joins: Lachy (~Lachy@pat-tazdevil.opera.com)
- # [18:15] * Quits: necolas (~necolas@8.25.194.28) (Remote host closed the connection)
- # [18:15] * Quits: Lachy (~Lachy@pat-tazdevil.opera.com) (Ping timeout: 246 seconds)
- # [18:15] * Joins: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net)
- # [18:17] * Joins: Lachy (~Lachy@office.oslo.opera.com)
- # [18:17] * Joins: smaug____ (~chatzilla@2620:101:8003:200:89f5:df06:3b20:5062)
- # [18:18] * Joins: tantek_ (~tantek@66-87-7-3.pools.spcsdns.net)
- # [18:18] * Quits: tantek (~tantek@66-87-7-3.pools.spcsdns.net) (Read error: Connection reset by peer)
- # [18:18] * tantek_ is now known as tantek
- # [18:19] * Joins: ap (~ap@2620:149:4:1b01:7dc4:e38e:213b:92c3)
- # [18:20] * Quits: necolas (~necolas@ix-2-0-0-155.core4.LDN-London.as6453.net) (Ping timeout: 260 seconds)
- # [18:21] * Quits: tantek (~tantek@66-87-7-3.pools.spcsdns.net) (Client Quit)
- # [18:21] * Joins: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [18:21] * Quits: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net) (Quit: sedovsek)
- # [18:22] * abstractj is now known as abstractj|away
- # [18:22] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [18:23] * Quits: griswold (~quassel@vpn.space150.com) (Ping timeout: 252 seconds)
- # [18:23] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [18:25] * Quits: Druide_ (~Druid@p5B1368FB.dip.t-dialin.net) (Read error: Connection reset by peer)
- # [18:29] * Joins: griswold (~quassel@blackhole.space150.com)
- # [18:30] * Joins: izhak (~izhak@188.244.179.228)
- # [18:36] * jonlee|afk is now known as jonlee
- # [18:37] * Quits: nonge_ (~nonge@p5082B402.dip.t-dialin.net) (Quit: Verlassend)
- # [18:39] * Quits: niloy (~niloy@203.196.177.156) (Ping timeout: 252 seconds)
- # [18:39] * Joins: BennyLava` (~colin@53518387.cm-6-2c.dynamic.ziggo.nl)
- # [18:39] * Quits: BennyLava` (~colin@53518387.cm-6-2c.dynamic.ziggo.nl) (Changing host)
- # [18:39] * Joins: BennyLava` (~colin@pdpc/supporter/professional/riven)
- # [18:39] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [18:41] * Quits: ajpiano (~ajpiano@li98-57.members.linode.com) (Quit: ZNC - http://znc.sourceforge.net)
- # [18:42] * Quits: BennyLava (~colin@pdpc/supporter/professional/riven) (Ping timeout: 260 seconds)
- # [18:47] * Joins: MikeSmith_ (~MikeSmith@s1106008.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [18:49] * Joins: linclark (clark@145.253.125.212)
- # [18:49] * Quits: MikeSmith (~MikeSmith@s1106008.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 245 seconds)
- # [18:49] * MikeSmith_ is now known as MikeSmith
- # [18:52] * Joins: jsbell (jsbell@nat/google/x-inkfsambyttrvpfd)
- # [18:55] * Joins: Areks|2 (~Areks@128-69-102-87.broadband.corbina.ru)
- # [18:56] * Quits: Lachy (~Lachy@office.oslo.opera.com) (Quit: Computer has gone to sleep.)
- # [18:58] * Quits: scor (scor@drupal.org/user/52142/view) (Quit: scor)
- # [18:58] * Quits: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se) (Quit: tomasf)
- # [18:58] * Joins: Druide_ (~Druid@p5B1368FB.dip.t-dialin.net)
- # [18:59] * Joins: stefsull (~stefsull@ip68-104-139-203.ph.ph.cox.net)
- # [19:00] * Joins: ajpiano (~ajpiano@li98-57.members.linode.com)
- # [19:00] * Quits: ajpiano (~ajpiano@li98-57.members.linode.com) (Excess Flood)
- # [19:03] <TabAtkins> All right, time to lose a few hours of productivity and get this new workstation set up.
- # [19:03] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # [19:03] * Joins: ajpiano (~ajpiano@li98-57.members.linode.com)
- # [19:05] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 256 seconds)
- # [19:05] * Quits: ^esc (~esc_ape@77.116.247.228.wireless.dyn.drei.com) (Ping timeout: 265 seconds)
- # [19:08] * Joins: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no)
- # [19:08] * Joins: gwicke (~gabriel@wikimedia/gwicke)
- # [19:12] * Joins: mattgifford (~mattgiffo@70.102.199.158)
- # [19:12] * jernoble is now known as jernoble|afk
- # [19:12] * jernoble|afk is now known as jernoble
- # [19:13] * Quits: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no) (Ping timeout: 272 seconds)
- # [19:14] * jonlee is now known as jonlee|afk
- # [19:18] * Joins: miketaylr (~miketaylr@173-96-177-72.pools.spcsdns.net)
- # [19:19] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Quit: sedovsek)
- # [19:19] * Quits: smaug____ (~chatzilla@2620:101:8003:200:89f5:df06:3b20:5062) (Ping timeout: 246 seconds)
- # [19:20] * jonlee|afk is now known as jonlee
- # [19:26] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [19:31] * Joins: chriseppstein (~chrisepps@209.119.65.162)
- # [19:32] * Quits: gwicke (~gabriel@wikimedia/gwicke) (Read error: Connection reset by peer)
- # [19:33] * Joins: gwicke (~gabriel@wikimedia/gwicke)
- # [19:33] * Quits: gwicke (~gabriel@wikimedia/gwicke) (Write error: Broken pipe)
- # [19:33] * Joins: gwicke (~gabriel@wikimedia/gwicke)
- # [19:39] * Quits: ajpiano (~ajpiano@li98-57.members.linode.com) (Excess Flood)
- # [19:39] * Joins: ajpiano_ (~ajpiano@li98-57.members.linode.com)
- # [19:39] * ajpiano_ is now known as ajpiano
- # [19:42] * Joins: smaug____ (~chatzilla@nat/mozilla/x-nbuylengymipdida)
- # [19:42] * abstractj|away is now known as abstractj
- # [19:43] * Joins: tomasf (~tom@c-41d8e555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [19:46] <dglazkov> good morning, Whatwg!
- # [19:46] * Joins: dgathright_ (~dgathrigh@nat/yahoo/x-kxmtppvfwfpjrusc)
- # [19:46] <dglazkov> TabAtkins: vroom, vroom
- # [19:48] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [19:48] * dgathright_ is now known as dgathright
- # [19:53] * Quits: gavinc (~gavin@50.0.77.3) (Quit: Konversation terminated!)
- # [20:04] * Quits: linclark (clark@145.253.125.212) (Quit: linclark)
- # [20:05] * Quits: miketaylr (~miketaylr@173-96-177-72.pools.spcsdns.net) (Quit: Leaving...)
- # [20:09] * Joins: BennyLava (~colin@53518387.cm-6-2c.dynamic.ziggo.nl)
- # [20:09] * Quits: BennyLava (~colin@53518387.cm-6-2c.dynamic.ziggo.nl) (Changing host)
- # [20:09] * Joins: BennyLava (~colin@pdpc/supporter/professional/riven)
- # [20:12] * Quits: BennyLava` (~colin@pdpc/supporter/professional/riven) (Ping timeout: 252 seconds)
- # [20:16] * Joins: graememcc_ (~chatzilla@host86-148-30-151.range86-148.btcentralplus.com)
- # [20:18] * Quits: graememcc (~chatzilla@host86-163-183-141.range86-163.btcentralplus.com) (Ping timeout: 260 seconds)
- # [20:19] * abstractj is now known as abstractj|away
- # [20:20] * Joins: graememcc (~chatzilla@host86-168-3-122.range86-168.btcentralplus.com)
- # [20:20] * Quits: izhak (~izhak@188.244.179.228) (Ping timeout: 246 seconds)
- # [20:21] * Joins: isherman-book (~Adium@173-167-102-230-sfba.hfc.comcastbusiness.net)
- # [20:21] * Joins: linclark (~clark@195.50.186.166)
- # [20:22] * Joins: zcorpan (~zcorpan@c-5eeaaa21-74736162.cust.telenor.se)
- # [20:22] * Quits: graememcc_ (~chatzilla@host86-148-30-151.range86-148.btcentralplus.com) (Ping timeout: 272 seconds)
- # [20:24] * Quits: linclark (~clark@195.50.186.166) (Client Quit)
- # [20:25] * abstractj|away is now known as abstractj
- # [20:29] * Joins: graememcc_ (~chatzilla@host31-53-9-156.range31-53.btcentralplus.com)
- # [20:29] * Quits: carlos_antonio (~benway@unaffiliated/disusered) (Quit: leaving)
- # [20:29] * Quits: zcorpan (~zcorpan@c-5eeaaa21-74736162.cust.telenor.se) (Read error: No route to host)
- # [20:30] * Joins: zcorpan (~zcorpan@94.234.170.33)
- # [20:31] * Quits: danbri (~danbri@78-2-140-73.adsl.net.t-com.hr) (Remote host closed the connection)
- # [20:31] * Quits: graememcc (~chatzilla@host86-168-3-122.range86-168.btcentralplus.com) (Ping timeout: 272 seconds)
- # [20:31] * graememcc_ is now known as graememcc
- # [20:31] * Quits: crankharder (~crankhard@ip68-98-153-131.dc.dc.cox.net) (Ping timeout: 265 seconds)
- # [20:32] * Joins: danbri (~danbri@78-2-140-73.adsl.net.t-com.hr)
- # [20:35] * Joins: MikeSmith_ (~MikeSmith@s1106063.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [20:36] * Quits: danbri (~danbri@78-2-140-73.adsl.net.t-com.hr) (Ping timeout: 244 seconds)
- # [20:38] * Quits: MikeSmith (~MikeSmith@s1106008.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 245 seconds)
- # [20:38] * MikeSmith_ is now known as MikeSmith
- # [20:38] * Joins: saba (~foo@c-076ce253.531-1-64736c21.cust.bredbandsbolaget.se)
- # [20:38] * Quits: saba (~foo@c-076ce253.531-1-64736c21.cust.bredbandsbolaget.se) (Changing host)
- # [20:38] * Joins: saba (~foo@unaffiliated/saba)
- # [20:40] * Joins: crankharder (~crankhard@ip68-98-153-131.dc.dc.cox.net)
- # [20:42] * Joins: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1)
- # [20:43] * Quits: zcorpan (~zcorpan@94.234.170.33) (Remote host closed the connection)
- # [20:48] * Joins: necolas (~necolas@5ade1f41.bb.sky.com)
- # [20:49] * Quits: necolas (~necolas@5ade1f41.bb.sky.com) (Remote host closed the connection)
- # [20:50] * Joins: necolas (~necolas@8.25.194.28)
- # [20:54] * Quits: myakura (~myakura@FL1-49-129-49-171.tky.mesh.ad.jp) (Remote host closed the connection)
- # [20:54] * Quits: smaug____ (~chatzilla@nat/mozilla/x-nbuylengymipdida) (Remote host closed the connection)
- # [20:55] * Joins: dbaron (~dbaron@nat/mozilla/x-rcrpgeawljzgrlmq)
- # [20:56] * jonlee is now known as jonlee|afk
- # [20:57] * Joins: smaug____ (~chatzilla@2620:101:8003:200:89f5:df06:3b20:5062)
- # [20:59] * jernoble is now known as jernoble|afk
- # [20:59] * jernoble|afk is now known as jernoble
- # [21:00] * Quits: thisgeek (~chris@ool-45757d25.dyn.optonline.net) (Quit: thisgeek)
- # [21:10] * Joins: graememcc_ (~chatzilla@host86-148-31-233.range86-148.btcentralplus.com)
- # [21:11] * Quits: graememcc (~chatzilla@host31-53-9-156.range31-53.btcentralplus.com) (Ping timeout: 272 seconds)
- # [21:11] * graememcc_ is now known as graememcc
- # [21:17] * Joins: thisgeek (~chris@ool-45757782.dyn.optonline.net)
- # [21:17] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [21:19] * ojan_away is now known as ojan
- # [21:20] <Hixie> is there anywhere i can make a note of some tests that should be added to the html test suite?
- # [21:21] <Hixie> (i want to note that we need to test that legacycaller isn't supported for all interfaces that have a getter)
- # [21:21] * Quits: gwicke (~gabriel@wikimedia/gwicke) (Quit: Bye!)
- # [21:21] * Joins: gwicke (~gabriel@wikimedia/gwicke)
- # [21:22] * Joins: jamesr_ (jamesr@nat/google/x-trpqdtzeyvtnzqij)
- # [21:23] <Ms2ger> Hixie, you can file a bug in the HTMLWG/testsuite product
- # [21:23] <Ms2ger> I might even see it there
- # [21:23] <Hixie> ah, cool, that's for actual bugs, not just infrastructure?
- # [21:24] <Ms2ger> Yep
- # [21:25] <Hixie> cool
- # [21:25] <Hixie> https://www.w3.org/Bugs/Public/show_bug.cgi?id=18681
- # [21:25] <Hixie> that clear enough?
- # [21:26] <Ms2ger> Clear enough for me
- # [21:26] <Hixie> oooooh, would it help if i added something to the live dom viewer that automatically filed a bug in that component with the current contents?
- # [21:26] <Ms2ger> Hmm, would be nice
- # [21:27] <Ms2ger> Now all we need is a script to automatically translate it to an automated test :)
- # [21:27] * Quits: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1) (Ping timeout: 260 seconds)
- # [21:28] * Quits: gwicke (~gabriel@wikimedia/gwicke) (Read error: Connection reset by peer)
- # [21:28] * Joins: gwicke_ (~gabriel@216.38.130.162)
- # [21:30] * Quits: rworth (~rworth@pool-72-66-13-241.washdc.fios.verizon.net) (Quit: Leaving...)
- # [21:31] * gwicke_ is now known as gwicke
- # [21:32] * Joins: scor (~scor@195.50.186.166)
- # [21:32] * Quits: scor (~scor@195.50.186.166) (Changing host)
- # [21:32] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [21:32] <Hixie> Ms2ger: default assignee, or should i assign to someone in particular?
- # [21:32] <Ms2ger> Default is fine
- # [21:33] <Hixie> anyone i should put in default cc?
- # [21:35] * Quits: espadrine (~thaddee_t@63.235.13.3) (Ping timeout: 246 seconds)
- # [21:36] <Ms2ger> Feel free to put me, but I don't think it's going to make me do anything sooner :)
- # [21:36] <Hixie> entirely up to you
- # [21:37] <Ms2ger> Don't, then, I get heaps of bugmail already :)
- # [21:37] <Hixie> i'd put myself in to monitor for abuse, but i send all w3c bugmail to trash :-)
- # [21:40] <jamesr> s/bugmail //
- # [21:41] <Hixie> i still monitor public-html in case anyone raises a bug i have to fix
- # [21:41] <Hixie> hasn't happened in recent years, but we never know...
- # [21:44] * Quits: jamesr_ (jamesr@nat/google/x-trpqdtzeyvtnzqij) (Quit: jamesr_)
- # [21:50] * Quits: Ms2ger (~Ms2ger@91.181.15.199) (Quit: nn)
- # [21:50] * Joins: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1)
- # [21:51] * ojan is now known as ojan_lunch
- # [21:52] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: dflk;adfslkj;alsiekfj;laiskdf)
- # [21:53] * Joins: jamesr_ (jamesr@nat/google/x-qeyfmnysvlvbgnfw)
- # [21:59] * Quits: necolas (~necolas@8.25.194.28) (Read error: Connection reset by peer)
- # [22:00] * Joins: necolas (~necolas@8.25.194.28)
- # [22:07] * Joins: TabAtkins_ (tabatkins@nat/google/x-hzsmgqchqdvgnvxc)
- # [22:07] <TabAtkins_> Yesssssss. Now to banish my old self.
- # [22:08] * Quits: TabAtkins (tabatkins@nat/google/x-peoebedqzrqioouz) (Disconnected by services)
- # [22:08] * TabAtkins_ is now known as TabAtkins
- # [22:09] * Quits: blooberry (~brian@134.134.139.70) (Quit: Leaving)
- # [22:12] * Joins: espadrine (~thaddee_t@nat/mozilla/x-oqsczyvidylozmay)
- # [22:13] * Joins: gavinc (~gavin@50.0.77.3)
- # [22:13] * Joins: rniwa (rniwa@nat/google/x-qecsgqzcckjputqz)
- # [22:13] * Joins: akaroa (~Dean@203.184.22.238)
- # [22:16] * Joins: graememcc_ (~chatzilla@host31-52-60-60.range31-52.btcentralplus.com)
- # [22:16] * Joins: rubys (~rubys@cpe-098-027-059-167.nc.res.rr.com)
- # [22:17] * Quits: graememcc (~chatzilla@host86-148-31-233.range86-148.btcentralplus.com) (Ping timeout: 245 seconds)
- # [22:17] * graememcc_ is now known as graememcc
- # [22:17] <rubys> hixie: re: "hober: is there any documentation anywhere that tracks which revisions the w3c spec has adopted and which it hasn't? "
- # [22:18] <rubys> this is a small part of that (which bugs are still open that have clones):
- # [22:18] <rubys> http://intertwingly.net/tmp/clones.html
- # [22:18] <rubys> if I can build reports that are helpful, let me know
- # [22:18] * Quits: espadrine (~thaddee_t@nat/mozilla/x-oqsczyvidylozmay) (Ping timeout: 244 seconds)
- # [22:25] * Quits: jamesr_ (jamesr@nat/google/x-qeyfmnysvlvbgnfw) (Quit: jamesr_)
- # [22:29] * Quits: sarro (~sarro@i5E865184.versanet.de)
- # [22:33] * Joins: jamesr_ (jamesr@nat/google/x-anypmyufmxlrxfja)
- # [22:40] * Quits: jamesr_ (jamesr@nat/google/x-anypmyufmxlrxfja) (Quit: jamesr_)
- # [22:41] * Joins: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net)
- # [22:43] * Quits: isherman-book (~Adium@173-167-102-230-sfba.hfc.comcastbusiness.net) (Quit: Leaving.)
- # [22:44] * Joins: htmlr (~htmlr@124-149-175-91.dyn.iinet.net.au)
- # [22:45] * Quits: victrola` (~decadance@69.73.175.77) (Ping timeout: 245 seconds)
- # [22:45] * Quits: htmlr (~htmlr@124-149-175-91.dyn.iinet.net.au) (Client Quit)
- # [22:46] * Joins: Lachy (~Lachy@cm-84.215.193.125.getinternet.no)
- # [22:47] * Joins: victrola` (~decadance@69.73.175.77)
- # [22:49] * ojan_lunch is now known as ojan_away
- # [22:50] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [22:53] * Joins: MikeSmith_ (~MikeSmith@s1106141.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [22:53] * Parts: rubys (~rubys@cpe-098-027-059-167.nc.res.rr.com)
- # [22:54] * Quits: MikeSmith (~MikeSmith@s1106063.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 256 seconds)
- # [22:54] * MikeSmith_ is now known as MikeSmith
- # [22:56] * Quits: Dashiva (Dashiva@wikia/Dashiva)
- # [23:02] * Joins: isherman-book (Adium@nat/google/x-ncwffligfezjkajq)
- # [23:02] * Joins: MikeSmith_ (~MikeSmith@s1106141.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [23:02] * jonlee|afk is now known as jonlee
- # [23:03] <hober> Hixie: you can follow along at https://github.com/w3c/html/commits/master/
- # [23:03] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [23:03] * Quits: MikeSmith (~MikeSmith@s1106141.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 260 seconds)
- # [23:03] * MikeSmith_ is now known as MikeSmith
- # [23:03] <hober> (with regard to which revisions from the whatwg spec have been applied to the w3c spec)
- # [23:04] * Quits: LBP (~Mirc@pD9EB1A2E.dip0.t-ipconnect.de) (Quit: Bye, bye! See you on http://leanbackplayer.com)
- # [23:04] * Joins: Dashiva (Dashiva@84-72-44-85.dclient.hispeed.ch)
- # [23:04] * Quits: Dashiva (Dashiva@84-72-44-85.dclient.hispeed.ch) (Changing host)
- # [23:04] * Joins: Dashiva (Dashiva@wikia/Dashiva)
- # [23:05] * Joins: LBP (~Mirc@pD9EB1A2E.dip0.t-ipconnect.de)
- # [23:05] * Quits: LBP (~Mirc@pD9EB1A2E.dip0.t-ipconnect.de) (Client Quit)
- # [23:05] * Joins: richbradshaw (~richbrads@cpc5-newt32-2-0-cust37.newt.cable.virginmedia.com)
- # [23:05] * Quits: richbradshaw (~richbrads@cpc5-newt32-2-0-cust37.newt.cable.virginmedia.com) (Client Quit)
- # [23:07] * Joins: danbri (~danbri@78-3-86-228.adsl.net.t-com.hr)
- # [23:08] * Quits: snowfox_ben (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Quit: snowfox_ben)
- # [23:09] * Joins: roc_ (~chatzilla@121.98.230.221)
- # [23:11] * Quits: danbri (~danbri@78-3-86-228.adsl.net.t-com.hr) (Remote host closed the connection)
- # [23:12] * Joins: danbri (~danbri@78-3-86-228.adsl.net.t-com.hr)
- # [23:15] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [23:16] * Joins: othermaciej (~mjs@17.245.108.176)
- # [23:17] * Quits: MacTed (~Thud@63.119.36.36)
- # [23:17] * Quits: danbri (~danbri@78-3-86-228.adsl.net.t-com.hr) (Ping timeout: 244 seconds)
- # [23:19] * Quits: thisgeek (~chris@ool-45757782.dyn.optonline.net) (Quit: thisgeek)
- # [23:24] * Quits: othermaciej (~mjs@17.245.108.176) (Quit: othermaciej)
- # [23:33] <Hixie> hober: that tells me which have been applied, but not which have not :-)
- # [23:35] <hober> true
- # [23:37] <GPHemsley> Hixie: Any idea why the JSURL development stalled?
- # [23:37] * Quits: TabAtkins (tabatkins@nat/google/x-hzsmgqchqdvgnvxc) (Read error: Connection reset by peer)
- # [23:37] <Hixie> what is JSURL?
- # [23:38] <GPHemsley> The JavaScript URL standard
- # [23:39] * Quits: rwaldron (~rwaldron@209-6-71-27.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: Leaving...)
- # [23:39] * Quits: isherman-book (Adium@nat/google/x-ncwffligfezjkajq) (Quit: Leaving.)
- # [23:41] * Quits: mattgifford (~mattgiffo@70.102.199.158) (Remote host closed the connection)
- # [23:41] <GPHemsley> (mentioned in the recent r7265)
- # [23:41] * Joins: mattgifford (~mattgiffo@70.102.199.158)
- # [23:42] * Quits: mattgifford (~mattgiffo@70.102.199.158) (Read error: Connection reset by peer)
- # [23:42] * Joins: mattgifford (~mattgiffo@70.102.199.158)
- # [23:43] <Hixie> oh the javascript: spec?
- # [23:43] <Hixie> no iea
- # [23:43] <Hixie> idea
- # [23:47] * Quits: mattgifford (~mattgiffo@70.102.199.158) (Ping timeout: 246 seconds)
- # [23:47] * Quits: roc_ (~chatzilla@121.98.230.221) (Read error: No route to host)
- # [23:48] * Joins: roc_ (~chatzilla@121.98.230.221)
- # [23:50] * Quits: garciawebdev (~garciaweb@190.244.73.31) (Remote host closed the connection)
- # [23:50] * jonlee is now known as jonlee|afk
- # [23:52] * Quits: ap (~ap@2620:149:4:1b01:7dc4:e38e:213b:92c3) (Quit: ap)
- # [23:53] * Joins: ap (~ap@17.245.105.155)
- # [23:53] * jonlee|afk is now known as jonlee
- # Session Close: Sat Aug 25 00:00:01 2012
The end :)