Options:
- # Session Start: Thu Nov 07 00:00:00 2013
- # Session Ident: #whatwg
- # [00:01] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [00:01] * Quits: KevinMarks (~yaaic@2607:fb90:2208:7960:ff20:ca6:c326:bc9) (Ping timeout: 245 seconds)
- # [00:01] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [00:02] * Quits: mven (~mven@169.241.49.196) (Remote host closed the connection)
- # [00:03] * Joins: mven (~mven@169.241.49.196)
- # [00:03] * heycam|away is now known as heycam
- # [00:03] <Hixie> heycam|away: so, one oddity is we probably want to handle callbacks that are callbacks into scripts differently than callbacks that are into native methods
- # [00:04] <heycam> Hixie, differently in what way?
- # [00:05] * Joins: Karate (~Karate@190.189.230.229)
- # [00:05] <Hixie> well, if you call setTimeout(window.open) from a script that's imported from a different origin, and for some reason there's some exception raised, you want the exception to have muted errors. But if you call setTimeout(foo) where foo is a script in the page's origin, even if the calling script was fetched from another origin, you want the exceptions to not be muted
- # [00:06] <Hixie> (all the script origins here are the same, it's just a matter of whether the script comes from another origin or not in the <script src="">)
- # [00:06] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Ping timeout: 245 seconds)
- # [00:06] * Quits: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com) (Remote host closed the connection)
- # [00:06] * Quits: jernoble (~jernoble@17.212.152.13) (Remote host closed the connection)
- # [00:07] <Hixie> also, if you're calling an actual script as your callback, you likely want it to be a new entry script, but if it's a call to a native method, i guess we dont' want a new entry script?
- # [00:07] * Quits: mven (~mven@169.241.49.196) (Read error: Connection reset by peer)
- # [00:07] * Joins: mven (~mven@169.241.49.196)
- # [00:07] <heycam> the former is something that comes up with Web Components I guess?
- # [00:08] <heycam> for the latter, I'm not sure what a new script entry entails
- # [00:08] * Quits: cheron (~cheron@unaffiliated/cheron) (Ping timeout: 268 seconds)
- # [00:08] <Hixie> the former comes up in regular pages
- # [00:08] <Hixie> <script src="foo.js"> exceptions are fine, <script src="http://anothersite.example.com/foo.js"> the exceptions are muted (don't give line number information)
- # [00:09] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [00:09] * Quits: Smylers (~smylers@host86-128-219-55.range86-128.btcentralplus.com) (Ping timeout: 246 seconds)
- # [00:09] <Hixie> for the latter: the stack of incumbent scripts is used to determine two things, the "entry script" and the "incumbent script". The "entry script" is the "bottom" of the stack, and incumbent the top. The "entry script" is used sometimes to e.g. determine what the base URL should be, other times we use the incumbent scripts (especially for security checks)
- # [00:10] <heycam> I see
- # [00:11] * Quits: Ms2ger (~Ms2ger@193.190.253.149) (Quit: nn)
- # [00:11] * Joins: gerente (~gerente@bl15-85-40.dsl.telepac.pt)
- # [00:13] <heycam> anyway, I'll await your comment on the bug
- # [00:13] * Joins: jdaggett (~jdaggett@103.5.142.9)
- # [00:15] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [00:16] <Hixie> heycam: well, i'm not sure what to suggest, because i can't work out how you can tell if the callback "is a script" or not
- # [00:16] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [00:16] * Quits: rxgx (~rxgx@wsip-98-174-206-99.ph.ph.cox.net) (Ping timeout: 248 seconds)
- # [00:17] * Quits: encryptd_fractal (~mfrawley@66-188-99-174.static.ftbg.wi.charter.com) (Quit: Leaving.)
- # [00:17] * Quits: jochen__ (jochen@nat/google/x-ufjsiicbnukjmxfp) (Read error: Operation timed out)
- # [00:17] <heycam> Hixie, I could inspect it at the time the JS Function value gets converted to the IDL type
- # [00:17] * Joins: jochen__ (jochen@nat/google/x-qxtinbjgjheivltu)
- # [00:17] <heycam> and associate that information with the IDL callback object
- # [00:18] <Hixie> heycam: how would we phrase it? i don't even know how to describe it
- # [00:18] <Hixie> heycam: JS doesn't have this concept of something being a script, per se
- # [00:18] <heycam> Hixie, well I've already got this term "initial objects"
- # [00:18] <heycam> which represents all of the objects that exist due to IDL things
- # [00:19] <heycam> I could just check whether it is an initial object
- # [00:19] <heycam> means the same as "if this is a Function object that corresponds to an IDL operation, IDL attribute getter, ......."
- # [00:20] <Hixie> http://www.hixie.ch/tests/adhoc/html/script/callbacks/001.html
- # [00:20] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Read error: Operation timed out)
- # [00:22] * Quits: marcosc (~marcosc@bl11-209-87.dsl.telepac.pt) (Remote host closed the connection)
- # [00:24] <heycam> Hixie, am I reading that right and the testParentTimeout case is weird?
- # [00:24] <Hixie> reload
- # [00:24] <Hixie> i edited it after posting the url
- # [00:25] <Hixie> the first two buttons demonstrate the simple case of "entry script" being a thing
- # [00:26] <heycam> one of your button captions needs updating
- # [00:26] <Hixie> reload
- # [00:26] * Quits: jochen__ (jochen@nat/google/x-qxtinbjgjheivltu) (Ping timeout: 272 seconds)
- # [00:26] <Hixie> the next two buttons show that it's using the settings object of the setTimeout method, when you start from setTimeout
- # [00:26] <Hixie> which i didn't expect
- # [00:27] <Hixie> at least in chrome
- # [00:27] <Hixie> ah, firefox is differnet
- # [00:27] <Hixie> interesting
- # [00:28] <heycam> third last and second last buttons are different in chrome/firefox
- # [00:28] * Joins: jochen__ (jochen@nat/google/x-xlykexnnuyffzpke)
- # [00:28] * Joins: marcosc (~marcosc@bl11-209-87.dsl.telepac.pt)
- # [00:30] <Hixie> looks like chrome just uses the settings object of the method being called, in the case of window.open
- # [00:31] <Hixie> but both chrome and firefox do make it an entry script regardless
- # [00:31] <heycam> so no oddity difference needed?
- # [00:31] <Hixie> er, sorry, s/chrome/firefox/ in my last but one comment
- # [00:31] * Joins: yutak (~yutak@2401:fa00:4:1000:26be:5ff:fe0d:e1d5)
- # [00:31] <Hixie> well, we have to figure out what the script should be
- # [00:32] * Quits: falken (~falken@2401:fa00:4:1000:26be:5ff:fe0d:d7ea) (Ping timeout: 245 seconds)
- # [00:32] <Hixie> they're both interesting models
- # [00:32] <Hixie> neither is particularly convenient for us
- # [00:32] <Hixie> wonder what IE does
- # [00:33] * Quits: marcosc (~marcosc@bl11-209-87.dsl.telepac.pt) (Remote host closed the connection)
- # [00:33] <Hixie> safari is different than chrome?
- # [00:34] * Joins: birtles (~chatzilla@61-121-216-2.bitcat.net)
- # [00:34] <Hixie> wtf is safari doing
- # [00:35] * Joins: rcombs (~rcombs@rcombs.me)
- # [00:37] * Quits: jdaggett (~jdaggett@103.5.142.9) (Quit: jdaggett)
- # [00:37] <Hixie> ok IE just takes the biscuit
- # [00:37] <Hixie> IE9, anyway
- # [00:38] <Hixie> IE9 does inner, outer, inner, inner, and then for the last four buttons just doesn't open a window at all.
- # [00:38] <Hixie> i guess that means window.setTimeout(window.open) doesn't work at all in IE
- # [00:38] <Hixie> that would certainly make our life easier...
- # [00:38] <heycam> :)
- # [00:39] <heycam> can I leave you to work out what to do here and you can tell me what info I need to pass into my HTML spec hook call?
- # [00:39] <gsnedders> window.setTimeout(window.open)? Do I even want to ask!?
- # [00:39] <heycam> and if I need to distinguish between native/JS functions, I can do that
- # [00:40] <Hixie> heycam: sure
- # [00:40] <Hixie> i probably won't finish today, at this rate
- # [00:42] * Quits: Martijnc (~Martijn@is-aweso.me) (Ping timeout: 272 seconds)
- # [00:42] * Quits: newtron (~newtron@69-196-176-249.dsl.teksavvy.com) (Remote host closed the connection)
- # [00:42] * Quits: jgraham (~jgraham@web91.webfaction.com) (Ping timeout: 260 seconds)
- # [00:43] * Joins: newtron (~newtron@69-196-176-249.dsl.teksavvy.com)
- # [00:43] * Joins: Martijnc (~Martijn@is-aweso.me)
- # [00:43] * Joins: jgraham (~jgraham@web91.webfaction.com)
- # [00:47] * Quits: newtron (~newtron@69-196-176-249.dsl.teksavvy.com) (Ping timeout: 272 seconds)
- # [00:48] * Quits: jtcranme1 (~jcranmer@ltsp2.csl.tjhsst.edu) (Ping timeout: 260 seconds)
- # [00:48] * Joins: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu)
- # [00:48] * Quits: tantek (~tantek@corp-nat.p2p.sfo1.mozilla.com) (Quit: tantek)
- # [00:51] * Quits: mven (~mven@169.241.49.196) (Remote host closed the connection)
- # [00:52] * Joins: mven (~mven@169.241.49.196)
- # [00:56] * Quits: mven (~mven@169.241.49.196) (Ping timeout: 240 seconds)
- # [01:02] * Quits: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu) (Ping timeout: 245 seconds)
- # [01:03] * Joins: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu)
- # [01:09] * Joins: jdaggett (~jdaggett@61-121-216-2.bitcat.net)
- # [01:11] * Joins: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net)
- # [01:12] * Quits: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu) (Ping timeout: 244 seconds)
- # [01:13] * Joins: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu)
- # [01:16] * Quits: decotii (~decotii@98.116.12.109) (Quit: Leaving)
- # [01:16] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
- # [01:16] * Joins: KevinMarks (~yaaic@2607:fb90:2208:7960:ff20:ca6:c326:bc9)
- # [01:19] * Joins: jdaggett_ (~jdaggett@61-121-216-2.bitcat.net)
- # [01:20] * Quits: lilmonkey` (~colin@pdpc/supporter/professional/riven) (Ping timeout: 268 seconds)
- # [01:22] * Quits: jdaggett (~jdaggett@61-121-216-2.bitcat.net) (Ping timeout: 265 seconds)
- # [01:22] * Joins: richt (~richt@91.216.105.7)
- # [01:22] * Quits: jdaggett_ (~jdaggett@61-121-216-2.bitcat.net) (Client Quit)
- # [01:25] * Quits: jernoble|laptop (~jernoble@17.114.24.121) (Quit: Computer has gone to sleep.)
- # [01:32] * Joins: rxgx (~rxgx@64.38.203.218)
- # [01:33] * Joins: jernoble (~jernoble@76.74.153.36)
- # [01:41] * Quits: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net) (Quit: Leaving.)
- # [01:43] * Joins: newtron (~newtron@69-196-176-249.dsl.teksavvy.com)
- # [01:45] * Joins: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net)
- # [01:46] * Quits: gerente (~gerente@bl15-85-40.dsl.telepac.pt) (Quit: gerente)
- # [01:46] * Joins: gerente (~gerente@bl15-85-40.dsl.telepac.pt)
- # [01:59] * Joins: a-ja (~Instantbi@70.230.164.222)
- # [01:59] * Joins: WeirdAl (~chatzilla@g2spf.ask.info)
- # [02:01] * Joins: newtron_ (~newtron@69-196-176-249.dsl.teksavvy.com)
- # [02:03] * Joins: newtron_work (~newtron@69-196-176-249.dsl.teksavvy.com)
- # [02:03] * Quits: gerente (~gerente@bl15-85-40.dsl.telepac.pt) (Quit: gerente)
- # [02:03] * Joins: gerente (~gerente@bl15-85-40.dsl.telepac.pt)
- # [02:04] * jorendorff is now known as jorendorff_away
- # [02:05] * Quits: newtron (~newtron@69-196-176-249.dsl.teksavvy.com) (Ping timeout: 272 seconds)
- # [02:06] * Quits: newtron_ (~newtron@69-196-176-249.dsl.teksavvy.com) (Ping timeout: 272 seconds)
- # [02:07] * Quits: newtron_work (~newtron@69-196-176-249.dsl.teksavvy.com) (Ping timeout: 272 seconds)
- # [02:08] * Quits: ap (~ap@2620:149:4:304:715a:ad20:411:f712) (Quit: ap)
- # [02:08] * Quits: gerente (~gerente@bl15-85-40.dsl.telepac.pt) (Ping timeout: 272 seconds)
- # [02:08] * Quits: jernoble (~jernoble@76.74.153.36) (Ping timeout: 272 seconds)
- # [02:10] * Joins: jreading1 (~Adium@ip98-169-193-48.dc.dc.cox.net)
- # [02:10] * Joins: jernoble (~jernoble@76.74.153.36)
- # [02:12] * Quits: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net) (Ping timeout: 245 seconds)
- # [02:15] * Quits: jernoble (~jernoble@76.74.153.36) (Ping timeout: 248 seconds)
- # [02:15] * Quits: jsbell (jsbell@nat/google/x-briumgaiwfccfanz) (Quit: There's no place like home...)
- # [02:18] * Joins: jernoble (~jernoble@76.74.153.36)
- # [02:19] * Quits: jreading1 (~Adium@ip98-169-193-48.dc.dc.cox.net) (Quit: Leaving.)
- # [02:23] * Quits: jernoble (~jernoble@76.74.153.36) (Ping timeout: 265 seconds)
- # [02:25] * Joins: jernoble (~jernoble@76.74.153.36)
- # [02:26] * Quits: jernoble (~jernoble@76.74.153.36) (Client Quit)
- # [02:30] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Ping timeout: 240 seconds)
- # [02:33] * heycam is now known as heycam|away
- # [02:33] * heycam|away is now known as heycam
- # [02:35] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [02:36] * Joins: mven_ (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [02:36] * Quits: Karate (~Karate@190.189.230.229) (Read error: Connection reset by peer)
- # [02:39] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Ping timeout: 240 seconds)
- # [02:41] * heycam is now known as heycam|away
- # [02:42] * heycam|away is now known as heycam
- # [02:42] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [02:43] * Quits: rxgx (~rxgx@64.38.203.218) (Quit: rage quit)
- # [02:45] * Quits: beverloo- (~peter@is-aweso.me) (Ping timeout: 268 seconds)
- # [02:45] * heycam is now known as heycam|away
- # [02:45] * heycam|away is now known as heycam
- # [02:47] * Joins: beverloo` (~peter@is-aweso.me)
- # [02:50] * Joins: juliet (~css@unaffiliated/css)
- # [02:50] * Quits: WeirdAl (~chatzilla@g2spf.ask.info) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0/20131025151332])
- # [02:50] * heycam is now known as heycam|away
- # [02:51] * heycam|away is now known as heycam
- # [02:55] * heycam is now known as heycam|away
- # [02:55] * heycam|away is now known as heycam
- # [02:55] * heycam is now known as heycam|away
- # [02:55] * heycam|away is now known as heycam
- # [02:56] * Quits: jorgepedret (~jorgepedr@64-46-23-103.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [02:57] * Krinkle is now known as Krinkle|detached
- # [03:04] * Joins: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [03:07] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [03:12] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [03:14] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [03:14] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [03:15] * Quits: richt (~richt@91.216.105.7) (Remote host closed the connection)
- # [03:17] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Ping timeout: 272 seconds)
- # [03:18] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [03:20] * Quits: brianloveswords (~brianlove@li124-154.members.linode.com) (Excess Flood)
- # [03:21] * Joins: tantek (~tantek@172.56.16.31)
- # [03:22] * Joins: brianloveswords (~brianlove@li124-154.members.linode.com)
- # [03:25] * Quits: netoholic (~boyan@77.71.96.54) (Read error: Connection reset by peer)
- # [03:29] * heycam is now known as heycam|away
- # [03:31] * Quits: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Quit: Computer has gone to sleep.)
- # [03:32] * Quits: gavinc (~gavin@barad-dur.carothers.name) (Ping timeout: 260 seconds)
- # [03:50] * Joins: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net)
- # [03:57] * Quits: smaug____ (~chatzilla@cs78246079.pp.htv.fi) (Ping timeout: 260 seconds)
- # [03:58] * Joins: Guest88386 (~master@74-50-124-114.static.hvvc.us)
- # [04:02] * heycam|away is now known as heycam
- # [04:06] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [04:14] * Quits: seventh (seventh@207.207.28.244) (Remote host closed the connection)
- # [04:15] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [04:17] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [04:18] * Parts: juliet (~css@unaffiliated/css)
- # [04:21] * ojan is now known as ojan_away
- # [04:29] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [04:30] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [04:34] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [04:41] * jorendorff_away is now known as jorendorff
- # [04:51] * Quits: tantek (~tantek@172.56.16.31) (Quit: tantek)
- # [05:01] * Joins: zaal (~zaal@cpc1-nrwh9-2-0-cust358.4-4.cable.virginm.net)
- # [05:03] * Quits: yoav (~yoav@host132-65-static.230-95-b.business.telecomitalia.it) (Ping timeout: 240 seconds)
- # [05:06] * Quits: zaal (~zaal@cpc1-nrwh9-2-0-cust358.4-4.cable.virginm.net) (Read error: Connection reset by peer)
- # [05:07] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [05:20] * Joins: zaal (~zaal@cpc1-nrwh9-2-0-cust358.4-4.cable.virginm.net)
- # [05:20] * Quits: zaal (~zaal@cpc1-nrwh9-2-0-cust358.4-4.cable.virginm.net) (Read error: Connection reset by peer)
- # [05:39] * Joins: falken_ (~falken@2401:fa00:4:1000:c4a8:6e17:f4d:8dfb)
- # [05:45] * Quits: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu) (Quit: Reconnecting)
- # [05:45] * Joins: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu)
- # [05:48] * Quits: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net) (Quit: Leaving.)
- # [05:49] * Joins: [[zzz]] (~zz]]@101.108.251.193)
- # [05:53] * Quits: [[zz]] (~zz]]@node-lik.pool-101-108.dynamic.totbb.net) (Ping timeout: 272 seconds)
- # [06:00] * Joins: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [06:05] * Quits: dbaron (~dbaron@173-228-85-89.dsl.dynamic.sonic.net) (Ping timeout: 244 seconds)
- # [06:07] * jorendorff is now known as jorendorff_away
- # [06:11] * Joins: parshap (~parshap@ip68-5-37-109.oc.oc.cox.net)
- # [06:12] * Quits: Guest88386 (~master@74-50-124-114.static.hvvc.us) (Ping timeout: 268 seconds)
- # [06:13] * Quits: hober (~ted@unaffiliated/hober) (Read error: Connection reset by peer)
- # [06:14] * Joins: hober (~ted@unaffiliated/hober)
- # [06:33] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [06:43] * Quits: kinetik (~kinetik@121.99.40.239) (Read error: Connection reset by peer)
- # [06:55] * Joins: kinetik (~kinetik@121.99.40.239)
- # [06:57] * Joins: nielsle (~nielsle@3239078-cl69.boa.fiberby.dk)
- # [07:05] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [07:05] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [07:08] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [07:09] * Joins: bzalasky_ (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [07:10] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Ping timeout: 248 seconds)
- # [07:11] * Quits: cfq_ (~cfq@static.85-10-200-244.clients.your-server.de) (Ping timeout: 260 seconds)
- # [07:12] * Quits: Benvie_ (~bbenvie@corp-nat.p2p.sfo1.mozilla.com) (Ping timeout: 256 seconds)
- # [07:12] * Joins: cfq (~cfq@static.85-10-200-244.clients.your-server.de)
- # [07:19] * Joins: lmclister (~lmclister@121.14.98.47)
- # [07:28] * Quits: lmclister (~lmclister@121.14.98.47)
- # [07:37] * Quits: parshap (~parshap@ip68-5-37-109.oc.oc.cox.net) (Ping timeout: 265 seconds)
- # [07:41] * Joins: lmclister (~lmclister@121.14.98.48)
- # [07:46] * Joins: lmcliste_ (~lmclister@121.14.98.48)
- # [07:49] * Quits: lmclister (~lmclister@121.14.98.48) (Ping timeout: 268 seconds)
- # [07:52] * Joins: parshap (~parshap@ip68-5-37-109.oc.oc.cox.net)
- # [07:53] * Quits: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Quit: Computer has gone to sleep.)
- # [07:55] * Joins: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [07:57] * Joins: cortexA9 (uid15580@gateway/web/irccloud.com/x-flczqkncmtbtbitm)
- # [07:57] * Guest6462 is now known as Areks
- # [07:57] <cortexA9> hi
- # [08:02] * [[zzz]] is now known as [[zz]]
- # [08:02] * Parts: cortexA9 (uid15580@gateway/web/irccloud.com/x-flczqkncmtbtbitm)
- # [08:03] * Quits: parshap (~parshap@ip68-5-37-109.oc.oc.cox.net) (Ping timeout: 248 seconds)
- # [08:03] * Joins: parshap (~parshap@ip68-5-37-109.oc.oc.cox.net)
- # [08:04] * Quits: parshap (~parshap@ip68-5-37-109.oc.oc.cox.net) (Read error: Connection reset by peer)
- # [08:05] * Quits: espadrine (~ttyl@acces1121.res.insa-lyon.fr) (Ping timeout: 248 seconds)
- # [08:07] * Joins: parshap (~parshap@ip68-5-37-109.oc.oc.cox.net)
- # [08:08] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [08:14] * Joins: memsys (~KingNobod@dsl-tkubrasgw1-54fa22-49.dhcp.inet.fi)
- # [08:15] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [08:20] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [08:24] * Parts: a-ja (~Instantbi@70.230.164.222)
- # [08:25] * Quits: bzalasky_ (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [08:27] * Quits: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [08:28] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [08:29] * Joins: WesleyMcClane (~quassel@host123-136-dynamic.7-87-r.retail.telecomitalia.it)
- # [08:30] * Joins: zdobersek (~zdobersek@46.19.137.78)
- # [08:31] * Quits: WesleyMcClane_ (~quassel@host218-191-dynamic.2-87-r.retail.telecomitalia.it) (Ping timeout: 260 seconds)
- # [08:43] * Quits: lmcliste_ (~lmclister@121.14.98.48)
- # [08:47] * Quits: parshap (~parshap@ip68-5-37-109.oc.oc.cox.net) (Ping timeout: 248 seconds)
- # [08:50] * Quits: diffalot (~diffalot@c-76-107-128-104.hsd1.ms.comcast.net) (Ping timeout: 245 seconds)
- # [08:58] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [09:00] <zcorpan> jgraham: does trickle(d1) send the headers immediately?
- # [09:05] * Joins: rego (~rego@231.193.27.77.dynamic.mundo-r.com)
- # [09:06] * Joins: Ms2ger (~Ms2ger@193.190.253.149)
- # [09:07] * Joins: Ms2ger` (~Ms2ger@193.190.253.149)
- # [09:07] * Quits: Ms2ger (~Ms2ger@193.190.253.149) (Read error: Connection reset by peer)
- # [09:09] * Quits: rego (~rego@231.193.27.77.dynamic.mundo-r.com) (Remote host closed the connection)
- # [09:12] * heycam is now known as heycam|away
- # [09:19] <Ms2ger`> So it was true that FB was going to do Presto!
- # [09:19] <Ms2ger`> https://news.ycombinator.com/item?id=6684318
- # [09:20] * Joins: rego (~rego@231.193.27.77.dynamic.mundo-r.com)
- # [09:26] * Quits: birtles (~chatzilla@61-121-216-2.bitcat.net) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
- # [09:28] * Joins: zaal (~zaal@cpc1-nrwh9-2-0-cust358.4-4.cable.virginm.net)
- # [09:32] * Joins: yoav (~yoav@88.128.80.2)
- # [09:40] * Joins: hasather (~hasather@80.91.33.141)
- # [10:01] <hsivonen> oh, cool. utf-16le is now the name of the encoding and utf-16 is a label
- # [10:01] <hsivonen> this has changed recently, right?
- # [10:01] <hsivonen> anyway, I'm less annoyed now
- # [10:01] * Quits: yoav (~yoav@88.128.80.2) (Quit: Ex-Chat)
- # [10:05] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [10:06] * Joins: diffalot (~diffalot@c-76-107-128-104.hsd1.ms.comcast.net)
- # [10:06] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [10:13] * Joins: darobin (~darobin@78.109.80.74)
- # [10:13] * Joins: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt)
- # [10:15] * Quits: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt) (Client Quit)
- # [10:26] * Joins: Luciano (c2f40927@gateway/web/freenode/ip.194.244.9.39)
- # [10:32] * Joins: tomasf (~tomasf@77.72.97.10.c.fiberdirekt.net)
- # [10:35] <annevk-cloud> Yeah was changed
- # [10:39] * Joins: Smylers (~smylers@81.143.60.194)
- # [10:43] * Joins: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt)
- # [10:46] * Quits: Luciano (c2f40927@gateway/web/freenode/ip.194.244.9.39) (Quit: Page closed)
- # [10:55] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [10:59] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0/20131025151332])
- # [11:03] * Joins: smaug____ (~chatzilla@cs78246079.pp.htv.fi)
- # [11:07] * Quits: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt) (Ping timeout: 245 seconds)
- # [11:10] * Quits: falken_ (~falken@2401:fa00:4:1000:c4a8:6e17:f4d:8dfb) (Ping timeout: 240 seconds)
- # [11:12] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [11:17] * Joins: gerente (~gerente@a94-133-101-219.cpe.netcabo.pt)
- # [11:17] * Joins: barnabywalters (~barnabywa@46-239-239-203.tal.is)
- # [11:19] * Joins: TheGallery (~TheGaller@athedsl-216184.home.otenet.gr)
- # [11:20] * Joins: falken (~falken@2401:fa00:4:1000:f875:2fce:a676:5d4a)
- # [11:23] * Joins: rniwa_ (~rniwa@c-98-207-134-149.hsd1.ca.comcast.net)
- # [11:24] * Quits: rniwa_ (~rniwa@c-98-207-134-149.hsd1.ca.comcast.net) (Client Quit)
- # [11:26] * Joins: Lachy (~Lachy@213.166.174.2)
- # [11:26] * Joins: adactio (~adactio@212.42.170.181)
- # [11:32] * Joins: darobin_ (~darobin@78.109.80.74)
- # [11:32] * Quits: darobin (~darobin@78.109.80.74) (Read error: Connection reset by peer)
- # [11:38] * Quits: gerente (~gerente@a94-133-101-219.cpe.netcabo.pt) (Ping timeout: 245 seconds)
- # [11:43] * Joins: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt)
- # [11:44] * Joins: TheTomThorogood (~Thunderbi@118.107.37.48)
- # [11:44] * Quits: TheTomThorogood (~Thunderbi@118.107.37.48) (Client Quit)
- # [11:48] * Quits: Lachy (~Lachy@213.166.174.2) (Quit: Textual IRC Client: www.textualapp.com)
- # [11:52] * Joins: Lachy (~Lachy@213.166.174.2)
- # [12:02] * Joins: espadrine (~ttyl@acces1121.res.insa-lyon.fr)
- # [12:03] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [12:04] <annevk> So GPHemsley, should http://wiki.whatwg.org/wiki/New_work become a subpage too then?
- # [12:06] <annevk> GPHemsley: your spelling of acknowledgments disagrees with all my specs
- # [12:07] <MikeSmith> fwiw about setting up a way to get RF agreements for whatwg specs, I notice that the Dash Industry Forum is using a relatively lightweight means to get RF agreemenents for code contributions to the dash.js library. see https://github.com/Dash-Industry-Forum/dash.js/wiki/How-to-Contribute#process-for-contributing-code and, e.g., https://groups.google.com/forum/#!topic/dashjs/W4Tmm8sBGX0
- # [12:08] <MikeSmith> it's for code, not specs, but it seems like the same thing could be used for spec contributions
- # [12:09] <MikeSmith> in fact, they actually just call it a "Feedback Agreement"
- # [12:09] <MikeSmith> http://dashif.org/documents/DASH-IF-Feedback-Agreement-5-9-2013.pdf
- # [12:10] <MikeSmith> "By signing below, you (on behalf of yourself if you are an individual and your company if you are providing Feedback on behalf of the company) grant the companies under all applicable intellectual property rights owned or controlled by you or your company a non-exclusive, non-transferable, worldwide, perpetual, irrevocable, royalty-free license to use, disclose, copy, publish, license, modify, sublicense or otherwise distribute and exploit Feedback you
- # [12:14] * Joins: hasather_ (~hasather@guest.schibsted.no)
- # [12:14] * Quits: hasather (~hasather@80.91.33.141) (Read error: Connection reset by peer)
- # [12:14] * Joins: hasather (~hasather@80.91.33.141)
- # [12:19] * Quits: hasather_ (~hasather@guest.schibsted.no) (Ping timeout: 272 seconds)
- # [12:25] * Quits: Ms2ger` (~Ms2ger@193.190.253.149) (Ping timeout: 244 seconds)
- # [12:28] * Quits: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt) (Ping timeout: 268 seconds)
- # [12:30] * Joins: yoav (~yoav@LLagny-156-36-17-140.w80-14.abo.wanadoo.fr)
- # [12:35] * Quits: idbentley (~idbentley@204.91.28.98) (Ping timeout: 245 seconds)
- # [12:37] * Joins: gerente (~gerente@a94-133-101-219.cpe.netcabo.pt)
- # [12:39] * Joins: Ms2ger` (~Ms2ger@193.190.253.149)
- # [12:45] * Quits: Ms2ger` (~Ms2ger@193.190.253.149) (Ping timeout: 248 seconds)
- # [12:46] * Joins: richt (~richt@124-170-60-133.dyn.iinet.net.au)
- # [12:47] * Joins: idbentley (~idbentley@74.113.166.194)
- # [12:49] <MikeSmith> I'm trying to remember if there's data somewhere on how many documents on the Web are actually being served with an XML MIME type
- # [12:50] <MikeSmith> I mean documents with an XHTML doctype served with an XML MIME type instead of as text/html
- # [12:53] * Quits: zdobersek (~zdobersek@46.19.137.78) (Ping timeout: 244 seconds)
- # [12:57] * Joins: baku (~baku@207.218.72.65)
- # [13:02] * Quits: richt (~richt@124-170-60-133.dyn.iinet.net.au) (Remote host closed the connection)
- # [13:04] * Joins: felipeduardo (~felipedua@189.115.44.34)
- # [13:15] * Joins: TheOtherGallery (~TheGaller@athedsl-216184.home.otenet.gr)
- # [13:16] * Joins: Zauberfisch__ (~Zauberfis@venus.zauberfisch.at)
- # [13:16] * Joins: WesleyMcClane_ (~quassel@host123-136-dynamic.7-87-r.retail.telecomitalia.it)
- # [13:17] * Joins: Kolombiken (~Adium@94.137.124.2)
- # [13:18] * MikeSmith finds http://dev.opera.com/articles/view/mama-http-headers/#conttype
- # [13:19] * Joins: Lachy_ (~Lachy@213.166.174.2)
- # [13:19] <MikeSmith> 'Of the 3,509,180 URLs that MAMA analyzed, the vast majority (~99.9%) used a "text/html" MIME type'
- # [13:19] * Joins: dshwang_ (~dshwang@134.134.139.76)
- # [13:20] * Joins: Hixie_ (~ianh@178.255.149.100)
- # [13:20] * Joins: jochen___ (jochen@nat/google/x-mezfbdpyztegzaou)
- # [13:20] * Joins: ahf_ (ahf@irssi/staff/ahf)
- # [13:20] * Joins: mitsuhiko_ (~mitsuhiko@hammett.srv.pocoo.org)
- # [13:20] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [13:21] * Joins: fredy_ (~fredy@snf-8914.vm.okeanos.grnet.gr)
- # [13:21] * Quits: baku (~baku@207.218.72.65) (Ping timeout: 240 seconds)
- # [13:23] * Joins: barnabywalters_ (~barnabywa@46-239-239-203.tal.is)
- # [13:23] * Joins: beverloo- (~peter@is-aweso.me)
- # [13:24] * Joins: famicom` (~famicom@95.211.167.191)
- # [13:25] * Joins: Johnny-- (~null@unaffiliated/johnny-)
- # [13:25] * Quits: Lachy (~Lachy@213.166.174.2) (*.net *.split)
- # [13:25] * Quits: TheGallery (~TheGaller@athedsl-216184.home.otenet.gr) (*.net *.split)
- # [13:25] * Quits: barnabywalters (~barnabywa@46-239-239-203.tal.is) (*.net *.split)
- # [13:25] * Quits: WesleyMcClane (~quassel@host123-136-dynamic.7-87-r.retail.telecomitalia.it) (*.net *.split)
- # [13:25] * Quits: [[zz]] (~zz]]@101.108.251.193) (*.net *.split)
- # [13:25] * Quits: beverloo` (~peter@is-aweso.me) (*.net *.split)
- # [13:25] * Quits: jochen__ (jochen@nat/google/x-xlykexnnuyffzpke) (*.net *.split)
- # [13:25] * Quits: Johnny- (~null@unaffiliated/johnny-) (*.net *.split)
- # [13:25] * Quits: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr) (*.net *.split)
- # [13:25] * Quits: Zauberfisch_ (~Zauberfis@venus.zauberfisch.at) (*.net *.split)
- # [13:25] * Quits: famicom (~famicom@95.211.167.191) (*.net *.split)
- # [13:25] * Quits: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko) (*.net *.split)
- # [13:25] * Quits: ahf (ahf@irssi/staff/ahf) (*.net *.split)
- # [13:25] * Quits: Hixie (~ianh@178.255.149.100) (*.net *.split)
- # [13:25] * Quits: mounir (~mounir@oldworld.fr) (*.net *.split)
- # [13:25] * Quits: dshwang (~dshwang@192.55.55.37) (*.net *.split)
- # [13:25] * Quits: webben (~benjamin@198.61.227.102) (*.net *.split)
- # [13:25] * Quits: reggna (~reggna@irc.jagochmittmoln.se) (*.net *.split)
- # [13:25] * barnabywalters_ is now known as barnabywalters
- # [13:25] * jochen___ is now known as jochen__
- # [13:25] * Johnny-- is now known as Johnny-
- # [13:25] * fredy_ is now known as fredy
- # [13:25] * ahf_ is now known as ahf
- # [13:26] * Joins: reggna (~reggna@irc.jagochmittmoln.se)
- # [13:26] * Quits: yoav (~yoav@LLagny-156-36-17-140.w80-14.abo.wanadoo.fr) (Quit: Ex-Chat)
- # [13:27] * Quits: timeless (uid4015@firefox/developer/timeless) (Ping timeout: 245 seconds)
- # [13:27] * Quits: twisted` (uid6794@gateway/web/irccloud.com/x-ijlzdixaapveiafo) (Ping timeout: 245 seconds)
- # [13:29] * Joins: WesleyMcClane (~quassel@host216-104-dynamic.7-87-r.retail.telecomitalia.it)
- # [13:29] * Joins: webben (~benjamin@198.61.227.102)
- # [13:30] * Joins: [[zz]] (~zz]]@101.108.251.193)
- # [13:31] * Quits: WesleyMcClane_ (~quassel@host123-136-dynamic.7-87-r.retail.telecomitalia.it) (Ping timeout: 268 seconds)
- # [13:31] * Joins: timeless (uid4015@firefox/developer/timeless)
- # [13:34] * Joins: mounir (~mounir@oldworld.fr)
- # [13:35] * Joins: twisted` (uid6794@gateway/web/irccloud.com/x-tavetrqecpieziie)
- # [13:37] * Joins: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net)
- # [13:39] * Joins: zcorpan (~zcorpan@c-5eeaaaaf-74736162.cust.telenor.se)
- # [13:40] * Quits: zcorpan (~zcorpan@c-5eeaaaaf-74736162.cust.telenor.se) (Remote host closed the connection)
- # [13:40] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [13:41] * Joins: zcorpan (~zcorpan@94.234.170.175)
- # [13:43] * jorendorff_away is now known as jorendorff
- # [13:44] * Quits: zcorpan (~zcorpan@94.234.170.175) (Remote host closed the connection)
- # [13:51] * Joins: foxtrotwhiskey (~foxtrotwh@c-98-225-154-188.hsd1.pa.comcast.net)
- # [13:51] * Joins: zcorpan (~zcorpan@c-5eeaaaaf-74736162.cust.telenor.se)
- # [14:00] * Quits: lilmonkey (~colin@pdpc/supporter/professional/riven) (Ping timeout: 244 seconds)
- # [14:00] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
- # [14:03] * Quits: gerente (~gerente@a94-133-101-219.cpe.netcabo.pt) (Quit: gerente)
- # [14:10] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Quit: is sleepy)
- # [14:12] * Joins: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt)
- # [14:14] * Quits: felipeduardo (~felipedua@189.115.44.34) (Ping timeout: 240 seconds)
- # [14:16] * Joins: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com)
- # [14:16] * Quits: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com) (Remote host closed the connection)
- # [14:17] * Joins: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com)
- # [14:17] * Quits: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt) (Quit: gerente)
- # [14:20] * Joins: lmclister (~lmclister@59.37.57.226)
- # [14:21] * Quits: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com) (Ping timeout: 240 seconds)
- # [14:24] <annevk> MikeSmith: I hope you're just doing that because you're curious and not because someone is saying something irrational
- # [14:25] * Joins: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si)
- # [14:26] <MikeSmith> umm, I wish I could claim it was because someone isn't saying something irrational, so let's just go with "curious"
- # [14:28] * Joins: felipeduardo (~felipedua@200.150.125.74)
- # [14:31] <annevk> You know it's bad when you have to revisit a decade old fact-settled debate.
- # [14:32] * TheOtherGallery is now known as TheGallery
- # [14:34] <hsivonen> annevk: speaking of those: http://lists.suckless.org/dev/1310/17874.html
- # [14:35] * Joins: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt)
- # [14:35] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [14:36] * Joins: Ms2ger (~Ms2ger@b244h227.ugent.be)
- # [14:36] <annevk> hsivonen: gopher man, how do you find this stuff?
- # [14:37] <hsivonen> annevk: hendry tweeted it at me
- # [14:37] <annevk> haha
- # [14:37] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Ping timeout: 265 seconds)
- # [14:39] <hsivonen> I wonder if I should add telemetry for those font-only legacy Mac encodings
- # [14:39] <annevk> To see if the font code path is being hit?
- # [14:39] <hsivonen> annevk: right
- # [14:39] * Quits: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt) (Ping timeout: 240 seconds)
- # [14:40] <hsivonen> maybe I should add telemetry for legacy stuff that Thunderbird might use, too
- # [14:40] <annevk> Is there any Mac OS out there that still needs that?
- # [14:40] * Joins: gerente (~gerente@a94-133-101-219.cpe.netcabo.pt)
- # [14:40] <annevk> That Gecko supports?
- # [14:40] <hsivonen> annevk: I have no idea what fonts people have installed
- # [14:41] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [14:41] <annevk> Ooh, it's not an OS thing, it's a fonts thing?
- # [14:41] <annevk> Ew...
- # [14:41] <hsivonen> annevk: it's for making sense of data in legacy font files
- # [14:41] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [14:42] <annevk> I guess that does warrant investigation of sorts. Alternatively investigation of the Chrome code base which almost certainly does not do this. (They don't have those encoders/decoders at the Chromium level.)
- # [14:43] * Joins: zdobersek (~zdobersek@91.108.183.50)
- # [14:44] * Quits: brianloveswords (~brianlove@li124-154.members.linode.com) (Excess Flood)
- # [14:45] * jorendorff is now known as jorendorff_away
- # [14:45] * Joins: brianloveswords (~brianlove@li124-154.members.linode.com)
- # [14:46] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Ping timeout: 260 seconds)
- # [14:47] * Quits: Kolombiken (~Adium@94.137.124.2) (Quit: Leaving.)
- # [14:48] * Joins: Kolombiken (~Adium@gateway.creuna.se)
- # [14:49] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [14:50] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [14:55] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Ping timeout: 272 seconds)
- # [15:01] * Quits: Ms2ger (~Ms2ger@b244h227.ugent.be) (Ping timeout: 252 seconds)
- # [15:04] * Joins: umgrosscol (~umgrossco@grosscol.umdl.umich.edu)
- # [15:05] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [15:07] * Joins: decotii (~decotii@hq.croscon.com)
- # [15:11] * Joins: baku (~baku@207.218.72.65)
- # [15:12] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net)
- # [15:12] * Joins: Ms2ger (~Ms2ger@b255h124.ugent.be)
- # [15:13] * Joins: joelcox (~joelcox@unaffiliated/joelcox)
- # [15:13] * Joins: felipeduardo_ (~felipedua@177.40.21.85)
- # [15:14] * Joins: newtron (~newtron@199.71.174.203)
- # [15:14] * Quits: Smylers (~smylers@81.143.60.194) (Remote host closed the connection)
- # [15:14] * Joins: TallTed (~Thud@63.119.36.36)
- # [15:15] * Joins: Smylers (~smylers@81.143.60.194)
- # [15:18] * Quits: felipeduardo (~felipedua@200.150.125.74) (Ping timeout: 272 seconds)
- # [15:19] * Quits: felipeduardo_ (~felipedua@177.40.21.85) (Ping timeout: 252 seconds)
- # [15:21] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [15:27] <GPHemsley> annevk: Yeah, there are a few more pages that should probably become subpages.
- # [15:28] * jorendorff_away is now known as jorendorff
- # [15:31] * Joins: felipeduardo_ (~felipedua@189.115.44.34)
- # [15:33] * Joins: marcosc (~marcosc@bl11-209-87.dsl.telepac.pt)
- # [15:34] * Joins: reyre (~reyre@142.204.133.18)
- # [15:39] * Quits: gerente (~gerente@a94-133-101-219.cpe.netcabo.pt) (Quit: gerente)
- # [15:42] * Quits: falken (~falken@2401:fa00:4:1000:f875:2fce:a676:5d4a) (Ping timeout: 240 seconds)
- # [15:44] * Joins: cwilso (uid10206@gateway/web/irccloud.com/x-zptyzgfjvynxbutd)
- # [15:46] <GPHemsley> Any chance we could start encouraging subject prefixes on the mailing list, like CSS and others do? (I know I do it with mimesniff.)
- # [15:48] * Quits: zcorpan (~zcorpan@c-5eeaaaaf-74736162.cust.telenor.se) (Remote host closed the connection)
- # [15:48] <zewt> how about "Subject: "
- # [15:49] <annevk> GPHemsley: no
- # [15:50] <GPHemsley> why?
- # [15:50] <annevk> A lot of topics encompass lots of different specifications. We should not add bureaucracy that isn't needed.
- # [15:50] <GPHemsley> You have a low bar for what is considered "bureaucracy"
- # [15:50] * Quits: tomasf (~tomasf@77.72.97.10.c.fiberdirekt.net) (Ping timeout: 268 seconds)
- # [15:51] * Quits: TheGallery (~TheGaller@athedsl-216184.home.otenet.gr) (Quit: Leaving)
- # [15:51] <annevk> Yes
- # [15:51] <annevk> Everything that's a "rule" basically.
- # [15:51] <annevk> Don't need people that want to contribute to have to go through more rules than strictly needed.
- # [15:52] <annevk> It's already too hard for a bunch of them.
- # [15:52] <GPHemsley> On the flipside, it's hard for me to figure out what mail to read ;)
- # [15:53] <Ms2ger> All of it ;)
- # [15:53] <GPHemsley> Ms2ger: Do you really what my unqualified opinion on everything? ;)
- # [15:54] <GPHemsley> s/what/want/
- # [15:54] <Ms2ger> I want you to read it, not necessarily to reply ;)
- # [15:54] <darobin_> GPHemsley: I think the hidden message there is that annevk doesn't want to contribute :)
- # [15:54] * darobin_ is now known as darobin
- # [15:54] <jgraham> Not sure that reading every mail means responding to everything
- # [15:55] <GPHemsley> jgraham: 'Twas hyperbole ;)
- # [15:55] * jgraham doesn't read every mail, but also doesn't want more rules for the sake of it
- # [15:56] <darobin> I find that if people use meaningful subjects you don't need a prefix
- # [15:56] <annevk> GPHemsley: I recommend reading the subjects that interest you
- # [15:56] <annevk> darobin: indeed
- # [15:56] <darobin> whereas people tend to get prefixes wrong, especially if there are more than two different ones
- # [15:56] <annevk> I'd be okay with a "use meaningful subjects" guideline, just like we have a "inline quote" guideline
- # [15:57] <darobin> that just falls under proper netiquette really
- # [15:57] <annevk> Yeah
- # [15:58] <darobin> maybe just training the spam filter to drop emails with poor netiquette would achieve excellent signal to noise
- # [16:03] * Quits: Ms2ger (~Ms2ger@b255h124.ugent.be) (Ping timeout: 252 seconds)
- # [16:03] * Joins: shaunbaker (~shaunbake@brick-lane.lbi.co.uk)
- # [16:04] * Joins: Ms2ger (~Ms2ger@b255h124.ugent.be)
- # [16:05] * Quits: smaug____ (~chatzilla@cs78246079.pp.htv.fi) (Ping timeout: 272 seconds)
- # [16:09] * Joins: encryptd_fractal (~mfrawley@66-188-99-174.static.ftbg.wi.charter.com)
- # [16:15] <SimonSapin> This is nice Frenglish: "Initialized empty Dépôt git dans /home/simon/projects/specs/html/.git/"
- # [16:15] <Ms2ger> Why would you use a French OS
- # [16:17] <SimonSapin> old habits
- # [16:19] * Quits: shaunbaker (~shaunbake@brick-lane.lbi.co.uk) (Remote host closed the connection)
- # [16:19] * Quits: idbentley (~idbentley@74.113.166.194) (Ping timeout: 246 seconds)
- # [16:20] * Joins: shaunbaker (~shaunbake@brick-lane.lbi.co.uk)
- # [16:24] * Quits: shaunbaker (~shaunbake@brick-lane.lbi.co.uk) (Ping timeout: 252 seconds)
- # [16:34] * Joins: idbentley (~idbentley@204.91.28.98)
- # [16:39] * Quits: matijs (uid2278@gateway/web/irccloud.com/x-rwopsnnulzchtreo) (Read error: Connection reset by peer)
- # [16:39] * Joins: matijs (uid2278@gateway/web/irccloud.com/x-gvtovctjaxfouxhj)
- # [16:40] * Joins: nimbu (~nimbu@sjfw1-a.adobe.com)
- # [16:42] * Joins: shaunbaker (~shaunbake@brick-lane.lbi.co.uk)
- # [16:44] * Krinkle|detached is now known as Krinkle
- # [16:45] * Quits: nimbu (~nimbu@sjfw1-a.adobe.com) (Ping timeout: 265 seconds)
- # [16:54] * Joins: nimbu (~nimbu@192.150.10.205)
- # [16:57] * Quits: joelcox (~joelcox@unaffiliated/joelcox) (Quit: joelcox)
- # [17:02] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0/20131025151332])
- # [17:06] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
- # [17:07] * Quits: lmclister (~lmclister@59.37.57.226) (Ping timeout: 272 seconds)
- # [17:07] * Quits: darobin (~darobin@78.109.80.74) (Remote host closed the connection)
- # [17:11] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [17:15] * Quits: Ms2ger (~Ms2ger@b255h124.ugent.be) (Quit: bbl)
- # [17:15] * Joins: Areks_home (~Areks@95-26-130-24.broadband.corbina.ru)
- # [17:18] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [17:18] * Quits: mven_ (~mven@ip68-224-15-53.lv.lv.cox.net) (Remote host closed the connection)
- # [17:19] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [17:19] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [17:20] * Joins: krawchyk (~krawchyk@65.220.49.251)
- # [17:23] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Ping timeout: 244 seconds)
- # [17:23] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Ping timeout: 260 seconds)
- # [17:25] * Joins: hasather_ (~hasather@guest.schibsted.no)
- # [17:26] * Quits: Areks_home (~Areks@95-26-130-24.broadband.corbina.ru) (Ping timeout: 260 seconds)
- # [17:28] * Quits: hasather (~hasather@80.91.33.141) (Ping timeout: 246 seconds)
- # [17:30] * Quits: hasather_ (~hasather@guest.schibsted.no) (Ping timeout: 252 seconds)
- # [17:31] * Joins: zcorpan (~zcorpan@94.234.170.175)
- # [17:37] * Joins: jsbell (jsbell@nat/google/x-lvcaxvsyftndvxid)
- # [17:37] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [17:40] * Quits: zcorpan (~zcorpan@94.234.170.175) (Remote host closed the connection)
- # [17:40] * Quits: idbentley (~idbentley@204.91.28.98) (Read error: Operation timed out)
- # [17:45] * Joins: idbentley (~idbentley@204.91.28.98)
- # [17:46] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [17:47] * Joins: zcorpan (~zcorpan@94.234.170.175)
- # [17:56] * Quits: dfreedm (uid7859@gateway/web/irccloud.com/x-uridahgmqhklhbzi) (Read error: Connection reset by peer)
- # [17:56] * Joins: dfreedm (uid7859@gateway/web/irccloud.com/x-rbhwpnxhnxxratdi)
- # [17:58] * Quits: zcorpan (~zcorpan@94.234.170.175) (Remote host closed the connection)
- # [18:01] * Quits: rego (~rego@231.193.27.77.dynamic.mundo-r.com) (Remote host closed the connection)
- # [18:04] * Joins: jernoble (~jernoble@76.74.153.41)
- # [18:04] * Quits: annevk (~annevk@207.218.72.65) (Remote host closed the connection)
- # [18:07] * Quits: nimbu (~nimbu@192.150.10.205) (Ping timeout: 272 seconds)
- # [18:07] * Joins: zcorpan (~zcorpan@c-5eeaaaaf-74736162.cust.telenor.se)
- # [18:09] * Joins: nimbu (~nimbu@sjfw1-a.adobe.com)
- # [18:09] * Quits: baku (~baku@207.218.72.65) (Ping timeout: 244 seconds)
- # [18:09] * Joins: ap (~ap@2620:149:4:304:8c0e:259f:68c4:6020)
- # [18:10] <zcorpan> anyone know about in-browser ITS tools?
- # [18:12] <miketaylr> ITS?
- # [18:14] * zcorpan -> beijing -> shenzhen
- # [18:15] * Quits: nimbu (~nimbu@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [18:16] * Joins: Benvie (~bbenvie@corp-nat.p2p.sfo1.mozilla.com)
- # [18:16] <Hixie_> wtf, a bunch of characters in the multipage acks got corrupted
- # [18:17] * Joins: Areks_home (~Areks@95-26-130-24.broadband.corbina.ru)
- # [18:17] <Hixie_> oh i bet the problem is that some parser doesn't supported named references
- # [18:17] * Quits: zcorpan (~zcorpan@c-5eeaaaaf-74736162.cust.telenor.se) (Remote host closed the connection)
- # [18:17] <Hixie_> annnnnnneeeeeeeeeeeeee
- # [18:19] * Joins: nimbu (~nimbu@sjfw1-a.adobe.com)
- # [18:20] * Joins: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [18:23] * Quits: jernoble (~jernoble@76.74.153.41) (Quit: Computer has gone to sleep.)
- # [18:23] * Joins: Ms2ger (~Ms2ger@47.199-64-87.adsl-dyn.isp.belgacom.be)
- # [18:27] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [18:29] * Quits: Smylers (~smylers@81.143.60.194) (Quit: Leaving.)
- # [18:31] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [18:31] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [18:31] <marcosc> heh, I was also going to curse Anne for something different :)
- # [18:32] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [18:34] * Joins: jernoble (~jernoble@17.212.152.13)
- # [18:36] * Quits: Lachy_ (~Lachy@213.166.174.2) (Ping timeout: 246 seconds)
- # [18:36] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Ping timeout: 260 seconds)
- # [18:37] <jorendorff> Domenic_: are microtasks going to be spec'd in ES6, and is there already draft text for it?
- # [18:37] * Quits: nimbu (~nimbu@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [18:38] * Joins: smaug____ (~chatzilla@cs78246079.pp.htv.fi)
- # [18:39] <Hixie_> oh, if ES6 is gonna spec them that would make my life easier
- # [18:40] * Hixie_ is currently deep in the middle of trying to figure out how to spec them in HTML
- # [18:42] * Joins: darobin (~darobin@78.208.93.24)
- # [18:43] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [18:43] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [18:44] <jsbell> jorendorff/Hixie: relevant (short) thread is https://mail.mozilla.org/pipermail/es-discuss/2013-October/033940.html
- # [18:45] <jorendorff> "easier"; "short"
- # [18:46] <jorendorff> OK, my real question was: how deterministic is the ordering of microtasks?
- # [18:47] <Hixie_> well i presume they're just going to provide hooks for HTML to use
- # [18:47] <Hixie_> it's not like they can actually embed the event loop directly into ES6, given how much HTML-specific crap is around the event loop
- # [18:47] <jorendorff> mmhmm
- # [18:47] <Hixie_> (e.g. when the event loop starts, etc)
- # [18:47] * Quits: darobin (~darobin@78.208.93.24) (Remote host closed the connection)
- # [18:47] <Hixie_> (how it's used for non-script-related stuff)
- # [18:48] * Joins: Benvie_ (~bbenvie@corp-nat.p2p.sfo1.mozilla.com)
- # [18:50] * Quits: Benvie (~bbenvie@corp-nat.p2p.sfo1.mozilla.com) (Ping timeout: 265 seconds)
- # [18:53] * Benvie_ is now known as Benvie
- # [18:56] * Parts: adactio (~adactio@212.42.170.181)
- # [18:58] <Hixie_> today's monster is http://www.hixie.ch/tests/adhoc/html/script/callbacks/001.html
- # [19:00] * Joins: cabanier (~cabanier@113.28.134.1)
- # [19:03] * Quits: shaunbaker (~shaunbake@brick-lane.lbi.co.uk) (Remote host closed the connection)
- # [19:03] * Joins: shaunbaker (~shaunbake@brick-lane.lbi.co.uk)
- # [19:03] <Hixie_> anyone got IE11 around?
- # [19:05] * Quits: shaunbaker (~shaunbake@brick-lane.lbi.co.uk) (Read error: Operation timed out)
- # [19:07] <dglazkov> good morning, Whatwg!
- # [19:08] * Joins: nimbu (~nimbu@sjfw1-a.adobe.com)
- # [19:08] * Quits: nimbu (~nimbu@sjfw1-a.adobe.com) (Client Quit)
- # [19:12] * Joins: malaclyps (~Danny@gateway/tor-sasl/malaclyps)
- # [19:14] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [19:20] * Joins: weinig (~weinig@17.114.218.152)
- # [19:25] * Joins: frozenice (~frozenice@unaffiliated/fr0zenice)
- # [19:30] * Quits: marcosc (~marcosc@bl11-209-87.dsl.telepac.pt) (Remote host closed the connection)
- #
- # Session Start: Thu Nov 07 20:50:04 2013
- # Session Ident: #whatwg
- # [20:50] * Now talking in #whatwg
- # [20:50] * Topic is 'WHATWG: http://www.whatwg.org/ -- logs: http://krijnhoetmer.nl/irc-logs/ & http://logbot.glob.com.au/ -- stats: http://gavinsharp.com/irc/whatwg.html -- Please leave your sense of logic at the door, thanks!'
- # [20:50] * Set by smaug____!~chatzilla@GGZYYCCCXVIII.gprs.sl-laajakaista.fi on Wed Mar 21 17:14:24
- # [20:50] * Quits: barnabywalters (~barnabywa@46-239-239-203.tal.is) (Quit: Back to real life!)
- # [20:52] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [20:53] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [20:54] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [20:59] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Ping timeout: 265 seconds)
- # [21:00] <jorendorff> clean-stack, definitely; ordering is what i'm after... hmm.
- # [21:00] <jorendorff> i'll assume it's mostly deterministics
- # [21:01] * Joins: vcarbune_ (~vcarbune@84-75-248-2.dclient.hispeed.ch)
- # [21:02] * Quits: zaal (~zaal@cpc1-nrwh9-2-0-cust358.4-4.cable.virginm.net) (Quit: zaal)
- # [21:05] * Joins: zaal (~zaal@cpc1-nrwh9-2-0-cust358.4-4.cable.virginm.net)
- # [21:10] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [21:10] * Joins: DiegoViane (~DiegoVian@186.206.163.127)
- # [21:11] * Quits: DiegoViane (~DiegoVian@186.206.163.127) (Remote host closed the connection)
- # [21:11] * Krinkle is now known as Krinkle|detached
- # [21:13] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [21:16] <annevk-cloud> It will be deterministic jorendorff
- # [21:16] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [21:17] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [21:17] <jorendorff> ok!
- # [21:17] <jorendorff> Domenic_: i was able to remove all direct interaction with microtasks from the module loader stuff by using promises instead
- # [21:18] <jorendorff> Domenic_: little worried i'm not doing it right -- that spec is impenetrable, to me -- but i guess the bugs will shake out one stuff runs
- # [21:18] <jorendorff> *once
- # [21:21] * Joins: jorgepedret (~jorgepedr@64-46-23-103.dyn.novuscom.net)
- # [21:21] * Joins: roven_ (~roven@78-20-24-80.access.telenet.be)
- # [21:22] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [21:24] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [21:24] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [21:27] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [21:28] * Joins: bzalasky_ (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [21:29] * Joins: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net)
- # [21:29] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Ping timeout: 246 seconds)
- # [21:30] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Ping timeout: 240 seconds)
- # [21:37] * Joins: nimbu (~nimbu@192.150.10.205)
- # [21:45] * Joins: nimbu1 (~nimbu@sjfw1-a.adobe.com)
- # [21:45] * ojan_away is now known as ojan
- # [21:48] * Joins: othermaciej (~mjs@17.114.218.106)
- # [21:48] * Quits: nimbu (~nimbu@192.150.10.205) (Ping timeout: 244 seconds)
- # [21:49] * Quits: felipeduardo_ (~felipedua@189.115.44.34) (Quit: Leaving)
- # [21:51] * Joins: KevinMarks_ (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [21:57] * Krinkle|detached is now known as Krinkle
- # [22:13] * Quits: cheron (~cheron@unaffiliated/cheron) (Ping timeout: 244 seconds)
- # [22:18] * Joins: malaclyps (~Danny@gateway/tor-sasl/malaclyps)
- # [22:20] * Quits: newtron (~newtron@199.71.174.203) (Quit: Leaving...)
- # [22:22] * Quits: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr) (Excess Flood)
- # [22:23] * Joins: WeirdAl (~chatzilla@g2spf.ask.info)
- # [22:23] * Joins: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr)
- # [22:24] * Joins: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt)
- # [22:28] * Joins: barnabywalters (~barnabywa@89.17.128.127)
- # [22:28] * Quits: KevinMarks_ (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [22:33] * Quits: reyre (~reyre@142.204.133.18) (Remote host closed the connection)
- # [22:35] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Ping timeout: 240 seconds)
- # [22:36] * Joins: KevinMarks_ (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [22:36] * Joins: gavinc (~gavin@barad-dur.carothers.name)
- # [22:42] * Quits: parshap (~parshap@ip68-5-37-109.oc.oc.cox.net) (Ping timeout: 260 seconds)
- # [22:47] * Quits: rcombs (~rcombs@rcombs.me) (Ping timeout: 264 seconds)
- # [22:47] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [22:48] * Joins: rcombs (~rcombs@rcombs.me)
- # [22:51] * Joins: malaclyps (~Danny@gateway/tor-sasl/malaclyps)
- # [22:53] * Quits: TallTed (~Thud@63.119.36.36)
- # [23:01] * Quits: zdobersek (~zdobersek@91.108.183.50) (Ping timeout: 244 seconds)
- # [23:02] * Quits: umgrosscol (~umgrossco@grosscol.umdl.umich.edu) (Quit: Nettalk6 - www.ntalk.de)
- # [23:06] * heycam|away is now known as heycam
- # [23:08] <Hixie_> heycam!
- # [23:08] <Hixie_> so i've been studying browsers
- # [23:08] <Hixie_> http://www.hixie.ch/tests/adhoc/html/script/callbacks/001.html has my results and conclusions (see bottom)
- # [23:09] <heycam> oh my
- # [23:09] <Hixie_> yeah.
- # [23:10] <Hixie_> so the only real question that no browsers agrees with is how to determine the entry script (actually, the "settings object", i'll explain what i mean in the bug later) for cases where you call a method with a native method as the callback
- # [23:10] * Joins: danny__ (~Danny@gateway/tor-sasl/malaclyps)
- # [23:10] <Hixie_> as in setTimeout(open, ...)
- # [23:11] <Hixie_> there are several options:
- # [23:11] * danny__ is now known as Guest6182
- # [23:11] <Hixie_> 1. we don't support that (IE9)
- # [23:11] <Hixie_> 2. we use the data from the global of the method you called (setTimeout in this case) (Chrome, Safari)
- # [23:11] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Ping timeout: 240 seconds)
- # [23:11] <Hixie_> 3. we use the data from the global of the method you passed as a callback (open in this case) (Firefox)
- # [23:12] <Hixie_> 4. we do our own new thing in the interests of sanity
- # [23:12] <heycam> to me, 3 sounds like it is more sensible
- # [23:12] <Hixie_> (btw Chrome and Safari are incompatible for the more common case of passing a script-defined function, so don't put too much in the fact that they agree on this question)
- # [23:12] <heycam> i.e. you look at the thing you will be invoking later
- # [23:12] <Hixie_> #2 and #3 have a problem: do we have a way to determine what "global" any random method is related to?
- # [23:13] <heycam> yes
- # [23:13] <Hixie_> oh excellent
- # [23:13] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [23:13] <heycam> Web IDL says every "initial object" is associated with a particular "global environment"
- # [23:13] <Hixie_> initial object is like the method?
- # [23:13] <Hixie_> what's a "global environment"?
- # [23:13] <heycam> yeah, it's basically all of the objects that exist before you run any scripts
- # [23:13] <heycam> (apart from the ES-defined ones)
- # [23:13] <heycam> "global environment" is something a bit fuzzy
- # [23:13] <Hixie_> so what if someone passes an ES-defined one?
- # [23:14] <Hixie_> like, toString
- # [23:14] <heycam> I guess my definition won't help there… maybe there is one in the ES spec?
- # [23:14] * Quits: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net) (Quit: Leaving.)
- # [23:14] <heycam> not sure if the spec has begun to talk about realms yet or not
- # [23:14] <Hixie_> last i checked, the ES spec didn't acknowledge multiple globals
- # [23:14] <Hixie_> but i may not have checked for a while
- # [23:15] <heycam> http://people.mozilla.org/~jorendorff/es6-draft.html#sec-code-realms
- # [23:15] <heycam> ok so you can go from the toString object to the realm
- # [23:15] <Hixie_> what does the realm give you?
- # [23:15] <heycam> that table of things
- # [23:15] <heycam> including the global object
- # [23:15] <Hixie_> a global, we can use that
- # [23:16] <Hixie_> well if you can get from any random method (script-defined, ES-defined, or WebIDL-defined) to a global, i can do the rest
- # [23:16] * Quits: nimbu1 (~nimbu@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [23:17] * Joins: nimbu (~nimbu@sjfw1-a.adobe.com)
- # [23:17] <heycam> I can
- # [23:17] <Hixie_> ok, cool
- # [23:17] <heycam> whew! finally we can use style=""
- # [23:18] <TabAtkins> heycam: Hm?
- # [23:19] <Hixie_> hmmm... i need to move script origins to the settings object also
- # [23:19] <heycam> TabAtkins, sorry, just being facetious about http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ becoming a Rec
- # [23:19] * Quits: alecf (alecf@nat/google/x-nedftgupiayqceob) (Quit: alecf)
- # [23:19] <TabAtkins> Ah, indeed.
- # [23:22] * Quits: waywk (~waywk4@mail.wlion.com) (Read error: Connection reset by peer)
- # [23:23] * Quits: weinig (~weinig@17.114.218.152) (Quit: weinig)
- # [23:23] * Joins: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net)
- # [23:24] * Quits: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [23:26] * Joins: Smylers (~smylers@host86-128-219-55.range86-128.btcentralplus.com)
- # [23:28] * jorendorff is now known as jorendorff_away
- # [23:29] <Ms2ger> Time to deprecate style=""
- # [23:30] * Quits: Ms2ger (~Ms2ger@47.199-64-87.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # [23:35] * Joins: yoshu (~josh@173-160-239-6-Washington.hfc.comcastbusiness.net)
- # [23:36] * Quits: Areks_home (~Areks@95-26-130-24.broadband.corbina.ru) (Ping timeout: 252 seconds)
- # [23:36] * Joins: ap_ (~ap@17.114.217.172)
- # [23:38] * Quits: yoshu (~josh@173-160-239-6-Washington.hfc.comcastbusiness.net) (Client Quit)
- # [23:39] <Hixie_> i tried
- # [23:39] <Hixie_> people presented... compelling arguments
- # [23:39] <Jasper> i'm sure they did
- # [23:39] * Quits: gerente (~gerente@a89-155-10-201.cpe.netcabo.pt) (Read error: Operation timed out)
- # [23:40] * Quits: ap (~ap@2620:149:4:304:8c0e:259f:68c4:6020) (Ping timeout: 240 seconds)
- # [23:41] * Quits: ap_ (~ap@17.114.217.172) (Ping timeout: 240 seconds)
- # [23:41] * Joins: seventh (seventh@206.222.178.142)
- # [23:43] * Quits: krawchyk (~krawchyk@65.220.49.251)
- # [23:44] * Joins: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com)
- # [23:48] * Joins: gerente (~gerente@a94-133-101-219.cpe.netcabo.pt)
- # [23:49] * Joins: kennyluck (~kennyluck@174.34.185.252)
- # [23:49] * Quits: kennyluck (~kennyluck@174.34.185.252) (Client Quit)
- # [23:49] * Joins: kennyluck (~kennyluck@174.34.185.252)
- # [23:52] * Quits: othermaciej (~mjs@17.114.218.106) (Quit: othermaciej)
- # [23:54] <Hixie_> TabAtkins: dunno if you're the right one to ask, but, are you on board with javascript: being killed in CSS url()s?
- # [23:54] * Quits: lerc (~quassel@121-74-234-24.telstraclear.net) (Read error: Connection reset by peer)
- # [23:54] <TabAtkins> I'm surprised those even work. Do they?
- # [23:54] <TabAtkins> Kill them.
- # [23:54] <Hixie_> probably not
- # [23:54] <Hixie_> ok
- # [23:55] <Hixie_> the plan is to move javascript: to just be a quirk of the navigate algorithm
- # [23:55] * Joins: birtles (~chatzilla@61-121-216-2.bitcat.net)
- # [23:55] <Hixie_> i'm about to make the first move towards that, by removing the concept of scripts having origins, the bulk of which is concerned with defining the origin of javascript: scripts
- # [23:56] * jorendorff_away is now known as jorendorff
- # [23:56] <Hixie_> christ, 1993 matches for "script" in the spec
- # [23:56] <Hixie_> this could take a while
- # [23:57] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # Session Close: Fri Nov 08 00:00:01 2013
The end :)