02:00 | <wanderview_PTO> | yhirano_, annevk: I replied in the issue... I'll be checking mail and stuff in the evenings |
02:08 | wanderview_PTO | goes back to being away... |
07:44 | <Ms2ger> | https://brson.github.io/images/servo-deps.svg |
14:04 | <GPHemsley> | jgraham: Looks like tantek needs to update that post with info from the URL spec |
14:10 | <GPHemsley> | Ms2ger: Aaah! That is scary! |
15:56 | <annevk> | MikeSmith: spam https://www.w3.org/Bugs/Public/show_bug.cgi?id=28620 |
15:56 | <annevk> | GPHemsley: I tried to login to https://twitter.com/mimesniff to update the link to use HTTPS but that failed because I had to confirm some email address of yours |
15:56 | <annevk> | GPHemsley: could you do it? |
15:57 | <GPHemsley> | annevk: Yeah, I got a notification e-mail about that. I'll go ahead. |
15:59 | <GPHemsley> | Twitter likes to take over URLs, but done |
16:22 | <annevk> | GPHemsley: ta |
17:11 | <smaug____> | annevk: just trying to understand why the backwards incompatible change |
17:11 | <smaug____> | without apparently any real good reason |
17:12 | <annevk> | smaug____: I think sicking things we can still make it, it would make this multimap consistent with URLSearchParams and Headers, and it would help make new APIs around <input type=file> more consistent |
17:13 | <smaug____> | ahaa, that is the background |
17:13 | <smaug____> | but it takes out a useful feature from the API |
17:13 | <smaug____> | blob + filename |
17:14 | <annevk> | smaug____: you should use new File for that |
17:14 | <smaug____> | (or one is then forced to use file+blob) |
17:15 | <annevk> | note that blob + filename changes object identity to file in the old API |
17:15 | <smaug____> | object identity? |
17:15 | <smaug____> | how so |
17:15 | <smaug____> | the blob is still blob |
17:16 | <annevk> | but FormData holds a File |
17:16 | <smaug____> | oh, it didn't hold blob+filename |
17:16 | <annevk> | right |
17:16 | <smaug____> | the old API |
17:17 | <annevk> | right |
17:17 | <smaug____> | that sounds like a bug in the API |
17:17 | <smaug____> | but probably doesn't matter much |
17:17 | <annevk> | yeah, that's why we killed it |
17:18 | <smaug____> | well, killing it would mean storing blob + filename |
17:18 | <smaug____> | but now passing blob + filename isn't possible anymore |
17:19 | <annevk> | right, if you want a filename, use File |