Options:
Previous day, Next day
- # Session Start: Fri Dec 19 00:00:00 2014
- # Session Ident: #whatwg
- # [00:00] * Quits: mven (~textual@32.97.110.57) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [00:01] * Joins: weinig (~weinig@17.245.27.106)
- # [00:03] * Quits: saline (~irenacob@li629-190.members.linode.com) (Ping timeout: 245 seconds)
- # [00:03] * Quits: jernoble (~jernoble@17.202.46.221) (Ping timeout: 245 seconds)
- # [00:03] * Quits: Areks (~Areks@rs.gridnine.com) (Ping timeout: 245 seconds)
- # [00:03] * Quits: j_wright (~jwright@unaffiliated/j-wright/x-9145068) (Ping timeout: 245 seconds)
- # [00:06] <jgraham> Domenic: [citation needed] on "that's what js developers expect". testharness.js has at least two places which say "we want to use instanceof here but can't because we don't know which window the object is from"
- # [00:06] <TabAtkins> Read "what js developers expect" as "what [sufficiently enough that we can't break backwards compat] js developers expect"..
- # [00:06] <jgraham> I believe that at least one of those was previously a bug
- # [00:08] <jgraham> TabAtkins: "this is an unfortunate legacy behaviour we can't change" is totally different from "that's what developers expect".
- # [00:08] <TabAtkins> Well, I've come to expect it, at least.
- # [00:08] * Krinkle|detached is now known as Krinkle
- # [00:09] <jgraham> Sure but you have also come to expect document.all. It doesn't mean it's a great ideea
- # [00:09] * Joins: saline (~irenacob@li629-190.members.linode.com)
- # [00:09] * Joins: jacobolus (~jacobolus@2600:1010:b02c:c56a:9dd2:26d7:9e08:f59d)
- # [00:19] * Joins: eric_carlson (~ericc@17.202.49.94)
- # [00:21] * Quits: estellevw (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Going to throw glitter at unicorns)
- # [00:21] <Hixie> http://w3c.github.io/web-animations/ has some messed up MathML stuff
- # [00:21] <Hixie> search for <{
- # [00:21] * Quits: botie (~i-bot@sideshowbarker.net) (Remote host closed the connection)
- # [00:21] * Joins: botie (~i-bot@sideshowbarker.net)
- # [00:21] * birtles_ is now known as birtles
- # [00:22] <birtles> Hixie: I'll look into it
- # [00:22] <birtles> ... but I blame bikeshed already :)
- # [00:25] <birtles> TabAtkins: was there a recent change to bikeshed's handling of mathml?
- # [00:25] <TabAtkins> Shouldn't have been.
- # [00:25] <birtles> my local copy of bikeshed works fine but tip seems to be broken
- # [00:25] <TabAtkins> BUT WHO KNOWS
- # [00:25] <TabAtkins> (I didn't do anything on purpose.)
- # [00:26] <TabAtkins> Ahahaha, I know what happened.
- # [00:26] <TabAtkins> I wrote a custom serializer, and lxml's handling of namespaces is hilariously bad. I'll file an issue and deal with this asap.
- # [00:26] <birtles> TabAtkins: thanks!
- # [00:27] <Hixie> oh man, lxml
- # [00:28] <Hixie> lxml is one of the reasons i dumped anolis :-)
- # [00:29] <MikeSmith> in the python world I'm not sure what practical alternative there is to lxml
- # [00:30] <TabAtkins> There really isn't, particularly since I use CSSSelect. :(
- # [00:31] <MikeSmith> yeah whatever other python things there might be, I think they have worse problems
- # [00:31] <Hixie> yeah, i dumped python for that same reason
- # [00:31] * Quits: eric_carlson (~ericc@17.202.49.94) (Quit: eric_carlson)
- # [00:31] <MikeSmith> baby meet bathwater
- # [00:32] <MikeSmith> python has the advantage of being something a lot of other people have some familiarity with already
- # [00:33] <MikeSmith> and anyway in my experience at least lxml just works pretty well overall. It's got some quirks but again in my experience at least it's not a giant hardship to work around them
- # [00:34] <MikeSmith> I say all this as somebody who's neither really fond of lxml nor python myself
- # [00:34] * Quits: jwalden (~waldo@67.142.235.252) (Quit: brb)
- # [00:35] * MikeSmith goes back to fixing problems with a broken python script for web-platform-tests...
- # [00:36] * Joins: eric_carlson (~ericc@17.202.49.94)
- # [00:40] * Quits: eric_carlson (~ericc@17.202.49.94) (Client Quit)
- # [00:44] <MikeSmith> does chown -r not follow symlinks?
- # [00:45] <Hixie> probably depends on -h ?
- # [00:45] <Hixie> dunno
- # [00:47] <MikeSmith> k
- # [00:48] <MikeSmith> hmm yeah it seems for sure it doesn't
- # [00:48] <MikeSmith> looking the man page and the docs for the -h and -H args
- # [00:49] <MikeSmith> even with -H, "If the -R option is specified, symbolic links on the command line are followed. (Symbolic links encountered in the tree traversal are not followed.)
- # [00:49] <Domenic> any ideas how to do *:not(.example *) in a browser that doesn't support complex selectors inside not?
- # [00:49] <Hixie> MikeSmith: ah well there you go
- # [00:50] <Hixie> Domenic: you want to match all elements that aren't a child of .example?
- # [00:50] <Domenic> Hixie: yep
- # [00:50] <Hixie> Domenic: :not(.example) > *, :not(.example) > * *
- # [00:51] <Hixie> hm, though that won't work
- # [00:51] <Hixie> for descendants
- # [00:51] <TabAtkins> No, can't do it without more constrained tree.
- # [00:51] <TabAtkins> (So that you can explicitly knock everything else out.)
- # [00:51] <TabAtkins> And even then it's terrible.
- # [00:51] <Hixie> Domenic: wait, i don't understand what you want here.
- # [00:51] <Hixie> Domenic: if you just want "not child of .example", then ":not(.example) > *"
- # [00:51] <TabAtkins> All element that aren't inside of a .example.
- # [00:52] <Hixie> is that what :not(.example *) does?
- # [00:52] <Hixie> so it's like the equivalent of my :not(:matches(.example #)) ?
- # [00:52] * Quits: danbri2 (~Adium@74.125.121.33) (Read error: Connection reset by peer)
- # [00:52] <Domenic> I think :not(.example) * might work
- # [00:52] <Domenic> So basically I have this CSS reset `* { box-sizing: border-box; margin: 0; padding: 0; }`
- # [00:53] <Domenic> but I noticed it was also affecting my examples
- # [00:53] <Domenic> which is bad
- # [00:53] * Joins: danbri (~Adium@host86-176-122-84.range86-176.btcentralplus.com)
- # [00:53] <TabAtkins> Domenic: Nope. That selector <.example><foo><div>
- # [00:53] <Hixie> ":not(.example) *" will match... what TabAtkins said
- # [00:53] <TabAtkins> Rather, that selects the <div> there.
- # [00:53] <Domenic> ah
- # [00:53] <TabAtkins> Hell, it'll match <.example><div> as long as <.example> has an ancestor.
- # [00:53] <Hixie> the old fashioned way to do this is:
- # [00:53] <Hixie> * { ... }
- # [00:53] <Hixie> .example * { ... }
- # [00:53] <Domenic> also its specificity is way higher than * so that's causing my own problems
- # [00:53] <Domenic> yeah
- # [00:53] <TabAtkins> It'll only rule out elements which have .example as *all* their ancestors.
- # [00:54] <Domenic> Hixie: yeah I tried that but I can't get the margin/padding to go back to their "defaults"
- # [00:54] <Hixie> well you can hard-code the defaults
- # [00:54] <Hixie> 40px for blockquote margin-left, etc
- # [00:54] * Joins: danbri1 (~Adium@74.125.121.33)
- # [00:54] * Quits: weinig (~weinig@17.245.27.106) (Quit: weinig)
- # [00:55] <Domenic> it may be time to just do a targeted margin: 0/padding: 0 on all the things I am using
- # [00:55] <Domenic> Wish Chrome supported complex :not's
- # [00:56] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 272 seconds)
- # [00:56] * Quits: woebtz (~woebtz@cpe-172-250-93-102.socal.res.rr.com)
- # [00:57] <Domenic> While I'm hear does anyone know what's the deal with `-webkit-margin-before` and friends?
- # [00:57] <TabAtkins> what about them?
- # [00:58] * Quits: danbri (~Adium@host86-176-122-84.range86-176.btcentralplus.com) (Ping timeout: 264 seconds)
- # [00:58] <Domenic> what do they even do, why do they need nonstandard properties
- # [00:58] <TabAtkins> They're like margin-left, but logical directions rather than physical.,
- # [00:58] <TabAtkins> And they're non-standard because we haven't defined logical margins yet.
- # [00:58] <Domenic> logical = related to right-to-left/left-to-right?
- # [00:58] * Quits: frivoal (~frivoal@AMontsouris-552-1-70-200.w92-140.abo.wanadoo.fr) (Remote host closed the connection)
- # [00:58] <heycam> TabAtkins, if you could do that soon it would be good :-)
- # [00:58] <TabAtkins> Yes, direction and writing-mode.
- # [00:58] <heycam> I'm fixing up our logical properties right now
- # [00:59] <TabAtkins> heycam: Yeah, fantasai and I intend to. :/
- # [00:59] <Domenic> cool, thanks
- # [00:59] * Joins: frivoal (~frivoal@AMontsouris-552-1-70-200.w92-140.abo.wanadoo.fr)
- # [00:59] <heycam> TabAtkins, one thing that's not clear from the various mailing list postings is whether logical properties are exposed on a computed style object
- # [01:00] <heycam> TabAtkins, for now I'm assuming that logical properties are on CSS2Properties and so would be
- # [01:01] <TabAtkins> Yeah, they would be, possibly as shorthands.
- # [01:01] * Quits: danbri1 (~Adium@74.125.121.33) (Quit: Leaving.)
- # [01:02] <TabAtkins> (Requires a two-level cascade, so you can cascade direction/writing-mode first, then cascade the logical properties with the physical properties.)
- # [01:02] <heycam> TabAtkins, yeah. the cascading thing is working out well in my patches.
- # [01:03] * Quits: ehsan (~ehsan@24-212-206-173.cable.teksavvy.com) (Quit: Leaving...)
- # [01:03] * Quits: frivoal (~frivoal@AMontsouris-552-1-70-200.w92-140.abo.wanadoo.fr) (Ping timeout: 240 seconds)
- # [01:04] <heycam> TabAtkins, what spec will this be defined in, in case I send in some mails and need to work out what tag to use in the subject?
- # [01:04] * Joins: weinig (~weinig@17.244.0.120)
- # [01:07] * Quits: jsbell (jsbell@nat/google/x-xyzgdcurhxjjerlr) (Quit: There's no place like home...)
- # [01:07] <TabAtkins> heycam: http://dev.w3.org/csswg/css-logical-props/
- # [01:07] <heycam> TabAtkins, cheers, I didn't know about that spe
- # [01:07] <heycam> *spec
- # [01:08] <TabAtkins> Me neither. ^_^ fantasai just reminded me.
- # [01:08] <heycam> :)
- # [01:12] * Quits: bholley (~bholley@c-67-169-151-96.hsd1.ca.comcast.net)
- # [01:13] * Quits: espadrine (~ttyl@dan75-7-88-166-187-54.fbx.proxad.net) (Ping timeout: 250 seconds)
- # [01:15] <MikeSmith> TabAtkins: btw please tell CSS people thanks from me for all efforts that have gone into writing mode. And to whoever says writing mode isn't important, please point them at http://www.asahi.com/special/politas/tanikawa/
- # [01:15] <MikeSmith> that's a poem that was published a week ago in the online version of one of Japan's biggest newspapers
- # [01:16] <MikeSmith> by Japan's most famous living poet
- # [01:16] <Hixie> you're making it hard for me to argue against <poem> and company
- # [01:16] <MikeSmith> (it's a nice poem too -- topical, about the national election that happened here last week)
- # [01:16] <MikeSmith> heh
- # [01:16] <MikeSmith> Hixie: I'd love to have <poem> personally
- # [01:17] <Hixie> :-)
- # [01:17] <MikeSmith> definitely much more than I love <article>
- # [01:18] <MikeSmith> anyway, the source for that online-newspaper poem uses writing-mode: vertical-rl, with some scripted fallback for browsers that don't yet support it
- # [01:21] <MikeSmith> and while I admire the engineering that went into the code for the fallback, it's horrible stuff that no web dev should rightly ever have to do just to get a poem layed out on the Web in the same simple way the poet has layed out every single poem he's ever published anywhere else
- # [01:22] * Quits: darobin (~darobin@159.180.228.142) (Remote host closed the connection)
- # [01:22] <MikeSmith> the DOM of the fallback case ends up putting every single character of the poem into a span and then rotating each character
- # [01:25] <MikeSmith> anyway while realize almost no other part of the world needs writing-mode: vertical-rl support, it really is massively useful for users in Japan. To be able to do very simple things like read a poem in the way they the writer intended it to be read, and in the way that Japanese users are used to reading them
- # [01:25] * MikeSmith goes back to fixing python
- # [01:29] <TabAtkins> Thank fantasai and kojiishi. ^_^
- # [01:29] <TabAtkins> heycam: Btw, the logical-prop spec is half-copypasted and half-inconsistent (you can decide which half for each part).
- # [01:29] * Joins: fantasai (fantasai@freenet6.org)
- # [01:30] <fantasai> heycam: It was pulled from a 2010 appendix of writing modes and only half updated
- # [01:30] <fantasai> heycam: It's on the to-do list
- # [01:30] <heycam> TabAtkins, fantasai, ok I will take it with a pitcher of salt
- # [01:30] <fantasai> heycam: to finish updating and publish it fpwd
- # [01:30] <fantasai> yes, thanks :)
- # [01:30] <heycam> :)
- # [01:31] <fantasai> heycam: names will be matched up to the latest writing modes ED and WG resolutions to use block-start/inline-start/start etc.
- # [01:31] <fantasai> heycam: and we'll get a nice shorthand like margin-block/margin-inline in addition to margin-inline-start etc.
- # [01:31] <heycam> fantasai, oh cool, I did wonder about something like margin-block/margin-inline
- # [01:31] * Quits: thinkxl (~thinkxl@2601:e:2980:cb00:1a9:f9a1:1e45:ff30) (Ping timeout: 258 seconds)
- # [01:31] <fantasai> heycam: yeah, it fell out of the new naming scheme :)
- # [01:31] * fantasai happy about that
- # [01:32] <fantasai> heycam: Still uncertain exactly how the interlocked cascade will work, but, that's the way for ward wrt syntax
- # [01:32] <heycam> fantasai, would "margin-block" take 2 values?
- # [01:32] <fantasai> yes
- # [01:32] <heycam> ok
- # [01:33] <fantasai> heycam: thing I'm particularly unsure of is the values that 'float' would take :/
- # [01:33] <heycam> fantasai, inline-start/inline-end?
- # [01:34] <fantasai> anyway, feel free to ping me with questions. I probably won't get around to editing that up until I get through some of the more urgent stuff ^_^
- # [01:34] <heycam> (fantasai, which presumably would also get converted to left/right/top/bottom at cascade time?)
- # [01:34] <fantasai> heycam: Yeah, I'm not sure. text-align takes start/end
- # [01:34] <fantasai> heycam: float is weird
- # [01:34] <fantasai> heycam: because CSS1/2 floats are single-axis
- # [01:34] <heycam> fantasai, I guess it's weird partly because float:top is not analagous to float:left
- # [01:35] <fantasai> heycam: but theoretically (and howcome proposes this) it can be 2D
- # [01:35] <fantasai> heycam: right
- # [01:35] <fantasai> heycam: For 1D properties like text-align, we have start/end/left/right
- # [01:35] <fantasai> heycam: which map to inline-start/inline-end/line-left/line-right
- # [01:36] <fantasai> heycam: the logical properties (as opposed to values) have less of this confusing issue though :)
- # [01:36] <fantasai> heycam: so if that's what you're working on, it's less unclear what's supposed to happen
- # [01:36] <heycam> fantasai, no I'm just working on the properties. all the rest I'll leave to jkew/smontagu. :)
- # [01:37] <heycam> fantasai, anyway will email and further questions that arise; but mostly it's "just working"
- # [01:37] <Domenic> Anyone know what 1__qem in Blink is?
- # [01:38] <fantasai> heycam: cool. If you figure out how the cascade is working, let me know, I haven't quite written that section yet ;)
- # [01:38] <fantasai> heycam: also, don't you want to map physical to logical in the style data, not the other way around?
- # [01:38] <fantasai> heycam: since, iirc, the layout engine is doing layout in logical coords
- # [01:38] <TabAtkins> Domenic: __qem is a bizarro unit used solelky to implement a table margin quirk, or something like that.
- # [01:38] <TabAtkins> It's equal to em, except when it's not.
- # [01:38] <heycam> fantasai, I thought it was the other way around, we're storing things physically
- # [01:38] <Domenic> TabAtkins: funnn
- # [01:38] <TabAtkins> qem = "quirky em"
- # [01:38] <heycam> fantasai, otoh I'm not touching layout code, so maybe I'm out of date
- # [01:39] <TabAtkins> Ignore, it's dumb bullshit that nobody else does, so we don't actually need it, but nobody's removed it yet.
- # [01:39] <fantasai> heycam: well, we didn't have logical anything until recently
- # [01:39] <heycam> right
- # [01:39] <fantasai> heycam: I think the plan was, store the iframe data in physical coords (good for painting), but convert to logical coords for reflow
- # [01:39] <heycam> fantasai, I'm not sure where style data fits in those two parts
- # [01:39] <fantasai> heycam: So, unsure what style data should be recorded in. But might want to check with smontagu/jkew/dbaron
- # [01:40] <fantasai> heycam: about what's best
- # [01:40] <heycam> fantasai, probably the former
- # [01:40] <heycam> fantasai, anyway, it's easily switched if that works out easier
- # [01:40] <fantasai> fair enough :)
- # [01:40] <fantasai> have fun~ :P
- # [01:41] * fantasai is pretty sure it is more fun that orthogonal flow calculations
- # [01:41] <fantasai> which still make me dizzy
- # [01:42] <heycam> heh yes I'm sure it would be :p
- # [01:47] * Quits: jacobolus (~jacobolus@2600:1010:b02c:c56a:9dd2:26d7:9e08:f59d) (Remote host closed the connection)
- # [01:51] * Joins: bholley (~bholley@c-67-169-151-96.hsd1.ca.comcast.net)
- # [02:06] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [02:07] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [02:08] * Joins: jacobolu_ (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [02:08] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [02:09] <roc> I think we should carry on storing the style data as physical values for now.
- # [02:11] <dbaron> agreed
- # [02:14] * Quits: jacobolu_ (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [02:28] * Quits: weinig (~weinig@17.244.0.120) (Quit: weinig)
- # [02:30] * heycam is now known as heycam|away
- # [02:33] * Quits: plutoniix (~plutoniix@node-1e1e.pool-101-108.dynamic.totbb.net) (Ping timeout: 258 seconds)
- # [02:39] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 264 seconds)
- # [02:40] * Joins: plutoniix (~plutoniix@node-kxd.pool-101-108.dynamic.totbb.net)
- # [02:42] * Joins: tripu (~tripu@p28176-ipngn8101marunouchi.tokyo.ocn.ne.jp)
- # [02:53] <MikeSmith> Domenic: weird, clicking your <custom-blockquote> etc. links in my Chromium-built-from-trunk doesn't work
- # [02:53] * MikeSmith rebuilds
- # [02:53] <TabAtkins> Interestingly, we do layout in logical space in Chrome/WebKit.
- # [02:53] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [02:53] <Domenic> MikeSmith: weird indeed, hmmm. You can just scroll to it also
- # [02:54] * Quits: bnicholson (~bnicholso@corp.mtv2.mozilla.com) (Quit: This computer has gone to sleep)
- # [02:56] <fantasai> TabAtkins: Yeah, that's because you implementd writing modes
- # [02:57] <fantasai> TabAtkins: IIRC that was part of the changes that went into the implementation
- # [03:04] * Quits: dbaron (~dbaron@2620:101:80fb:224:7c9e:ecfc:aefa:66d7) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [03:11] * Joins: bnicholson (~bnicholso@24.130.60.241)
- # [03:13] * Joins: mven (~textual@72.183.104.138)
- # [03:14] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [03:16] * Quits: mven (~textual@72.183.104.138) (Client Quit)
- # [03:19] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [03:21] * Joins: satazor (~satazor@102.99.136.95.rev.vodafone.pt)
- # [03:21] * Joins: circ-user-yfU3J (~circuser-@2601:a:2d01:3808:65bc:b2e3:80d8:2d2b)
- # [03:24] * Quits: circ-user-yfU3J (~circuser-@2601:a:2d01:3808:65bc:b2e3:80d8:2d2b) (Quit: circ-user-yfU3J)
- # [03:31] * Joins: circ-user-nx7Qb (~circuser-@2601:a:2d01:3808:65bc:b2e3:80d8:2d2b)
- # [03:35] * Joins: mven (~textual@72.183.104.138)
- # [03:37] * circ-user-nx7Qb is now known as wolfie_
- # [03:40] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Quit: Leaving)
- # [03:41] * Joins: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [03:42] * Quits: yutak (~yutak@2401:fa00:4:1000:30fb:9f51:5d43:26d1) (Quit: Ex-Chat)
- # [03:52] * Quits: wolfie_ (~circuser-@2601:a:2d01:3808:65bc:b2e3:80d8:2d2b) (Ping timeout: 258 seconds)
- # [03:53] * heycam|away is now known as heycam
- # [04:06] * Joins: hallvors (uid23371@gateway/web/irccloud.com/x-zznewkblcqheodja)
- # [04:06] * Quits: newbie34 (~Areks@rs.gridnine.com) (Ping timeout: 250 seconds)
- # [04:10] * MikeSmith sees something called Surface Worker in the blink sources, prays its just some internal thing
- # [04:13] <MikeSmith> and now wondering why I'm not allowed to view https://code.google.com/p/chromium/issues/detail?id=434226
- # [04:15] * MikeSmith discovers GuestView
- # [04:15] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [04:15] * Joins: jwalden (~waldo@c-68-60-39-249.hsd1.mi.comcast.net)
- # [04:16] <MikeSmith> "manage a guestview from javascript".. I guess (hope) this is all just extensions stuff
- # [04:17] * Krinkle is now known as Krinkle|detached
- # [04:19] * Krinkle|detached is now known as Krinkle
- # [04:19] * Parts: AKPWD (~AKP@are.you.daft.akpwebdesign.com) ("じゃね。")
- # [04:20] * Quits: tantek (~tantek@70-36-197-247.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
- # [04:20] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 272 seconds)
- # [04:20] * Quits: igoroliveira (uid20755@gateway/web/irccloud.com/x-exahrrsqjxuwqtii) (Quit: Connection closed for inactivity)
- # [04:21] <MikeSmith> hah :) https://code.google.com/p/chromium/issues/detail?id=431002
- # [04:21] <MikeSmith> What steps will reproduce the problem?
- # [04:21] <MikeSmith> 1. Look at web_view.js
- # [04:21] <MikeSmith> 2. Gasp at the amount of code that is repeated, unnecessarily complex, and/or dead/unused.
- # [04:23] <MikeSmith> https://docs.google.com/document/d/1naxaMvhHbD_Rdr6o8hBdaAJczhpL8INkoglQw5TGcNk/edit#heading=h.5ce1bdjz6hrc
- # [04:23] <MikeSmith> "WTFrame: An Outrageous Web Threading Model"
- # [04:24] <MikeSmith> <worker-thread-frame src="foo.html" width=x height=y>
- # [04:25] <MikeSmith> I assumed this is probably already been discussed somewhere in the thousands of mailing-list messages in my inbox I'm behind on reading
- # [04:26] * Joins: yutak (~yutak@2401:fa00:4:1000:d84:c7e5:c406:a23c)
- # [04:29] <MikeSmith> wondering how this different than http://benfrancis.github.io/webview/
- # [04:30] * Quits: satazor (~satazor@102.99.136.95.rev.vodafone.pt)
- # [04:32] * Joins: Mso150 (~ctlM@80.83.239.71)
- # [04:39] * heycam is now known as heycam|away
- # [04:42] * Quits: mven (~textual@72.183.104.138) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [04:50] * Quits: Mso150 (~ctlM@80.83.239.71) (Ping timeout: 245 seconds)
- # [05:05] * Quits: bholley (~bholley@c-67-169-151-96.hsd1.ca.comcast.net)
- # [05:06] * Quits: jwalden (~waldo@c-68-60-39-249.hsd1.mi.comcast.net) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 32.0/20140902134853])
- # [05:09] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [05:09] * Joins: kapil__ (uid36151@gateway/web/irccloud.com/x-xcukwwywtxqoslef)
- # [05:12] * heycam|away is now known as heycam
- # [05:13] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 255 seconds)
- # [05:14] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [05:19] * Joins: eric_carlson (~ericc@24.6.239.9)
- # [05:57] * Joins: newbie (~Areks@rs.gridnine.com)
- # [05:57] * newbie is now known as Guest63551
- # [05:59] * Quits: Garbee (uid21171@gateway/web/irccloud.com/x-cgyqxpaomrwcqqzd) (Quit: Connection closed for inactivity)
- # [06:31] <MikeSmith> Hixie: https://rawgit.com/secretGeek/console-adventure/master/console.html
- # [06:34] * Joins: BigBangUDR (~Thunderbi@103.249.181.147)
- # [06:37] * Joins: Una (~Una@cpe-70-117-78-235.austin.res.rr.com)
- # [06:39] * Quits: eric_carlson (~ericc@24.6.239.9) (Quit: eric_carlson)
- # [06:40] * Joins: eric_carlson (~ericc@24.6.239.9)
- # [06:49] * Quits: rniwa (~rniwa@17.202.43.222) (Quit: rniwa)
- # [07:07] * Quits: eric_carlson (~ericc@24.6.239.9) (Quit: eric_carlson)
- # [07:08] * Quits: jyasskin (jyasskin@nat/google/x-frqfzlompkwnhyvj) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [07:12] * Quits: Una (~Una@cpe-70-117-78-235.austin.res.rr.com) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [07:13] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [07:14] * Quits: yutak (~yutak@2401:fa00:4:1000:d84:c7e5:c406:a23c) (Quit: Ex-Chat)
- # [07:26] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [07:28] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [07:31] * Joins: markkes2 (~markkes@62.207.90.201)
- # [07:32] * Quits: markkes (~markkes@62.207.90.201) (Ping timeout: 258 seconds)
- # [07:32] * heycam is now known as heycam|away
- # [07:44] * Joins: jyasskin (~jyasskin@173-228-80-34.dsl.static.fusionbroadband.com)
- # [07:52] * Joins: tantek (~tantek@70-36-197-247.dsl.dynamic.fusionbroadband.com)
- # [07:55] * Quits: hexburn3r (~FrlLaus@dumbinter.net) (Ping timeout: 264 seconds)
- # [07:57] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [07:57] <zcorpan> TabAtkins: which quirk?
- # [08:00] * Joins: hexburn3r (~FrlLaus@dumbinter.net)
- # [08:01] * Joins: weinig (~weinig@98.234.191.242)
- # [08:11] * Quits: kapil__ (uid36151@gateway/web/irccloud.com/x-xcukwwywtxqoslef) (Quit: Connection closed for inactivity)
- # [08:19] * Joins: danbri (~Adium@host86-176-122-84.range86-176.btcentralplus.com)
- # [08:19] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [08:20] * Joins: danbri1 (~Adium@74.125.121.33)
- # [08:21] * Joins: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [08:22] * Joins: zdobersek (~zan@46.166.186.221)
- # [08:22] * Joins: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [08:23] * Quits: danbri (~Adium@host86-176-122-84.range86-176.btcentralplus.com) (Ping timeout: 264 seconds)
- # [08:28] * Joins: danbri (~Adium@host86-176-122-84.range86-176.btcentralplus.com)
- # [08:30] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [08:32] * Quits: danbri1 (~Adium@74.125.121.33) (Ping timeout: 272 seconds)
- # [08:34] * Quits: BigBangUDR (~Thunderbi@103.249.181.147) (Quit: BigBangUDR)
- # [08:42] * Joins: kapil__ (uid36151@gateway/web/irccloud.com/x-vpeyimpxylruqwhu)
- # [08:43] * Quits: zdobersek (~zan@46.166.186.221) (Quit: Leaving.)
- # [08:55] * Joins: zdobersek (~zan@109.201.154.148)
- # [08:57] * Joins: zcorpan_ (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [09:00] * Joins: cbr (~cbr@145.36.150.83.chzhher77.rootnet.ch)
- # [09:01] * Quits: mpt (~mpt@canonical/mpt) (Remote host closed the connection)
- # [09:04] * Joins: mpt (~mpt@canonical/mpt)
- # [09:10] * Joins: rego (~rego@66.193.27.77.dynamic.mundo-r.com)
- # [09:13] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 258 seconds)
- # [09:15] * Quits: jyasskin (~jyasskin@173-228-80-34.dsl.static.fusionbroadband.com) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [09:16] * Quits: roc (~chatzilla@2001:cb0:b202:232:2677:3ff:fece:dc64) (Ping timeout: 265 seconds)
- # [09:19] * Joins: estellevw (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
- # [09:22] <zcorpan_> TabAtkins: oh it's https://html.spec.whatwg.org/multipage/rendering.html#margin-collapsing-quirks
- # [09:23] <zcorpan_> except not conforming to the spec
- # [09:23] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [09:24] * Joins: danbri1 (~Adium@host86-176-122-84.range86-176.btcentralplus.com)
- # [09:28] * Joins: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl)
- # [09:28] * Joins: frivoal (~frivoal@AMontsouris-552-1-70-200.w92-140.abo.wanadoo.fr)
- # [09:28] * Quits: danbri (~Adium@host86-176-122-84.range86-176.btcentralplus.com) (Ping timeout: 264 seconds)
- # [09:33] <zcorpan_> TabAtkins: btw iirc font-family only allows strings and idents, not numbers or dimensions. although we considered changing it at some point
- # [09:34] * Joins: suspicious_ee (~laite@193.184.6.118)
- # [09:39] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [09:42] * Joins: Mso150 (~ctlM@80.83.238.33)
- # [09:42] * Quits: sarri (~sari@unaffiliated/sarri) (Ping timeout: 245 seconds)
- # [09:44] * Joins: sarri (~sari@unaffiliated/sarri)
- # [09:46] * Guest63551 is now known as Areks
- # [09:58] * Joins: darobin (~darobin@159.180.228.142)
- # [10:00] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [10:00] * Joins: hasather (~hasather@80.91.33.141)
- # [10:04] <foolip> annevk: I replied with a guess
- # [10:04] * Joins: Ms2ger (~Ms2ger@91.182.16.148)
- # [10:06] <annevk> Domenic: https://github.com/domenic/html-as-custom-elements/issues/35 another idea was to use Symbols so we would maybe support these kind of callbacks for "normal" elements too down the road
- # [10:09] * Joins: jsx (uid48919@fsf/intern/jsx)
- # [10:21] * Joins: iandevlin (~iandevlin@dslb-178-009-082-255.178.009.pools.vodafone-ip.de)
- # [10:22] * Quits: tantek (~tantek@70-36-197-247.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
- # [10:22] * Quits: estellevw (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Snuggling with the puppies)
- # [10:24] <foolip> annevk: I don't understand https://www.w3.org/Bugs/Public/show_bug.cgi?id=27294#c24
- # [10:25] <foolip> are you saying that selectors won't match in non-HTML, non-SVG namespaces, that getElementById doesn't work, or something like that?
- # [10:28] <foolip> I tested, both getElementById and querySelector seems to find these Elements when they have class="" and id="" attributes
- # [10:32] * Krinkle is now known as Krinkle|detached
- # [10:33] * Quits: frivoal (~frivoal@AMontsouris-552-1-70-200.w92-140.abo.wanadoo.fr) (Remote host closed the connection)
- # [10:38] * Quits: hdv (sid2376@gateway/web/irccloud.com/x-ohaxerwmfzqyrwwh) (Excess Flood)
- # [10:39] * Joins: hdv (sid2376@gateway/web/irccloud.com/x-njaslvicsrypjbya)
- # [10:39] <annevk> foolip: oh sorry
- # [10:40] <zcorpan_> i wonder if DTD ID has been dropped by anyone yet
- # [10:41] <annevk> data:text/xml,<x id="test"><script xmlns="http://www.w3.org/1999/xhtml">alert(document.getElementById("test"))</script><style xmlns="http://www.w3.org/1999/xhtml">%23test {background:lime } </style></x>
- # [10:41] <annevk> I wonder when that happened
- # [10:42] <annevk> For some reason that URL causes infinite loading in Chrome
- # [10:44] <Ms2ger> zcorpan_, I believe I did for Gecko
- # [10:48] <zcorpan_> w00t http://software.hixie.ch/utilities/js/live-dom-viewer/saved/3343
- # [10:50] <zcorpan_> the %23y should be %23z but anyway, looks like it has been dropped by gecko/webkit/blink
- # [10:50] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [10:50] <zcorpan_> scary that i still know how to write an internal subset :-(
- # [10:51] <zcorpan_> stupid brain
- # [10:53] * Quits: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl) (Read error: Connection reset by peer)
- # [10:54] * Joins: wilsonpage (~wilsonpag@2001:450:1d:224:a0e1:315b:f444:3b5b)
- # [10:54] * Joins: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl)
- # [10:54] * Quits: wilsonpage (~wilsonpag@2001:450:1d:224:a0e1:315b:f444:3b5b) (Client Quit)
- # [10:54] * Joins: wilsonpage (~wilsonpag@2001:450:1d:224:a0e1:315b:f444:3b5b)
- # [10:56] * Quits: danbri1 (~Adium@host86-176-122-84.range86-176.btcentralplus.com) (Ping timeout: 255 seconds)
- # [10:56] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [10:57] * Joins: danbri (~Adium@host86-191-30-146.range86-191.btcentralplus.com)
- # [10:57] * Joins: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [11:01] <SteveF_> Hixie: note the HTML feature to ARIA http://rawgit.com/w3c/aria/master/html-aam/html-aam.html#mapping-to-existing-wai-aria-role-semantics and acc API mappings are now in http://rawgit.com/w3c/aria/master/html-aam/html-aam.html, and is what implementers are using, plan on pulling plug on w3c html WAI-ARIA section. The conformance requirements for use of ARIA and checking tool implementation...
- # [11:01] <SteveF_> ...is moving here https://specs.webplatform.org/html-aria/webspecs/master/ (note very ealry draft needs work) - MikeSmith is moving to use that for his checker implementations
- # [11:03] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [11:10] * Joins: espadrine (~ttyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr)
- # [11:17] * Quits: espadrine (~ttyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr) (Ping timeout: 250 seconds)
- # [11:25] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [11:36] * Quits: danbri (~Adium@host86-191-30-146.range86-191.btcentralplus.com) (Quit: Leaving.)
- # [11:38] * Joins: adactio (~adactio@212.42.170.121)
- # [11:44] * Quits: wilsonpage (~wilsonpag@2001:450:1d:224:a0e1:315b:f444:3b5b) (Quit: Leaving.)
- # [11:46] * Quits: laurensclaessen (~laurenscl@81.83.22.74) (Remote host closed the connection)
- # [11:49] * Joins: wilsonpage (~wilsonpag@2001:450:1d:224:593f:723b:ce1e:d0a3)
- # [11:50] * Quits: wilsonpage (~wilsonpag@2001:450:1d:224:593f:723b:ce1e:d0a3) (Client Quit)
- # [11:50] * Joins: wilsonpage1 (~wilsonpag@2001:450:1d:224:593f:723b:ce1e:d0a3)
- # [11:52] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [11:52] * Joins: frivoal (~frivoal@AMontsouris-552-1-70-200.w92-140.abo.wanadoo.fr)
- # [11:55] * Joins: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [11:57] * Quits: Mso150 (~ctlM@80.83.238.33) (Ping timeout: 240 seconds)
- # [12:01] * Quits: wilsonpage1 (~wilsonpag@2001:450:1d:224:593f:723b:ce1e:d0a3) (Quit: Leaving.)
- # [12:02] * Joins: wilsonpage (~wilsonpag@2001:450:1d:224:593f:723b:ce1e:d0a3)
- # [12:05] * Quits: frivoal (~frivoal@AMontsouris-552-1-70-200.w92-140.abo.wanadoo.fr) (Remote host closed the connection)
- # [12:15] * Joins: BigBangUDR (~Thunderbi@103.249.181.147)
- # [12:27] * Quits: wilsonpage (~wilsonpag@2001:450:1d:224:593f:723b:ce1e:d0a3) (Quit: Leaving.)
- # [12:27] * Quits: ^esc (~esc-ape@91.141.3.195.wireless.dyn.drei.com) (Ping timeout: 250 seconds)
- # [12:33] * Joins: abinader (sid21713@gateway/web/irccloud.com/x-afvyrgzkstfmozwe)
- # [12:40] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 264 seconds)
- # [12:41] * Joins: wilsonpage (~wilsonpag@2001:450:1d:224:75fa:cb25:952:5bb9)
- # [12:46] * Quits: wilsonpage (~wilsonpag@2001:450:1d:224:75fa:cb25:952:5bb9) (Quit: Leaving.)
- # [12:57] * Joins: wilsonpage (~wilsonpag@207.218.72.65)
- # [13:05] * Quits: zcorpan_ (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [13:05] * Joins: frivoal (~frivoal@AMontsouris-552-1-70-200.w92-140.abo.wanadoo.fr)
- # [13:07] * Quits: laurensclaessen (~laurenscl@81.83.22.74) (Remote host closed the connection)
- # [13:11] * Quits: frivoal (~frivoal@AMontsouris-552-1-70-200.w92-140.abo.wanadoo.fr) (Ping timeout: 244 seconds)
- # [13:12] * Joins: wilsonpage1 (~wilsonpag@2001:450:1d:232:c0f0:d0c2:9bfd:933f)
- # [13:13] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [13:14] * Quits: wilsonpage (~wilsonpag@207.218.72.65) (Ping timeout: 250 seconds)
- # [13:17] * Joins: hemanth (~hemanth@122.167.123.113)
- # [13:22] * Quits: wilsonpage1 (~wilsonpag@2001:450:1d:232:c0f0:d0c2:9bfd:933f) (Quit: Leaving.)
- # [13:27] * Quits: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl) (Remote host closed the connection)
- # [13:33] * Joins: wilsonpage (~wilsonpag@2001:450:1d:232:6929:dc4d:5a67:d612)
- # [13:35] * Joins: wilsonpage1 (~wilsonpag@2001:450:1d:224:45ad:2d7:8010:2acd)
- # [13:39] * Quits: wilsonpage (~wilsonpag@2001:450:1d:232:6929:dc4d:5a67:d612) (Ping timeout: 244 seconds)
- # [13:43] * Quits: gavin (~gavin@firefox/developer/gavin) (Remote host closed the connection)
- # [13:44] * Joins: gavin (~gavin@people1.scl3.mozilla.com)
- # [13:44] * Quits: gavin (~gavin@people1.scl3.mozilla.com) (Changing host)
- # [13:44] * Joins: gavin (~gavin@firefox/developer/gavin)
- # [13:58] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [14:01] * Joins: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [14:03] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [14:04] * Quits: laurensclaessen (~laurenscl@81.83.22.74) (Remote host closed the connection)
- # [14:04] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [14:05] * Quits: jahman (~woops@129.175.204.73) (Remote host closed the connection)
- # [14:09] * Joins: danbri (~Adium@host86-191-30-146.range86-191.btcentralplus.com)
- # [14:10] * Quits: psy_ (~psy@103.6.159.170) (Read error: Connection reset by peer)
- # [14:12] * Quits: hasather (~hasather@80.91.33.141) (Quit: Leaving...)
- # [14:14] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [14:17] * Joins: Garbee (uid21171@gateway/web/irccloud.com/x-nbomuwtbzkjcmivc)
- # [14:19] * Quits: hgl (~hgl@unaffiliated/hgl) (Ping timeout: 264 seconds)
- # [14:20] * Joins: hgl (~hgl@unaffiliated/hgl)
- # [14:20] * Joins: jahman (~woops@129.175.204.73)
- # [14:27] * Quits: laurensclaessen (~laurenscl@81.83.22.74) (Remote host closed the connection)
- # [14:29] * Quits: markkes2 (~markkes@62.207.90.201) (Ping timeout: 258 seconds)
- # [14:34] * Joins: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl)
- # [14:35] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [14:36] * Joins: danbri1 (~Adium@host86-191-30-146.range86-191.btcentralplus.com)
- # [14:36] * Joins: wilsonpage (~wilsonpag@2001:450:1d:232:a027:f131:b613:65e8)
- # [14:37] * Joins: markkes (~markkes@62.207.90.201)
- # [14:37] * Quits: mpt (~mpt@canonical/mpt) (Quit: Ex-Chat)
- # [14:37] * Quits: wilsonpage1 (~wilsonpag@2001:450:1d:224:45ad:2d7:8010:2acd) (Ping timeout: 244 seconds)
- # [14:39] * Quits: danbri (~Adium@host86-191-30-146.range86-191.btcentralplus.com) (Ping timeout: 244 seconds)
- # [14:40] * Quits: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl) (Ping timeout: 256 seconds)
- # [14:41] * Quits: kapil__ (uid36151@gateway/web/irccloud.com/x-vpeyimpxylruqwhu) (Quit: Connection closed for inactivity)
- # [14:46] * Quits: BigBangUDR (~Thunderbi@103.249.181.147) (Quit: BigBangUDR)
- # [14:51] * Quits: hemanth (~hemanth@122.167.123.113) (Quit: This computer has gone to sleep)
- # [14:55] <SteveF_> is https://developers.whatwg.org/ being maintained or is it stale?
- # [14:55] <SteveF_> can't find any date on it
- # [14:56] * Joins: hemanth (~hemanth@122.167.123.113)
- # [14:57] * Joins: kapil__ (uid36151@gateway/web/irccloud.com/x-biryzjdrpqyakvee)
- # [14:59] <Ms2ger> Staleish, I think
- # [15:01] * Quits: karlcow (~karl@nerval.la-grange.net) (Ping timeout: 245 seconds)
- # [15:06] <SteveF_> Ms2ger: thanks
- # [15:06] * Joins: danbri (~Adium@host86-191-30-146.range86-191.btcentralplus.com)
- # [15:09] * Quits: danbri1 (~Adium@host86-191-30-146.range86-191.btcentralplus.com) (Ping timeout: 265 seconds)
- # [15:10] * Joins: boogyman (~boogyman@38.88.11.131)
- # [15:10] * Quits: boogyman (~boogyman@38.88.11.131) (Changing host)
- # [15:10] * Joins: boogyman (~boogyman@pdpc/supporter/professional/boogyman)
- # [15:17] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [15:20] * Joins: espadrine (~ttyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr)
- # [15:20] * Joins: TallTed (~Thud@63.119.36.36)
- # [15:20] * Joins: igoroliveira (uid20755@gateway/web/irccloud.com/x-zpjyyljryxmwxakk)
- # [15:21] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [15:32] * Quits: espadrine (~ttyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr) (Ping timeout: 256 seconds)
- # [15:36] * Joins: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl)
- # [15:40] * Quits: hemanth (~hemanth@122.167.123.113) (Quit: This computer has gone to sleep)
- # [15:41] * Quits: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl) (Ping timeout: 264 seconds)
- # [15:46] * Joins: hemanth (~hemanth@122.167.123.113)
- # [15:46] * Joins: espadrine (~ttyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr)
- # [15:48] * Quits: suspicious_ee (~laite@193.184.6.118) (Quit: WeeChat 0.4.2)
- # [15:49] * Quits: hgl (~hgl@unaffiliated/hgl) (Ping timeout: 264 seconds)
- # [15:49] * Joins: hgl (~hgl@unaffiliated/hgl)
- # [15:52] * Quits: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 255 seconds)
- # [15:54] * Quits: Ducki (~Ducki@191.233.66.1) (Quit: Leaving)
- # [15:54] <ondras> q
- # [15:54] <ondras> oops.
- # [15:56] * Joins: smaug_____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [15:59] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 250 seconds)
- # [15:59] * smaug_____ is now known as smaug____
- # [16:00] * Quits: hgl (~hgl@unaffiliated/hgl) (Ping timeout: 265 seconds)
- # [16:02] * Quits: markkes (~markkes@62.207.90.201) (Quit: markkes)
- # [16:02] * Joins: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [16:02] * Joins: hgl (~hgl@unaffiliated/hgl)
- # [16:07] * Joins: BigBangUDR (~Thunderbi@101.63.29.125)
- # [16:07] * Quits: BigBangUDR (~Thunderbi@101.63.29.125) (Client Quit)
- # [16:10] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [16:12] * Joins: Una (~Una@32.97.110.56)
- # [16:17] * Joins: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [16:18] * Quits: ricea (~ricea@2401:fa00:4:1000:403a:9102:dd22:1704) (Ping timeout: 272 seconds)
- # [16:24] * Joins: encryptd_fractl (~encryptd_@173-31-144-13.client.mchsi.com)
- # [16:24] * Joins: mven (~textual@32.97.110.57)
- # [16:24] * Quits: mven (~textual@32.97.110.57) (Excess Flood)
- # [16:30] * Joins: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl)
- # [16:30] * Joins: ricea (~ricea@2401:fa00:4:1000:8570:67e3:6706:8691)
- # [16:33] * Joins: ^esc (~esc-ape@77.119.130.108.wireless.dyn.drei.com)
- # [16:33] * Quits: Una (~Una@32.97.110.56) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [16:34] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Quit: Reconnecting…)
- # [16:34] * Joins: Una (~Una@32.97.110.56)
- # [16:34] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [16:43] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [16:43] * Quits: encryptd_fractl (~encryptd_@173-31-144-13.client.mchsi.com) (Remote host closed the connection)
- # [16:44] * Quits: danbri (~Adium@host86-191-30-146.range86-191.btcentralplus.com) (Ping timeout: 255 seconds)
- # [16:46] * Joins: ehsan (~ehsan@24-212-206-173.cable.teksavvy.com)
- # [16:46] * Joins: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [16:47] * Joins: encryptd_fractl (~encryptd_@173-31-144-13.client.mchsi.com)
- # [16:51] * Joins: prosper_ (~prosper@user3-87-78.wireless.utoronto.ca)
- # [17:00] * Quits: prosper_ (~prosper@user3-87-78.wireless.utoronto.ca) (Ping timeout: 265 seconds)
- # [17:01] * Quits: kapil__ (uid36151@gateway/web/irccloud.com/x-biryzjdrpqyakvee) (Quit: Connection closed for inactivity)
- # [17:01] * Quits: hemanth (~hemanth@122.167.123.113) (Quit: This computer has gone to sleep)
- # [17:03] * Krinkle|detached is now known as Krinkle
- # [17:04] * Quits: Una (~Una@32.97.110.56) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [17:05] * Joins: Una (~Una@32.97.110.56)
- # [17:07] * Joins: hemanth (~hemanth@122.167.123.113)
- # [17:11] * Quits: Una (~Una@32.97.110.56) (Quit: Textual IRC Client: www.textualapp.com)
- # [17:14] * Joins: Una (~Una@32.97.110.56)
- # [17:16] * Joins: thinkxl (~thinkxl@74-95-237-22-Houston.hfc.comcastbusiness.net)
- # [17:17] * Quits: karlcow (~karl@nerval.la-grange.net) (Ping timeout: 255 seconds)
- # [17:17] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [17:21] * Joins: jwalden (~waldo@c-68-60-39-249.hsd1.mi.comcast.net)
- # [17:22] * Joins: jyasskin (~jyasskin@173-228-80-34.dsl.static.fusionbroadband.com)
- # [17:22] * Quits: tripu (~tripu@p28176-ipngn8101marunouchi.tokyo.ocn.ne.jp) (Quit: Leaving)
- # [17:25] * Quits: encryptd_fractl (~encryptd_@173-31-144-13.client.mchsi.com)
- # [17:27] * Quits: cbr (~cbr@145.36.150.83.chzhher77.rootnet.ch) (Quit: cbr)
- # [17:28] * Joins: encryptd_fractl (~encryptd_@173-31-144-13.client.mchsi.com)
- # [17:29] * Quits: hemanth (~hemanth@122.167.123.113) (Quit: This computer has gone to sleep)
- # [17:31] * Joins: hemanth (~hemanth@122.167.123.113)
- # [17:33] * Joins: eric_carlson (~ericc@24.6.239.9)
- # [17:41] * Quits: encryptd_fractl (~encryptd_@173-31-144-13.client.mchsi.com) (Remote host closed the connection)
- # [17:45] * Joins: encryptd_fractl (~encryptd_@173-31-144-13.client.mchsi.com)
- # [17:46] * Quits: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com) (Ping timeout: 240 seconds)
- # [17:48] * Quits: hemanth (~hemanth@122.167.123.113) (Quit: This computer has gone to sleep)
- # [17:48] * Quits: rwaldron (rwaldron@gateway/shell/jquery.com/x-padtkichvxybeebt) (Excess Flood)
- # [17:49] * Joins: rwaldron (rwaldron@gateway/shell/jquery.com/x-ziyythgdcdvpqzjv)
- # [17:49] * Joins: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com)
- # [17:51] * Joins: hemanth (~hemanth@122.167.123.113)
- # [17:53] * Quits: laurensclaessen (~laurenscl@81.83.22.74) (Remote host closed the connection)
- # [18:00] * Joins: calvaris (~calvaris@104.2.116.91.dynamic.mundo-r.com)
- # [18:04] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [18:16] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [18:17] * Quits: iandevlin (~iandevlin@dslb-178-009-082-255.178.009.pools.vodafone-ip.de) (Quit: Nettalk6 - www.ntalk.de)
- # [18:23] * Joins: ambv (~ambv@199.201.64.2)
- # [18:24] * Quits: darobin (~darobin@159.180.228.142) (Remote host closed the connection)
- # [18:30] * Quits: jwalden (~waldo@c-68-60-39-249.hsd1.mi.comcast.net) (Ping timeout: 245 seconds)
- # [18:31] * Joins: dbaron (~dbaron@50-0-248-60.dsl.dynamic.fusionbroadband.com)
- # [18:31] * Quits: ambv (~ambv@199.201.64.2) (Quit: sys.exit(0) # computer went to sleep)
- # [18:34] * Quits: hemanth (~hemanth@122.167.123.113) (Quit: This computer has gone to sleep)
- # [18:37] * Quits: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 240 seconds)
- # [18:42] * Joins: psy (~psy@103.6.159.170)
- # [18:48] * Quits: adactio (~adactio@212.42.170.121) (Quit: adactio)
- # [18:49] * Joins: jwalden (~waldo@50.153.114.134)
- # [18:54] * Quits: laurensclaessen (~laurenscl@81.83.22.74)
- # [18:58] * Joins: frivoal (~frivoal@AMontsouris-552-1-93-101.w92-140.abo.wanadoo.fr)
- # [18:58] * Joins: rubys (~rubys@cpe-098-027-051-253.nc.res.rr.com)
- # [19:00] * Quits: boogyman (~boogyman@pdpc/supporter/professional/boogyman) (Quit: Leaving.)
- # [19:07] * Quits: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl) (Read error: Connection reset by peer)
- # [19:08] * Quits: calvaris (~calvaris@104.2.116.91.dynamic.mundo-r.com) (Quit: Ex-Chat)
- # [19:08] * Joins: danbri1 (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [19:09] * Joins: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl)
- # [19:11] * Quits: hallvors (uid23371@gateway/web/irccloud.com/x-zznewkblcqheodja) (Quit: Connection closed for inactivity)
- # [19:11] * Quits: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Ping timeout: 264 seconds)
- # [19:13] * Quits: psy (~psy@103.6.159.170) (Disconnected by services)
- # [19:13] * Joins: psy_ (~psy@103.6.159.170)
- # [19:17] * Joins: tantek (~tantek@70-36-197-247.dsl.dynamic.fusionbroadband.com)
- # [19:17] * Quits: danbri1 (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Read error: Connection reset by peer)
- # [19:18] * Joins: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [19:24] * Quits: frivoal (~frivoal@AMontsouris-552-1-93-101.w92-140.abo.wanadoo.fr) (Remote host closed the connection)
- # [19:28] * Joins: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [19:32] * Joins: bholley (~bholley@c-67-169-151-96.hsd1.ca.comcast.net)
- # [19:37] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [19:37] * Joins: Mso150 (~ctlM@80.83.238.61)
- # [19:43] * Joins: jsbell (jsbell@nat/google/x-ayufnjdfiiedrpwl)
- # [19:52] * Joins: rniwa (~rniwa@17.202.43.222)
- # [19:54] * Quits: bnicholson (~bnicholso@24.130.60.241) (Quit: This computer has gone to sleep)
- # [19:59] * Quits: jwalden (~waldo@50.153.114.134) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 32.0/20140902134853])
- # [20:00] * Quits: espadrine (~ttyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr) (Ping timeout: 256 seconds)
- # [20:00] * Joins: jwalden (~waldo@50.153.114.134)
- # [20:01] * Quits: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Read error: Connection reset by peer)
- # [20:02] * Quits: encryptd_fractl (~encryptd_@173-31-144-13.client.mchsi.com) (Remote host closed the connection)
- # [20:02] * Joins: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [20:04] * Joins: ehsan_ (~ehsan@24-212-206-173.cable.teksavvy.com)
- # [20:04] * Joins: tav_ (~tav`@host31-52-143-59.range31-52.btcentralplus.com)
- # [20:04] * Joins: wilsonpage1 (~wilsonpag@2001:450:1d:232:a027:f131:b613:65e8)
- # [20:04] * Joins: rniwa_ (~rniwa@17.202.43.222)
- # [20:04] * Joins: bnicholson (~bnicholso@corp.mtv2.mozilla.com)
- # [20:05] * Joins: igoroliveira_ (uid20755@gateway/web/irccloud.com/x-urruruynjwamaaqu)
- # [20:05] * Joins: danbri1 (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [20:06] * Quits: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Read error: Connection reset by peer)
- # [20:06] * Joins: ato_ (sid16069@gateway/web/irccloud.com/x-wxtbiarfvypssunk)
- # [20:06] * Joins: jsx_ (uid48919@fsf/intern/jsx)
- # [20:06] * Joins: cfq_ (sid18398@gateway/web/irccloud.com/x-acotraomgqtwdnkm)
- # [20:06] * Joins: smaug_____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [20:07] * Joins: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [20:07] * Joins: nunnun- (~hiro@2001:200:164:48:20c:29ff:fe02:11d2)
- # [20:08] * Joins: rx (~rx-ident@162.243.230.189)
- # [20:08] * Quits: clamstar (~rx-ident@162.243.230.189) (Ping timeout: 244 seconds)
- # [20:08] * Quits: rniwa (~rniwa@17.202.43.222) (Ping timeout: 244 seconds)
- # [20:08] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 244 seconds)
- # [20:08] * Quits: igoroliveira (uid20755@gateway/web/irccloud.com/x-zpjyyljryxmwxakk) (Ping timeout: 244 seconds)
- # [20:08] * Quits: wilsonpage (~wilsonpag@2001:450:1d:232:a027:f131:b613:65e8) (Ping timeout: 244 seconds)
- # [20:08] * Quits: tav (~tav`@host31-52-143-59.range31-52.btcentralplus.com) (Ping timeout: 244 seconds)
- # [20:08] * Quits: ehsan (~ehsan@24-212-206-173.cable.teksavvy.com) (Ping timeout: 244 seconds)
- # [20:08] * Quits: cfq (sid18398@gateway/web/irccloud.com/x-hgyjrwabpvfberns) (Ping timeout: 244 seconds)
- # [20:08] * Quits: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2) (Ping timeout: 244 seconds)
- # [20:08] * Quits: jsx (uid48919@fsf/intern/jsx) (Ping timeout: 244 seconds)
- # [20:08] * Quits: malcolmva (~malcolmva@c-67-180-198-144.hsd1.ca.comcast.net) (Ping timeout: 244 seconds)
- # [20:08] * Quits: ato (sid16069@gateway/web/irccloud.com/x-ydiwmnkxazbcnitl) (Ping timeout: 244 seconds)
- # [20:08] * rniwa_ is now known as rniwa
- # [20:08] * smaug_____ is now known as smaug____
- # [20:08] * tav_ is now known as tav
- # [20:09] * igoroliveira_ is now known as igoroliveira
- # [20:09] * ato_ is now known as ato
- # [20:09] * jsx_ is now known as jsx
- # [20:09] * ato is now known as Guest84929
- # [20:10] * rx is now known as clamstar
- # [20:10] * cfq_ is now known as cfq
- # [20:11] * Quits: danbri1 (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Ping timeout: 265 seconds)
- # [20:13] * Quits: jwalden (~waldo@50.153.114.134) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 32.0/20140902134853])
- # [20:18] * Joins: asmodai (asmodai@h159072.upc-h.chello.nl)
- # [20:18] * Joins: malcolmva (~malcolmva@c-67-180-198-144.hsd1.ca.comcast.net)
- # [20:20] * Quits: ashemedai (asmodai@freebsd/developer/asmodai) (Ping timeout: 250 seconds)
- # [20:20] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [20:21] * Joins: roc (~chatzilla@121-99-136-126.bng1.tvc.orcon.net.nz)
- # [20:21] * Quits: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 258 seconds)
- # [20:27] <Krinkle> Looks like the "disabled" attribute on <link rel=stylesheet> is non-standard (Chrome implements it, Firefox does not)
- # [20:27] <Krinkle> They both implement (per standard) the DOM object property though.
- # [20:27] <Krinkle> Any chance of adding that to the standard?
- # [20:27] <Krinkle> https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link?#Attributes
- # [20:30] * Joins: jwalden (~waldo@c-68-60-39-249.hsd1.mi.comcast.net)
- # [20:32] <Ms2ger> JavaScript error: https://whatwg.org/demos/canvas/blue-robot/index-idle.html, line 44: NS_ERROR_FAILURE:
- # [20:32] * Joins: estellevw (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
- # [20:34] * Quits: dbaron (~dbaron@50-0-248-60.dsl.dynamic.fusionbroadband.com) (Ping timeout: 265 seconds)
- # [20:34] <Ms2ger> Krinkle, file a bug, please
- # [20:35] <Krinkle> Ms2ger: Which bug tracker? w3?
- # [20:35] <Ms2ger> Yeah
- # [20:36] <Ms2ger> Under WHATWG::HTML
- # [20:40] <Krinkle> Ms2ger: OK. Was slightly confused with product 'HTML WG', but found it. I guess that one is for actual specs, once published.
- # [20:41] <Ms2ger> That one's for political games rather than technical issues
- # [20:46] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: This computer has gone to sleep)
- # [20:46] <Krinkle> https://www.w3.org/Bugs/Public/show_bug.cgi?id=27677
- # [20:46] <Krinkle> Thanks
- # [20:51] * Quits: rcombs (~rcombs@rcombs.me) (Read error: Connection reset by peer)
- # [20:51] <Hixie> https://whatwg.org/newbug is a nice short link for people to point others to when they're to file bugs
- # [20:51] * Joins: rcombs (~rcombs@rcombs.me)
- # [20:53] <Hixie> developers.whatwg.org is mostly blocked on https://github.com/benschwarz/developers.whatwg.org/issues/90
- # [20:53] * Joins: frivoal (~frivoal@AMontsouris-552-1-93-101.w92-140.abo.wanadoo.fr)
- # [20:56] * Quits: frivoal (~frivoal@AMontsouris-552-1-93-101.w92-140.abo.wanadoo.fr) (Remote host closed the connection)
- # [20:56] * Quits: bholley (~bholley@c-67-169-151-96.hsd1.ca.comcast.net)
- # [21:05] <Ms2ger> Hixie, while you're here
- # [21:06] <Ms2ger> Hixie, the example at #association-of-controls-and-forms doesn't actually seem to work
- # [21:08] <TabAtkins> Hixie: Any change you can mark the developers version with an obsoletion notice? Multiple people asked me about it at the conf I was at last week.
- # [21:09] <TabAtkins> *chance
- # [21:13] * Quits: wilsonpage1 (~wilsonpag@2001:450:1d:232:a027:f131:b613:65e8) (Quit: Leaving.)
- # [21:13] * Joins: wilsonpage (~wilsonpag@2001:450:1d:232:a027:f131:b613:65e8)
- # [21:18] * Quits: wilsonpage (~wilsonpag@2001:450:1d:232:a027:f131:b613:65e8) (Ping timeout: 272 seconds)
- # [21:26] * Joins: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [21:29] * Joins: dbaron (~dbaron@2620:101:80fb:224:7c9e:ecfc:aefa:66d7)
- # [21:37] * Joins: danbri1 (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [21:39] * Joins: danbri2 (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [21:39] * Quits: Una (~Una@32.97.110.56) (Read error: Connection reset by peer)
- # [21:39] * Joins: Una (~Una@32.97.110.56)
- # [21:40] * Quits: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Ping timeout: 245 seconds)
- # [21:41] * Joins: danbri3 (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [21:42] * Quits: danbri1 (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Ping timeout: 256 seconds)
- # [21:43] * Quits: danbri2 (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Ping timeout: 265 seconds)
- # [21:47] * Joins: Sample (~Sample@unaffiliated/sample)
- # [21:47] * Joins: frivoal (~frivoal@AMontsouris-552-1-93-101.w92-140.abo.wanadoo.fr)
- # [21:53] * Quits: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl) (Remote host closed the connection)
- # [21:56] * Joins: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net)
- # [22:00] * Joins: thinkxl_ (~thinkxl@74-95-237-22-Houston.hfc.comcastbusiness.net)
- # [22:02] * Quits: thinkxl (~thinkxl@74-95-237-22-Houston.hfc.comcastbusiness.net) (Ping timeout: 255 seconds)
- # [22:06] * Joins: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [22:06] * Quits: danbri3 (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Read error: Connection reset by peer)
- # [22:07] * thinkxl_ is now known as thinkxl
- # [22:09] * Joins: boogyman (~boogyman@2601:0:b801:ad00:3984:dbf6:10fa:a0cf)
- # [22:09] * Quits: boogyman (~boogyman@2601:0:b801:ad00:3984:dbf6:10fa:a0cf) (Changing host)
- # [22:09] * Joins: boogyman (~boogyman@pdpc/supporter/professional/boogyman)
- # [22:12] * Quits: boogyman (~boogyman@pdpc/supporter/professional/boogyman) (Client Quit)
- # [22:13] * Quits: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 255 seconds)
- # [22:13] * Quits: rniwa (~rniwa@17.202.43.222) (Quit: rniwa)
- # [22:14] * Joins: Maurice` (copyman@unaffiliated/maurice)
- # [22:16] * Joins: weinig (~weinig@17.245.27.106)
- # [22:18] * Quits: asmodai (asmodai@h159072.upc-h.chello.nl) (Changing host)
- # [22:18] * Joins: asmodai (asmodai@freebsd/developer/asmodai)
- # [22:21] * Quits: frivoal (~frivoal@AMontsouris-552-1-93-101.w92-140.abo.wanadoo.fr) (Remote host closed the connection)
- # [22:23] * Quits: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Quit: Leaving.)
- # [22:25] * Quits: jwalden (~waldo@c-68-60-39-249.hsd1.mi.comcast.net) (Ping timeout: 256 seconds)
- # [22:30] * Joins: jwalden (~waldo@c-68-60-39-249.hsd1.mi.comcast.net)
- # [22:31] * Joins: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl)
- # [22:36] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 255 seconds)
- # [22:36] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Read error: Connection reset by peer)
- # [22:37] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [22:37] * Joins: frivoal (~frivoal@AMontsouris-552-1-93-101.w92-140.abo.wanadoo.fr)
- # [22:38] * Quits: frivoal (~frivoal@AMontsouris-552-1-93-101.w92-140.abo.wanadoo.fr) (Client Quit)
- # [22:39] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [22:44] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Excess Flood)
- # [22:47] * Joins: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr)
- # [22:50] * Quits: plutoniix (~plutoniix@node-kxd.pool-101-108.dynamic.totbb.net) (Ping timeout: 240 seconds)
- # [22:54] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [22:55] * Quits: weinig (~weinig@17.245.27.106) (Quit: weinig)
- # [22:59] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Read error: Connection reset by peer)
- # [22:59] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [22:59] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [23:00] * Joins: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [23:01] * Quits: TallTed (~Thud@63.119.36.36)
- # [23:02] * Quits: danbri (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Read error: Connection reset by peer)
- # [23:02] * Joins: danbri1 (~Adium@host109-148-194-19.range109-148.btcentralplus.com)
- # [23:04] * Quits: rubys (~rubys@cpe-098-027-051-253.nc.res.rr.com) (Quit: Leaving.)
- # [23:04] * Joins: ambv (~ambv@199.201.64.134)
- # [23:07] * Quits: danbri1 (~Adium@host109-148-194-19.range109-148.btcentralplus.com) (Ping timeout: 264 seconds)
- # [23:10] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:11] * Quits: Ms2ger (~Ms2ger@91.182.16.148) (Quit: nn)
- # [23:11] * Joins: plutoniix (~plutoniix@node-kxd.pool-101-108.dynamic.totbb.net)
- # [23:11] <Domenic> HTML as Custom Elements is so far just depressing, can't even get <custom-div> or <custom-span> faithfully working.
- # [23:12] * Quits: Una (~Una@32.97.110.56) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [23:13] * Quits: annevk (~annevk@5ED376C5.cm-7-4b.dynamic.ziggo.nl) (Remote host closed the connection)
- # [23:13] * Quits: zdobersek (~zan@109.201.154.148) (Quit: Leaving.)
- # [23:14] * Joins: weinig (~weinig@17.244.6.188)
- # [23:17] * Quits: weinig (~weinig@17.244.6.188) (Client Quit)
- # [23:18] <TabAtkins> custom-div is just lacking the ability to hook into the UA stylesheet, which is unsurprising, as it's the UA stylesheet.
- # [23:19] <TabAtkins> Also <div> has no styling at all, if custom elements default to block. What's wrong there?
- # [23:20] * Quits: igoroliveira (uid20755@gateway/web/irccloud.com/x-urruruynjwamaaqu) (Quit: Connection closed for inactivity)
- # [23:25] <Domenic> custom elements default to inline
- # [23:25] <Domenic> <custom-span> has no styling
- # [23:25] <Domenic> but, it's exposed to a11y as a <div>
- # [23:25] <Domenic> (like all custom elements are)
- # [23:26] <TabAtkins> You people fucked up.
- # [23:26] <TabAtkins> ^_^
- # [23:26] <TabAtkins> "Let's style them as inline, but tell a11y that they're block, lolololol"
- # [23:27] <Domenic> I *think* it's because all unknown elements are exposed to a11y as block. Just like all unknown elements are styled by CSS as inline.
- # [23:28] <TabAtkins> If that's actually the preëxisting behavior, then I'll repeat: lolololol
- # [23:39] * Quits: Sample (~Sample@unaffiliated/sample) (Ping timeout: 256 seconds)
- # [23:40] * Joins: bholley (~bholley@98.210.101.88)
- # [23:48] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [23:52] <Hixie> TabAtkins: i think ben's the one with upload access
- # [23:52] <Hixie> Mso150: oh?
- # [23:52] <Hixie> er
- # [23:52] <Hixie> that was for ms2ger
- # [23:57] * Joins: Sample (~Sample@unaffiliated/sample)
- # Session Close: Sat Dec 20 00:00:00 2014
Previous day, Next day
Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn