Options:
- # Session Start: Wed Apr 03 00:00:00 2013
- # Session Ident: #css
- # [00:00] * Quits: jdaggett (~jdaggett@public.cloak) (jdaggett)
- # [00:05] * Joins: rhauck1 (~Adium@public.cloak)
- # [00:07] * Quits: rhauck (~Adium@public.cloak) (Ping timeout: 60 seconds)
- # [00:10] <fantasai> ojan: the grid-row/grid-column properties still exist
- # [00:10] <fantasai> ojan: I expect people who think in terms of tracks would be using those
- # [00:10] <fantasai> ojan: It won't do exactly the same thing, but it can do something consistent. :)
- # [00:11] <fantasai> ojan: grid-start: -1 puts you in track between -1 and 0
- # [00:11] <fantasai> ojan: grid-end: -1 puts you in track between -2 and -1
- # [00:11] <fantasai> TabAtkins, krit: What are Masking's back-compat constraints?
- # [00:11] <fantasai> TabAtkins, krit: Anything besides SVG 1.1's properties?
- # [00:21] <krit> fantasai: WebKit has a nearly complete implementation of CSS Masking that is used in the wild for a couple of years
- # [00:22] <krit> fantasai: but I do not think that I said that there are back-compat constraints IIRC
- # [00:22] <fantasai> krit: Because I'm looking at some of the syntax here for mask-image, and it does not make sense
- # [00:22] <fantasai> krit: e.g. select() only works on child elements
- # [00:22] <krit> fantasai: as example?
- # [00:22] <fantasai> krit: I would expect it to work like most other things that take a scoped selector
- # [00:22] <krit> fantasai: right, that was a big wish of the SVG WG
- # [00:23] <fantasai> krit: or in some way indicate that it doesn't do that
- # [00:23] <krit> fantasai: It doesn't work on HTML content, right
- # [00:23] <fantasai> krit: other things accept descendants
- # [00:23] * Quits: darktears (~darktears@public.cloak) (Client closed connection)
- # [00:23] <fantasai> krit: other things that take scoped selectors, whatever you pass in, it scans as for any descendant of the scoping element
- # [00:24] <fantasai> krit: but this one doesn't, and it's not clear that it doesn't
- # [00:24] <krit> fantasai: well, because it might just doesn't work at the moment
- # [00:24] <fantasai> krit: you'll break things if you change that definition later
- # [00:24] <krit> fantasai: the hope was that you can add <mask> as a direct child of any HTML element in the near future
- # [00:25] <krit> fantasai: no, that is the point
- # [00:25] <fantasai> krit: Allowing <mask> in the content model later is fine
- # [00:25] <krit> fantasai: it is done in a way that it does not break the future
- # [00:25] <krit> fantasai: right
- # [00:25] <fantasai> krit: changing the meaning of select(mask) to include descendants later is not
- # [00:25] <fantasai> krit: Either you do it now, or you do it never
- # [00:26] <krit> fantasai: <div><mask/></div> does not work at the moment, just because HTML does not allow direct descendants of SVG NS in HTML content at the moment.
- # [00:26] <krit> fantasai: but I am not excluding it in masking
- # [00:27] <krit> fantasai: means it is possible to define select() in CSS, it just won't work on HTML content
- # [00:27] <krit> fantasai: it does on SVG content
- # [00:27] <fantasai> krit: <div><ul><li><svg><mask/></svg></li></ul></div>
- # [00:27] <fantasai> krit: If I set div { mask: select(mask); }
- # [00:27] <krit> fantasai: if someday HTML allows SVG NS elements in HTML, it will work there as well
- # [00:27] <fantasai> krit: Right now that selects nothing
- # [00:27] <fantasai> krit: If in the future it selects that mask element, we have a problem.
- # [00:28] <krit> fantasai: not sure if we have a problem, but that was the supposed behavior mainly driven by TabAtkins_ IIRC
- # [00:28] <fantasai> what was the supposed behavior?
- # [00:29] <fantasai> Selecting only children, or selecting any descendant, or selecting only children today but selecting any descendant five years from now?
- # [00:29] <fantasai> I think the last option is very problematic.
- # [00:29] <fantasai> And the first one is unclear from the syntax and inconsistent with the way selectors are used elsewhere.
- # [00:30] <fantasai> Which means either we should go with #2, or change the syntax to be clear that only children are considered
- # [00:30] <fantasai> e.g. call it child(<selector>)
- # [00:31] <krit> fantasai: first of all, there is no requirement to add select() to be back-comp with SVG. This is a totally new feature.
- # [00:32] <fantasai> SVG only has http://www.w3.org/TR/SVG11/masking.html#MaskProperty , right?
- # [00:32] <krit> fantasai: second, we did not use child(), since you can add the whole fature set of CSS selectors in their
- # [00:32] * Quits: dbaron (~dbaron@public.cloak) ("8403864 bytes have been tenured, next gc will be global.")
- # [00:33] <krit> fantasai: the idea was to limit the selection to the direct decsendants
- # [00:33] <krit> fantasai: yes
- # [00:33] * Joins: dbaron (~dbaron@public.cloak)
- # [00:33] <fantasai> "direct descendant" == "child", no?
- # [00:33] <krit> fantasai: well, you could have <div><mask/><mask/><mask/></div>
- # [00:33] <krit> fantasai: what is child?
- # [00:33] <fantasai> The spec is totally unclear on this point, fwiw
- # [00:34] <fantasai> I'm guessing from the definition of the 'child' value, how 'select()' operates.
- # [00:34] <fantasai> actually
- # [00:34] <fantasai> it makes no sense at all
- # [00:34] <fantasai> at all
- # [00:34] <fantasai> "A keyword to indicate that the last direct sibling ‘mask’ element of the element the ‘mask-image’ property is applied should be used as the mask source."
- # [00:34] <fantasai> So, if I apply this property to a <div>, only a <mask> sibling of the <div> would get selected
- # [00:34] <fantasai> ?
- # [00:35] <fantasai> That seems rather odd
- # [00:35] <krit> right
- # [00:35] <fantasai> I would expect a value called "child" to select some kind of child of the element, not its sibling
- # [00:35] <fantasai> If we're selecting the element's sibling, shouldn't it be called "sibling" instead of "child"? :)
- # [00:35] <krit> fantasai: that is actually a bug
- # [00:35] <krit> fantasai: sorry, didn't get your point
- # [00:36] <fantasai> per spec
- # [00:36] <krit> fantasai: yes, sibling is wrong
- # [00:36] <fantasai> <div><mask id="mask1"/></div>
- # [00:36] <fantasai> <mask id="mask2">
- # [00:36] <fantasai> div { mask: child; } selectos mask2
- # [00:36] <fantasai> that seems really weird
- # [00:36] <fantasai> what was meant there?
- # [00:36] <krit> fantasai: it shoiud select the direct descendant
- # [00:37] <krit> fantasai: so mask1
- # [00:37] <fantasai> OK, what about
- # [00:37] <fantasai> <div><article><mask id="mask1"/></article><mask id="mask2"/></div>
- # [00:38] <fantasai> Which one is selected there?
- # [00:38] <krit> mask2, if the property is set for div
- # [00:39] <fantasai> Remove mask2 from the tree
- # [00:39] <fantasai> now what is selected?
- # [00:40] <krit> nothing
- # [00:41] <fantasai> ok
- # [00:41] <fantasai> so, yeah, we need to fix s/direct sibling/direct child/
- # [00:41] <fantasai> and I would strongly recommend s/select()/child()/
- # [00:42] * fantasai will write an email
- # [00:42] <krit> fantasai: changed it to 'descendant' already, is that ok?
- # [00:42] <fantasai> no
- # [00:42] <krit> should be child?
- # [00:42] <fantasai> that's what you meant, so that's what you should write :)
- # [00:42] <fantasai> I am a direct descendant of my great-grandmother, but I am not her child. :)
- # [00:43] <krit> I see, makes sense
- # [00:43] <liam> you obviously don't come from Arke... er n/m
- # [00:44] <liam> sorry, we get too many of these conversations about child elements vs. descendants vs. descendant-or-self with XPath
- # [00:59] * Joins: krit1 (~krit@public.cloak)
- # [00:59] * Quits: krit (~krit@public.cloak) (Client closed connection)
- # [01:02] * Quits: sgalineau (~sgalineau@public.cloak) (Client closed connection)
- # [01:28] * Quits: cabanier (~cabanier@public.cloak) ("Leaving.")
- # [01:48] * Joins: cabanier (~cabanier@public.cloak)
- # [02:29] * Joins: jdaggett (~jdaggett@public.cloak)
- # [02:31] * Quits: jdaggett (~jdaggett@public.cloak) (jdaggett)
- # [02:42] * Joins: jdaggett (~jdaggett@public.cloak)
- # [03:02] * Quits: lmclister (~lmclister@public.cloak) ("")
- # [03:04] * Quits: krit1 (~krit@public.cloak) ("Leaving.")
- # [03:18] * Quits: rhauck1 (~Adium@public.cloak) (Client closed connection)
- # [03:24] * leaverou is now known as leaverou_away
- # [03:49] * Joins: krit (~krit@public.cloak)
- # [03:50] * Quits: dbaron (~dbaron@public.cloak) (Ping timeout: 60 seconds)
- # [03:56] * Quits: krit (~krit@public.cloak) (Client closed connection)
- # [04:07] * Joins: krit (~krit@public.cloak)
- # [04:10] * Quits: krit (~krit@public.cloak) ("Leaving.")
- # [04:23] * Joins: lmclister (~lmclister@public.cloak)
- # [05:00] * Quits: lmclister (~lmclister@public.cloak) ("")
- # [05:01] * Joins: mib_nptxh9 (~5841d5c8@public.cloak)
- # [05:07] * Joins: lmclister (~lmclister@public.cloak)
- # [05:11] * Quits: mib_nptxh9 (~5841d5c8@public.cloak) ("http://www.mibbit.com ajax IRC Client")
- # [05:35] * Quits: cabanier (~cabanier@public.cloak) ("Leaving.")
- # [06:12] * Joins: cabanier (~cabanier@public.cloak)
- # [06:22] * Quits: lmclister (~lmclister@public.cloak) ("")
- # [06:25] * Joins: krit (~krit@public.cloak)
- # [06:54] * Joins: dbaron (~dbaron@public.cloak)
- # [07:50] * Joins: zcorpan (~zcorpan@public.cloak)
- # [07:56] * Joins: SimonSapin (~simon@public.cloak)
- # [08:45] * Joins: teoli (~teoli@public.cloak)
- # [08:52] * Quits: dbaron (~dbaron@public.cloak) (Ping timeout: 60 seconds)
- # [08:53] * Joins: nvdbleek (~nvdbleek@public.cloak)
- # [09:19] * leaverou_away is now known as leaverou
- # [09:38] * Joins: Ms2ger (~Ms2ger@public.cloak)
- # [09:42] * Joins: abucur (~Adium@public.cloak)
- # [10:06] * Quits: krit (~krit@public.cloak) ("Leaving.")
- # [10:19] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [10:30] * Quits: SimonSapin (~simon@public.cloak) (Ping timeout: 60 seconds)
- # [10:31] * Quits: jdaggett (~jdaggett@public.cloak) (jdaggett)
- # [10:58] * Joins: glenn (~gadams@public.cloak)
- # [10:59] * Joins: glenn_ (~gadams@public.cloak)
- # [10:59] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [11:02] * Quits: zcorpan (~zcorpan@public.cloak) (Ping timeout: 60 seconds)
- # [11:10] * Joins: isherman-book (~Adium@public.cloak)
- # [11:15] * Joins: SimonSapin (~simon@public.cloak)
- # [11:50] * Quits: glenn_ (~gadams@public.cloak) (Client closed connection)
- # [12:07] * Joins: glenn (~gadams@public.cloak)
- # [12:26] * Joins: zcorpan (~zcorpan@public.cloak)
- # [13:02] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [13:03] * Joins: glenn (~gadams@public.cloak)
- # [13:11] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
- # [13:16] * Joins: darktears (~darktears@public.cloak)
- # [13:21] * Joins: zcorpan (~zcorpan@public.cloak)
- # [13:24] * Joins: alexisme (~darktears@public.cloak)
- # [13:25] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [13:25] * Quits: darktears (~darktears@public.cloak) (Ping timeout: 60 seconds)
- # [13:26] * alexisme is now known as darktears
- # [13:27] * Joins: glenn (~gadams@public.cloak)
- # [13:30] * Quits: isherman-book (~Adium@public.cloak) ("Leaving.")
- # [13:31] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 60 seconds)
- # [13:32] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 60 seconds)
- # [13:38] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
- # [13:44] * Joins: mib_7zhcwl (~5d879227@public.cloak)
- # [13:45] * Joins: zcorpan (~zcorpan@public.cloak)
- # [13:47] * Joins: Ms2ger (~Ms2ger@public.cloak)
- # [13:57] * Quits: teoli (~teoli@public.cloak) (Client closed connection)
- # [14:08] * Quits: mib_7zhcwl (~5d879227@public.cloak) ("http://www.mibbit.com ajax IRC Client")
- # [14:27] * Joins: teoli (~teoli@public.cloak)
- # [14:29] * Joins: teoli_ (~teoli@public.cloak)
- # [14:29] * Quits: teoli (~teoli@public.cloak) (Client closed connection)
- # [14:29] * Quits: nvdbleek (~nvdbleek@public.cloak) (Client closed connection)
- # [14:29] * Joins: nvdbleek (~nvdbleek@public.cloak)
- # [14:37] * Quits: teoli_ (~teoli@public.cloak) (Ping timeout: 60 seconds)
- # [15:05] * Joins: teoli (~teoli@public.cloak)
- # [15:15] * Quits: teoli (~teoli@public.cloak) (Ping timeout: 60 seconds)
- # [15:33] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
- # [15:43] * Joins: teoli (~teoli@public.cloak)
- # [15:53] * Quits: teoli (~teoli@public.cloak) (Ping timeout: 60 seconds)
- # [16:00] * Joins: kermit (~5d879227@public.cloak)
- # [16:00] * Quits: kermit (~5d879227@public.cloak) ("http://www.mibbit.com ajax IRC Client")
- # [16:12] * Joins: zcorpan (~zcorpan@public.cloak)
- # [16:22] * Quits: darktears (~darktears@public.cloak) (Client closed connection)
- # [16:32] * Joins: sgalineau (~sgalineau@public.cloak)
- # [16:34] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
- # [16:44] * Joins: tmpsantos (~tmpsantos@public.cloak)
- # [16:51] * Joins: teoli (~teoli@public.cloak)
- # [16:58] * Quits: nvdbleek (~nvdbleek@public.cloak) (nvdbleek)
- # [17:01] * Joins: nvdbleek (~nvdbleek@public.cloak)
- # [17:01] <nvdbleek> zakim, code?
- # [17:05] * Joins: krit (~krit@public.cloak)
- # [17:10] <TabAtkins_> nvdbleek: It's in your email, on the private list.
- # [17:11] * nvdbleek sorry, I was an hour early ;)
- # [17:11] <TabAtkins_> krit: References are based on the biblio file, so they haven't changed.
- # [17:11] <TabAtkins_> ojan: Devs can avoid lines entirely if they like, by just using grid-row and grid-column.
- # [17:14] <krit> TabAtkins_: ok, but should the well known spec CSS3 Transforms change it's title?
- # [17:14] <krit> TabAtkins_: CSS Exclusions mentions level 3 as well
- # [17:15] <TabAtkins_> krit: We certainly *could*. Ask Bert to change the biblio file, he's the only one with access I think.
- # [17:15] <krit> TabAtkins_: well, I am not only asking because of Bert s ref file
- # [17:16] <krit> TabAtkins_: Do the TR references change as well in the future?
- # [17:16] <krit> TabAtkins_: currently it is still css3-transforms, css3-animations and so on
- # [17:16] <krit> TabAtkins_: I am asking because of curiosity and preparation
- # [17:25] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 60 seconds)
- # [17:40] * Joins: Ms2ger (~Ms2ger@public.cloak)
- # [17:41] * Joins: glazou (~glazou@public.cloak)
- # [17:41] * Joins: Zakim (zakim@public.cloak)
- # [17:41] <glazou> Zakim, this will be Style
- # [17:41] <Zakim> ok, glazou; I see Style_CSS FP()12:00PM scheduled to start in 16 minutes
- # [17:41] <glazou> RRSAgent, make logs public
- # [17:41] <RRSAgent> I have made the request, glazou
- # [17:43] * Joins: lmclister (~lmclister@public.cloak)
- # [17:45] * Joins: zcorpan (~zcorpan@public.cloak)
- # [17:45] * Joins: antonp (~Thunderbird@public.cloak)
- # [17:46] <Zakim> Style_CSS FP()12:00PM has now started
- # [17:46] <Zakim> +rhauck
- # [17:49] * Quits: zcorpan (~zcorpan@public.cloak) (Ping timeout: 60 seconds)
- # [17:49] * Joins: plh (plehegar@public.cloak)
- # [17:50] * Joins: rhauck (~Adium@public.cloak)
- # [17:50] <plh> regrets (again) for the CSS call. I'll be on the call next week for sure.
- # [17:51] * Quits: cabanier (~cabanier@public.cloak) ("Leaving.")
- # [17:51] <TabAtkins_> I'm going to be probably 15 minutes late - I have to meet with someone in London, and our timing is constrained right now.
- # [17:52] <krit> Zakim, who is on the phone?
- # [17:52] <Zakim> On the phone I see rhauck
- # [17:52] <Zakim> +plinss
- # [17:52] <krit> zakim, krit is with rhauck
- # [17:52] <Zakim> +krit; got it
- # [17:52] * Joins: BradK (~bradk@public.cloak)
- # [17:53] * Joins: djackson (~djackson@public.cloak)
- # [17:54] * djackson is now known as dael
- # [17:54] <TabAtkins_> krit: Yes, we plan to change the TR names as we publish new drafts (or maybe a mass move, we dunno).
- # [17:54] <Zakim> +djackson
- # [17:55] <Zakim> +sgalineau
- # [17:56] * krit misses sgalineau's discussions about CSS Animations
- # [17:56] <Zakim> +??P37
- # [17:56] <glazou> Zakim, ??P37 is me
- # [17:56] <Zakim> +glazou; got it
- # [17:56] <Zakim> +fantasai
- # [17:56] <Zakim> +antonp
- # [17:56] <Zakim> +??P44
- # [17:57] <Zakim> +SimonSapin
- # [17:57] <antonp> Zakim is fast today
- # [17:57] * sgalineau forgot to add the bit about translating vendor prefixes i.e. '-troussetoile' being the french equivalent to '-webkit'
- # [17:57] * Joins: SteveZ (~chatzilla@public.cloak)
- # [17:57] <Zakim> +Stearns
- # [17:58] * Joins: jdovey (~jdovey@public.cloak)
- # [17:58] <Zakim> +[Microsoft]
- # [17:58] * Joins: tantek (~tantek@public.cloak)
- # [17:58] <rhauck> plinss: can I add one thing to the agenda - it's very quick- just some announcements about upcoming TestTWF events
- # [17:58] <plinss> sure
- # [17:59] <Zakim> +SteveZ
- # [17:59] * Joins: dbaron (~dbaron@public.cloak)
- # [17:59] * Joins: MaRakow (~MaRakow@public.cloak)
- # [17:59] <glazou> Zakim, who is noisy?
- # [17:59] <Zakim> glazou, listening for 10 seconds I could not identify any sounds
- # [17:59] <Zakim> +dbaron
- # [17:59] * Joins: smfr (~smfr@public.cloak)
- # [17:59] <Zakim> +jdovey
- # [17:59] * Joins: JohnJansen (~JohnJansen@public.cloak)
- # [17:59] * Joins: Rossen (~Rossen@public.cloak)
- # [18:00] <Zakim> +[Microsoft.a]
- # [18:00] <Zakim> -[Microsoft.a]
- # [18:00] <Zakim> +[Apple]
- # [18:00] <hober> Zakim, Apple is me
- # [18:00] <Zakim> +hober; got it
- # [18:00] <glazou> Zakim, who is noisy?
- # [18:00] <Zakim> +smfr
- # [18:00] <Zakim> glazou, listening for 10 seconds I heard sound from the following: antonp (9%), SimonSapin (16%), SteveZ (11%)
- # [18:00] <Zakim> +BradK
- # [18:00] <Zakim> +[Microsoft.a]
- # [18:00] <Rossen> zakim, microsoft has me
- # [18:00] <Zakim> +Rossen; got it
- # [18:00] <Zakim> +[Microsoft.aa]
- # [18:01] <SimonSapin> Zakim: mute me
- # [18:01] <JohnJansen> Zakim, Microsoft has JohnJansen
- # [18:01] <Zakim> +JohnJansen; got it
- # [18:01] <SimonSapin> Zakim: mute SimonSapin
- # [18:01] <glazou> Zakim, mute SimonSapin
- # [18:01] <Zakim> SimonSapin should now be muted
- # [18:01] <SimonSapin> better?
- # [18:01] <Zakim> -BradK
- # [18:01] <SimonSapin> not sure why, it’s the same phone as usual. And the phone’s own muting is on
- # [18:02] * Quits: jdovey (~jdovey@public.cloak) (Ping timeout: 60 seconds)
- # [18:02] <Zakim> +BradK
- # [18:02] <plinss> must be noise on the line
- # [18:02] <SteveZ> I will do it
- # [18:03] <Zakim> +Bert
- # [18:03] * smfr changes topic to 'http://lists.w3.org/Archives/Public/www-style/2013Apr/0031.html'
- # [18:03] <Ms2ger> ScribeNick: SteveZ
- # [18:03] <SteveZ> rrsagaint, scribenick SteveZ
- # [18:03] <SteveZ> Add announcement of Test the Web Forward
- # [18:04] <glazou> overlap with SVG ftf ?
- # [18:04] <SteveZ> Rebecca: TwF is planning an event following the CSS meeting in Japan. We are all invited
- # [18:04] * sgalineau glazou, TTWF is usually Friday afternoon/Saturday….
- # [18:04] <glazou> ah right
- # [18:04] <SteveZ> There is also a TwF event in Seattle at Microsoft next week
- # [18:04] <SimonSapin> F2F is Wednesday 5 ~ Friday 7, overlap with TTWF?
- # [18:05] <rhauck> TTWF will start around happy hour time :)
- # [18:05] <SteveZ> Topic: CSS3 Overflow
- # [18:05] <Zakim> +[Microsoft.aaa]
- # [18:05] <arronei> zakim, microsoft has me
- # [18:05] <Zakim> +arronei; got it
- # [18:05] <nvdbleek> zakim, code?
- # [18:05] <Zakim> the conference code is 78953 (tel:+1.617.761.6200 sip:zakim@voip.w3.org), nvdbleek
- # [18:05] <SteveZ> DBaron: We agreed to wait till this week
- # [18:05] <Bert> (I think Florian's comment is good, too.)
- # [18:05] <SteveZ> Fantasai: I pretty much agree with Florian Comments
- # [18:06] <smfr> http://dev.w3.org/csswg/css-overflow/
- # [18:06] <SteveZ> Dirk: ?
- # [18:06] <krit> yes
- # [18:06] <Bert> (Not sure about any of the new stuff in the module, :-) but no problem with trying it out.)
- # [18:06] <SteveZ> DBaron: Something split into three boxes with prior and later sibling then have prior sibliing, 3 boxes, and laster sibling
- # [18:07] * krit SteveZ Dirk == krit
- # [18:07] <SteveZ> Glazou: So if you say display block things will work correctly?
- # [18:07] * Joins: jdovey (~jdovey@public.cloak)
- # [18:07] <SteveZ> DBaron: Yes
- # [18:07] <glazou> s/block/inline-block
- # [18:07] <SteveZ> DBaron: I am fine with adding Florian's issue
- # [18:07] <MaRakow> zakim, microsoft has me
- # [18:07] <Zakim> +MaRakow; got it
- # [18:08] <SteveZ> PLiness: Any objections?
- # [18:08] <krit> s/Dirk: ?/krit: If an element has overflowing content creating new boxes, how do these boxes interact with siblings of the original element./
- # [18:08] <SteveZ> Brad: Can you eventually move the Page overflow here?
- # [18:08] * Joins: israelh (~israelh@public.cloak)
- # [18:08] <SteveZ> DBaron: yes
- # [18:08] <SimonSapin> Zakim, unmute me
- # [18:08] <Zakim> SimonSapin should no longer be muted
- # [18:08] <SteveZ> RESOLVED: Publish the FPWD
- # [18:09] <SteveZ> Topic Exclusions
- # [18:09] <smfr> http://lists.w3.org/Archives/Public/www-style/2013Mar/0659.html
- # [18:09] <tantek> and Zakim keeps hanging up on me
- # [18:10] <SteveZ> Alan: does a shape inside work like floats do or like an exclusion does in affecting lines of children
- # [18:10] <SteveZ> SteveZ: If defined as float, it will not affect lines of BFCs
- # [18:10] <Zakim> +nvdbleek
- # [18:10] <SteveZ> Alan: If deifned as exclusion, it will affect lines of BFCs
- # [18:11] <Zakim> +Tab_Atkins
- # [18:11] <SteveZ> Rossen: Shape inside should not behave differently than shape outside
- # [18:12] <SteveZ> Alan: if Shape Outside has two behaviors depending on what the shape is defined upon.
- # [18:12] <SteveZ> Rossen: the Inside can only be one.
- # [18:12] <Zakim> +Tantek
- # [18:12] <tantek> zakim, mute tantek
- # [18:12] <Zakim> Tantek should now be muted
- # [18:12] <SteveZ> DBaron: If the inisde is scrolled, what happens.
- # [18:13] <SteveZ> Rossen the layout is done and that result is scrolled, not relayed out
- # [18:13] <dbaron> s/the inside/the BFC on the inside/
- # [18:13] <SteveZ> PLinss: it makes sense for the implementation, but perhaps not for the user.
- # [18:14] <SteveZ> Tab: I am wiht Rossen, reflowing during scrolling could cause things to jump around
- # [18:14] <tantek> with fixed positioning, things change layout while you scroll
- # [18:14] <BradK> Maybe shape inside should be non-scrollable
- # [18:14] <Bert> <div style="shape-inside:circle(...)">Some text... <div style="overflow: scroll; height: 5em">Inner text..</div> more outer text...</div>
- # [18:14] <SteveZ> PLinss: When scrolling happens without re-layout, then things may overlap and become unreadable
- # [18:15] <SteveZ> FantasaiL For a circle you can make it work iwth re-layout, but not for arbitrary shape
- # [18:15] <fantasai> s/FantasaiL/fantasai:/
- # [18:16] <SteveZ> DBaron: Reason that Float does not affect a BFC is becasue of scrolling
- # [18:16] <SimonSapin> (glazou, still getting noise from me? I don’t hear it.)
- # [18:16] <dbaron> s/a BFC/things inside a BFC/
- # [18:16] * Joins: emalasky (~Adium@public.cloak)
- # [18:16] <SteveZ> PLinss: What else is going to change?
- # [18:16] <glazou> SimonSapin, nope all ok
- # [18:17] <SteveZ> Alan: Nothing really, just need to add a note to say that the wrapping context of the elements inside get the exclusion area added to them
- # [18:17] * Joins: koji (~koji@public.cloak)
- # [18:18] <SteveZ> Alan: Doing Shape Inside as an exclusion gives more flexibitily; can use the wrapping properties to control how the lines are affected
- # [18:18] <SteveZ> DBaron: in the Float way, the entire BFC is moved reather than the lines within it.
- # [18:19] <SteveZ> Alan: When you layout something inside only the lines are affected and BFCs are moved to avoid the collision
- # [18:20] <SteveZ> PLinss: If something is centered, and using the float model a BFC is moved, that would affect the centering point
- # [18:20] <SteveZ> Rossen: This does not happen with the Exclusion model
- # [18:22] <SteveZ> Rossen: Rossen: details of 2x2 grid in a circle shows Exclusions likely more straightforward
- # [18:23] <SteveZ> PLinss: I agree
- # [18:23] <Bert> <table style="shape-inside: circle(...)><tr><td>A1<td>A2<tr><td>B1<td>B2</table>
- # [18:23] <SteveZ> Bert: not clear on table example
- # [18:23] <SteveZ> Bert: what else can you do but shorten the lines of the content of each of the cells
- # [18:25] <SteveZ> Rossen: Table with a singel cell with overflow scroll and table has a shape inside of a rectangle with size of 50% of the table itself. Then how big is the table celll?
- # [18:25] <SteveZ> s/singel/single/
- # [18:26] <SteveZ> Rossen: with the Float model, cannot have a float that pushes the table cell one way or another, but with the Exclusion model we have a solution
- # [18:27] <SteveZ> Rossen: It is the requirement that the table cell, a BFC, must avoid the float and that becomes awkward.
- # [18:27] <SteveZ> Anton: I think Exlusions has to be the way to go,
- # [18:27] <SteveZ> PLinss: any objections to Exlusions model
- # [18:28] <SteveZ> RESOVLED: Exclusions model will be used in Shape Inside
- # [18:28] * antonp thinks that otherwise you push the float model into /anything/
- # [18:28] <smfr> http://lists.w3.org/Archives/Public/www-style/2013Mar/0684.html
- # [18:28] * Quits: dael (~djackson@public.cloak) (Client closed connection)
- # [18:28] <SimonSapin> http://lists.w3.org/Archives/Public/www-style/2013Mar/0684.html
- # [18:28] <Bert> page size and user defined size in print dialog
- # [18:28] <glazou> s/RESOVLED/RESOLVED
- # [18:28] <SteveZ> Topic: page size and user defined size in print dialog
- # [18:28] * Joins: dael (~djackson@public.cloak)
- # [18:29] <SteveZ> SimonS: User want to choose based on what is in the printer. What do we do when user and author have conflicting choices?
- # [18:30] <SteveZ> Fantasai: Text in Page using !important rules to handle this
- # [18:30] <SteveZ> Glazou: this is more than page size; it is also about headers and footers and that ismore complex
- # [18:31] <fantasai> fantasai: User prefs can be expressed through @page rule in user style sheet
- # [18:31] <SteveZ> Glazou: this is an old issue.
- # [18:31] <fantasai> fantasai: CSS3 Paged Media says what to do if the specified size doesn't match what is available in the printer
- # [18:31] <SteveZ> Glazou: this problem arises when printing PDF docs, say legal ones, on which you do not want to print headers and footers
- # [18:31] <fantasai> fantasai: Agree there's an issue on headers/footers
- # [18:32] <SteveZ> SimonS: These are two different issues: there is a proposal to allow user to choose whether or not to print system headers
- # [18:33] <SteveZ> Glazou: In Firefox, all the settings for the print dialog are in the UI, not from CSS.
- # [18:33] <SteveZ> DBaron: OS print dialogs are different on different systems
- # [18:33] <fantasai> SimonS: There is a proposal on mailing list to not print UA headers/footers if author has specified headers/footers
- # [18:34] <SteveZ> Glazou: what are you asking for? a resolution to say the document settings should always override user settings?
- # [18:35] <SteveZ> Fantasai: the Cascade is the way that we control this in general, this does not work to headers and footers because there are 16 boxes to control
- # [18:35] <SteveZ> SimonS: this should be handled by a user style sheet?
- # [18:36] <SteveZ> Fantasai: yes
- # [18:36] <SteveZ> SimonS: That would work
- # [18:36] <SteveZ> Glazou: This depends on the OS print mechanism
- # [18:37] <SteveZ> Fantasai: Scaling to fit is already spec'd; it depends on being able to find the local paper size
- # [18:37] <SteveZ> Fantasai: this should already be in CSS2.1
- # [18:37] <fantasai> http://www.w3.org/TR/CSS21/cascade.html#cascade
- # [18:38] <SteveZ> RESOLVED: use the cascade for page size
- # [18:39] <fantasai> <add in fantasai's cascading margin boxes idea>
- # [18:39] <SteveZ> Topic: Flexbox
- # [18:39] * Joins: plh2 (plehegar@public.cloak)
- # [18:39] <glazou> url?
- # [18:39] <SimonSapin> http://lists.w3.org/Archives/Public/www-style/2013Mar/0707.html
- # [18:39] * krit New renaming in Flexbox?
- # [18:40] * sgalineau until pseudo stacking contexts get defined I'll call them Bob
- # [18:40] <glazou> sgalineau, at least that's a palindrome :-)
- # [18:40] <SteveZ> Tab: Flex itmes painting atomicly decided in July. But thinking about it more. we should make flex items, and grid items paint atomicly
- # [18:41] <fantasai> and table cells
- # [18:41] <SimonSapin> Do we have a level 3 module that defines stacking contexts?
- # [18:41] <fantasai> (We made them not atomic, because table cells aren't atomic.)
- # [18:41] * sgalineau glazou, until i rename them, yes
- # [18:41] <fantasai> SimonSapin: positioning
- # [18:41] <fantasai> I think
- # [18:41] <SteveZ> Tab: the only way to tell whether they paint like table-cells or atomically is to move a float outside the box and then back in.
- # [18:41] * Quits: plh (plehegar@public.cloak) (Ping timeout: 60 seconds)
- # [18:42] <SteveZ> Tab: in this case the float is between the content and the background in a table-cell and over or under both in the atomic version
- # [18:43] <SteveZ> Tab: Table-cells become a pseudo-stacking context, not a full stacking context
- # [18:43] <SteveZ> Desire is to make this change, retroactively, in CSS2.1
- # [18:44] <SteveZ> Note CSS2.1 already has changes that require a PER to update the spec
- # [18:45] <tantek> I agree with making this an errata to 2.1
- # [18:45] <SteveZ> Tab: It might be OK to say that, even if table-cells do not change, all future ones will be pseudo-stacking contexts
- # [18:45] <SteveZ> Anton: We can do this of flexbox and grid, even without making the change to table-cells
- # [18:46] <SteveZ> Fantasai; the reason for copying table-cells in July was "consistencly" and no one had a reason for breaking that. We now have such an argument
- # [18:46] <SteveZ> Tab: Grid really wants ot be atomic because Grid does a lot of overlapping
- # [18:47] <SteveZ> Tab: any objection to making Flexbox pseudo-staking contexts?
- # [18:47] <SteveZ> PLinss, Anton: not sure
- # [18:47] <fantasai> http://lists.w3.org/Archives/Public/www-style/2012Jul/0265.html
- # [18:47] <glazou> Zakim, mute glazou
- # [18:47] <Zakim> glazou should now be muted
- # [18:48] <glazou> Zakim, unmute glazou
- # [18:48] <Zakim> glazou should no longer be muted
- # [18:48] <SteveZ> Fantasai: noted that Anton argued for pseudo-stacking context in July
- # [18:49] <SteveZ> PLinss: how about separating the foregrounds and backgrounds and paint each separately
- # [18:49] * sgalineau 'almost absolutely not': new favorite tab catch phrase
- # [18:49] <Zakim> -SimonSapin
- # [18:50] <SteveZ> Tab: no, for grid items if you put an item on top of another you want the background of the top item to obscure the lower one.
- # [18:50] <Zakim> +SimonSapin
- # [18:50] <dbaron> Zakim, mute SimonSapin
- # [18:50] <Zakim> SimonSapin should now be muted
- # [18:50] <SteveZ> PLinss: might want to add a switch to interleave the backgrounds
- # [18:50] <glazou> SimonSapin, worse than before :(
- # [18:50] <SimonSapin> sorry :/
- # [18:51] <SteveZ> PLinss: whether this change affects tables is up to the vendors and the degree of compatibiity impact
- # [18:52] <SteveZ> Tab: Google thinks this is probably OK to change and DBaron seems to believe so also
- # [18:52] <SteveZ> RESOLVED: make table-cell, flex item and grid item atomic
- # [18:53] <antonp> atomic == /pseudo/-stacking context
- # [18:53] <SteveZ> atomic means "pseudo-stacking context"
- # [18:53] <SteveZ> Topic: Images
- # [18:53] <smfr> http://lists.w3.org/Archives/Public/www-style/2013Mar/0750.html
- # [18:53] <SteveZ> Tab: image rendering property from SVG with added properties
- # [18:54] <SteveZ> Tab: left in the "auto" keyword which does smoothing
- # [18:55] <SteveZ> Tab: SimonF has asked for explicity "smooth" keyword and have "auto" mean do what UI want to do to get fast rendering
- # [18:56] <SteveZ> DBaron: Scaling up and down often has different behavior and this needs to be consider in the spec and in testing
- # [18:57] <SteveZ> Optimize quality maps to "smooth" and optimize speed maps to "auto'
- # [18:57] <SteveZ> Tab: How low can you go an be considered optimizing quality? do you need to go bi-cubic
- # [18:58] <SteveZ> Tab: if an animation running with "smooth" what should you do to maintain quality?
- # [18:58] <SteveZ> Tab: saying, "it does not degrade" is too fuzzy for me.
- # [18:59] <SteveZ> SimonF: the UA will not degrade image quality
- # [18:59] <SteveZ> Tab: but, it may degrade other aspects (eg frame rates) of the animation
- # [18:59] <SteveZ> Tab: I am happy to add this
- # [19:00] <SteveZ> Bert: Is this too simple. Not discussing frame rate seem to be too restrictive
- # [19:01] <SteveZ> Tab: you should specify "auto" which tries to keep up the frame rate (and degrade image quality)
- # [19:02] <Zakim> -fantasai
- # [19:02] <Bert> (No objections, just not sure I understand why you want smooth ever.)
- # [19:02] <Zakim> -Stearns
- # [19:03] <Zakim> -smfr
- # [19:03] <Zakim> -glazou
- # [19:03] <Zakim> -hober
- # [19:03] <Zakim> -nvdbleek
- # [19:03] <Zakim> -[Microsoft.aaa]
- # [19:03] <SteveZ> SimonF: Do not want to add frame rate in explicity because there are other factors that need to be considered as well
- # [19:03] <Zakim> -plinss
- # [19:03] <Zakim> -SimonSapin
- # [19:03] <Zakim> -[Microsoft.aa]
- # [19:03] <Zakim> -[Microsoft.a]
- # [19:03] <Zakim> -dbaron
- # [19:03] <Zakim> -Tab_Atkins
- # [19:03] <Zakim> -Tantek
- # [19:03] <Zakim> -antonp
- # [19:03] <Zakim> -rhauck
- # [19:03] <Zakim> -BradK
- # [19:03] <Zakim> -[Microsoft]
- # [19:03] <Zakim> -djackson
- # [19:03] <Zakim> -Bert
- # [19:03] * Quits: dael (~djackson@public.cloak) (Client closed connection)
- # [19:03] * Parts: BradK (~bradk@public.cloak) (BradK)
- # [19:03] <Zakim> -jdovey
- # [19:03] <Zakim> -??P44
- # [19:03] <Zakim> -sgalineau
- # [19:03] * Quits: rhauck (~Adium@public.cloak) ("Leaving.")
- # [19:03] * Quits: MaRakow (~MaRakow@public.cloak) ("Page closed")
- # [19:03] * Quits: jdovey (~jdovey@public.cloak) (jdovey)
- # [19:03] <SteveZ> SteveZ: so it amounts to if you want frame rate to have priority say, "auto" and if you want image quality to have priority say, "smooth"
- # [19:03] <Zakim> -SteveZ
- # [19:04] <Zakim> Style_CSS FP()12:00PM has ended
- # [19:04] <Zakim> Attendees were rhauck, plinss, krit, djackson, sgalineau, glazou, fantasai, antonp, SimonSapin, Stearns, SteveZ, dbaron, jdovey, hober, smfr, BradK, Rossen, [Microsoft],
- # [19:04] <Zakim> ... JohnJansen, Bert, arronei, MaRakow, nvdbleek, Tab_Atkins, Tantek
- # [19:04] * Quits: glazou (~glazou@public.cloak) (glazou)
- # [19:04] * Joins: jdovey (~jdovey@public.cloak)
- # [19:04] * Parts: jdovey (~jdovey@public.cloak) (jdovey)
- # [19:04] <SteveZ> rrsagent, make minutes
- # [19:04] <RRSAgent> I have made the request to generate http://www.w3.org/2013/04/03-css-minutes.html SteveZ
- # [19:06] * plh2 is now known as plh
- # [19:11] * Joins: rhauck (~Adium@public.cloak)
- # [19:13] * Quits: SimonSapin (~simon@public.cloak) (Ping timeout: 60 seconds)
- # [19:16] * Quits: JohnJansen (~JohnJansen@public.cloak) ("Page closed")
- # [19:17] * Quits: tmpsantos (~tmpsantos@public.cloak) ("Leaving")
- # [19:20] * Joins: darktears (~darktears@public.cloak)
- # [19:24] * Quits: Rossen (~Rossen@public.cloak) ("Page closed")
- # [19:25] * Parts: smfr (~smfr@public.cloak) (smfr)
- # [19:25] * Quits: koji (~koji@public.cloak) ("Leaving...")
- # [19:26] * Quits: nvdbleek (~nvdbleek@public.cloak) (nvdbleek)
- # [19:30] * Quits: krit (~krit@public.cloak) ("Leaving.")
- # [19:30] * Joins: krit (~krit@public.cloak)
- # [19:35] * Joins: zcorpan (~zcorpan@public.cloak)
- # [19:37] * Joins: glenn (~gadams@public.cloak)
- # [19:39] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [19:43] * Quits: teoli (~teoli@public.cloak) (Client closed connection)
- # [19:51] * Quits: abucur (~Adium@public.cloak) ("Leaving.")
- # [19:52] * Quits: israelh (~israelh@public.cloak) ("Page closed")
- # [19:52] * Joins: SimonSapin (~simon@public.cloak)
- # [19:56] * Quits: emalasky (~Adium@public.cloak) ("Leaving.")
- # [19:58] * Joins: rhauck1 (~Adium@public.cloak)
- # [19:59] * Quits: rhauck (~Adium@public.cloak) (Ping timeout: 60 seconds)
- # [20:00] * Joins: emalasky (~Adium@public.cloak)
- # [20:20] * Joins: abucur (~abucur@public.cloak)
- # [20:25] * Quits: logbot (~logbot@public.cloak) (Ping timeout: 60 seconds)
- # [20:26] * Joins: logbot (~logbot@public.cloak)
- # [20:38] * Joins: tantek (~tantek@public.cloak)
- # [20:42] * Quits: dbaron (~dbaron@public.cloak) (Ping timeout: 60 seconds)
- # [20:46] * Joins: raz (~raz@public.cloak)
- # [20:46] * Joins: SimonSapin1 (~simon@public.cloak)
- # [20:48] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [20:49] * plh is now known as plh-brb
- # [20:54] * Joins: teoli (~teoli@public.cloak)
- # [20:59] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
- # [20:59] * Quits: teoli (~teoli@public.cloak) (Ping timeout: 60 seconds)
- # [20:59] * Zakim excuses himself; his presence no longer seems to be needed
- # [20:59] * Parts: Zakim (zakim@public.cloak) (Zakim)
- # [21:00] * Joins: teoli (~teoli@public.cloak)
- # [21:00] * Quits: teoli (~teoli@public.cloak) (Client closed connection)
- # [21:01] * Quits: rhauck1 (~Adium@public.cloak) ("Leaving.")
- # [21:01] * Quits: emalasky (~Adium@public.cloak) ("Leaving.")
- # [21:02] * Joins: emalasky (~Adium@public.cloak)
- # [21:02] * Quits: emalasky (~Adium@public.cloak) ("Leaving.")
- # [21:10] * Joins: zcorpan (~zcorpan@public.cloak)
- # [21:14] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
- # [21:15] * Joins: rhauck (~Adium@public.cloak)
- # [21:17] * Joins: zcorpan (~zcorpan@public.cloak)
- # [21:24] * plh-brb is now known as plh
- # [21:26] * Joins: lar_zzz (~lar_zzz@public.cloak)
- # [21:30] <raz> hi!
- # [21:30] <raz> I have sent a mail to www-style-request@w3.org a couple of weeks ago and got an automated reply back saying that I needed manual approval
- # [21:33] <Ms2ger> plh, would that be something you know about?
- # [21:33] * Quits: sgalineau (~sgalineau@public.cloak) (Client closed connection)
- # [21:33] <raz> it suggested to ask the mailing list maintainer if the mail didn't get approved - is this the right place to ask?
- # [21:34] <fantasai> raz: Bert would know
- # [21:35] <fantasai> raz: bert@w3.org
- # [21:35] <raz> fantasai: thank you, should I send an email there?
- # [21:36] <fantasai> raz: IIRC, if you're subscribed to www-style, you won't need approval to send mail there. But you want to send to www-style@, not www-style-request@. www-style-request@ is for subscribing/unsubscribing
- # [21:36] <fantasai> raz: Yeah, he's the list moderator
- # [21:38] <raz> fantasai: my mistake, I sent the mail to the correct address (www-style@w3.org), but copy/pasted the wrong one (www-style-request@w3.org)
- # [21:38] <raz> will send him an email then, thank you!
- # [21:39] <fantasai> np!
- # [21:39] * Quits: lar_zzz (~lar_zzz@public.cloak) ("Leaving.")
- # [21:41] <plh> raz, couldn't locate anything obvious in our systems
- # [21:45] <raz> plh: do you mean that my mail has either been approved already or it disappeared/never got there? :)
- # [21:47] <raz> plh: are you Bert? mind if I forward you the email I received from www-style-request@w3.org, maybe I've just done something wrong
- # [21:48] <plh> I mean, I didn't find traces of it. What was the subject of your email?
- # [21:48] <Ms2ger> raz, no, Bert is Bert :)
- # [21:48] <plh> and no, I'm not Bert, I can still help you :)
- # [21:49] <raz> plh: ok :) the subject is: "[selectors4] siblings and pseudo-elements"
- # [21:53] <plh> From dario...@gmail.com Fri Mar 22 13:22:53 2013
- # [21:53] <raz> that's the one!
- # [21:53] <plh> ok, so Bert has it in his inbox. it's waiting on his moderation
- # [21:55] <plh> sending an email to bert@w3.org, pinging him, should do the trick
- # [21:57] <raz> plh: I'll do that, thank you for checking! :)
- # [21:59] * Joins: emalasky (~Adium@public.cloak)
- # [22:00] * Parts: emalasky (~Adium@public.cloak) (emalasky)
- # [22:13] * Joins: dbaron (~dbaron@public.cloak)
- # [22:16] * Joins: jarek (~jarek@public.cloak)
- # [22:18] * Quits: plh (plehegar@public.cloak) (Client closed connection)
- # [22:25] * Quits: raz (~raz@public.cloak) (Ping timeout: 60 seconds)
- # [22:28] <krit> fantasai: ping
- # [22:31] <fantasai> krit: pong
- # [22:31] <krit> fantasai: Some values like <repeat-style> and <position> are either just specified by CSS3BG or partly by CSS3Val
- # [22:31] <krit> fantasai: Sorry, Hi first :)
- # [22:31] <krit> fantasai: should I still remove the defintion on Masking?
- # [22:31] <krit> fantasai: https://dvcs.w3.org/hg/FXTF/raw-file/tip/masking/index.html#mask-position0
- # [22:31] <krit> fantasai: as one example
- # [22:32] <TabAtkins_> Yes, please. Just refer to the other specs for those tersm.
- # [22:32] <fantasai> krit: <position> should probably refer to css3-values
- # [22:32] <fantasai> krit: Yes, agree with Tab :)
- # [22:32] * Quits: Ms2ger (~Ms2ger@public.cloak) ("nn")
- # [22:32] <krit> TabAtkins_: I just fear that it is less clear for web authors...
- # [22:32] <krit> TabAtkins_: for implementers it is probably fine
- # [22:32] <fantasai> krit: As long as you're hyperlinking well, I think it should be fine
- # [22:33] <TabAtkins_> krit: Better to optimize for implementors and maintainability here.
- # [22:33] <TabAtkins_> And yes, hyperlink.
- # [22:33] <krit> TabAtkins_: Do you know why we did not want to use child() but used select() instead? https://dvcs.w3.org/hg/FXTF/raw-file/tip/masking/index.html#the-mask-image
- # [22:34] <TabAtkins_> I don't remember. Birtles probably would.
- # [22:34] <krit> TabAtkins_: I thought it was because of the child keyword but not sure anymore
- # [22:35] <krit> TabAtkins_: fantasai: Another question to elements in CSS specs, how do we differ between elements and values? <image> to <image>
- # [22:36] <krit> TabAtkins_: fantasai: Both exist as value as well as element
- # [22:36] <TabAtkins_> It's clear from context there, and we always use terminology like "the <foo> element".
- # [22:36] <fantasai> I use <code><tagname<</code> for elements
- # [22:36] <fantasai> And <var><type></var> for types
- # [22:36] <krit> TabAtkins_: I ususally write 'image' element, so could be the same
- # [22:37] <fantasai> krit: You have a slightly more complicated situation, because your spec defines elements, they're a first class citizen, not a thing only used for examples :)
- # [22:37] <krit> fantasai: I do as well, but the post processor transforms <var> to <code>
- # [22:37] <fantasai> o_O
- # [22:37] <fantasai> That seems inappropriate
- # [22:38] <TabAtkins_> lolwut
- # [22:38] <TabAtkins_> krit: Use a better processor.
- # [22:38] <krit> correction, <dfn> is transformed to <code>
- # [22:38] <fantasai> (Tab is advertising his own.)
- # [22:38] <hober> http://i.imgur.com/Q3cUg29.gif
- # [22:38] <TabAtkins_> lolwut
- # [22:38] <fantasai> um. That is really bad
- # [22:38] <fantasai> It should most definitely not do that
- # [22:38] <krit> hehe
- # [22:38] <TabAtkins_> That's the dumbest thing ever.
- # [22:38] <TabAtkins_> I blame heycam.
- # [22:39] <krit> TabAtkins_: ?
- # [22:39] <TabAtkins_> Isn't the processor heycam's?
- # [22:39] <krit> TabAtkins_: I meant postprocessor
- # [22:39] <TabAtkins_> Okay, I don't know what your workflow is apparently.
- # [22:40] <krit> TabAtkins_: however, the preprocessor indeed transforms it to code
- # [22:40] <krit> TabAtkins_: well, fantasai said that she uses <code> for elements anyway
- # [22:40] <krit> TabAtkins_: at least here there would be a consensus
- # [22:41] <TabAtkins_> No, you're misunderstanding.
- # [22:41] <krit> maybe
- # [22:41] <TabAtkins_> She uses <code> to refer to *instances* of elements.
- # [22:41] <TabAtkins_> We don't define any elements in CSS, but if we did, they'd be in <dfn>s like all the other definitions.
- # [22:41] <TabAtkins_> Probably <dfn><code><element></code></dfn>
- # [22:41] <krit> k
- # [22:42] <krit> fantasai: btw, Thank you very much for your detailed review so far!
- # [22:43] <fantasai> krit: You're welcome!
- # [22:43] <fantasai> krit: If you can respond to http://lists.w3.org/Archives/Public/public-fx/2013AprJun/0005.html , that would help me with understanding what I'm reviewing better. ^_^
- # [22:44] <krit> fantasai: missed this mail :P Looking now...
- # [22:46] <fantasai> TabAtkins_: http://lists.w3.org/Archives/Public/www-style/2009Nov/0226.html
- # [22:46] <fantasai> https://bugs.webkit.org/show_bug.cgi?id=31196
- # [22:54] * Joins: tantek (~tantek@public.cloak)
- # [22:57] * Joins: rhauck1 (~Adium@public.cloak)
- # [22:58] <fantasai> TabAtkins_: http://lists.w3.org/Archives/Public/www-style/2012Aug/0894.html
- # [22:59] <fantasai> TabAtkins_: http://www.w3.org/blog/CSS/2012/08/30/resolutions-53/
- # [22:59] * Quits: rhauck (~Adium@public.cloak) (Ping timeout: 60 seconds)
- # [23:26] * Quits: jarek (~jarek@public.cloak) (jarek)
- # Session Close: Thu Apr 04 00:00:00 2013
The end :)