/irc-logs / w3c / #css / 2010-09-29 / end

Options:

  1. # Session Start: Wed Sep 29 00:00:00 2010
  2. # Session Ident: #css
  3. # [00:03] * Joins: karl (karlcow@128.30.54.58)
  4. # [01:50] * Quits: dbaron (dbaron@63.245.220.240) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  5. # [02:37] * Joins: dbaron (dbaron@63.245.220.240)
  6. # [05:00] <fantasai> hyatt: I think for consistency we should either translate *all* x-y pairs of things, or none of them
  7. # [05:00] <hyatt> yeah i agree with that
  8. # [05:00] <hyatt> i have a lot of comments now having worked on this for a couple of weeks
  9. # [05:00] <hyatt> and testing in WinIE
  10. # [05:01] <hyatt> there's some interesting stuff about the initial containing block
  11. # [05:01] <hyatt> you need it to assume the same block-flow as the document element
  12. # [05:01] <hyatt> kind of common sense if you think about it, but probably needs to be written down
  13. # [05:02] <hyatt> like if i say <html style="logical-height:100px; block-flow:lr">
  14. # [05:02] <hyatt> that block should be on the left with a width of 100px
  15. # [05:02] <hyatt> and in order for that to happen the ICB has to be block-flow:lr too
  16. # [05:02] <fantasai> are you implementing logical-height/margin-start/etc?
  17. # [05:02] <hyatt> already implemented
  18. # [05:02] <hyatt> every last one
  19. # [05:03] <fantasai> wow
  20. # [05:03] <hyatt> i wasn't sure what to do with replaced elements... i ended up making them have a hardcoded block-flow: tb !important basically
  21. # [05:03] <fantasai> how'd you deal with the cascade?
  22. # [05:03] <fantasai> I don't think that's the right thing to do with replaced elements
  23. # [05:03] <hyatt> yeah i wasn't sure
  24. # [05:03] <fantasai> because the margin-start should still be on the start side
  25. # [05:04] <fantasai> the contents should not be rotated
  26. # [05:04] <fantasai> but everything else should be
  27. # [05:04] <hyatt> you think the borders would rotate etc?
  28. # [05:04] <fantasai> no
  29. # [05:04] <fantasai> sorry
  30. # [05:04] <fantasai> not rotated
  31. # [05:04] <fantasai> but, 'start/end' should match the containing block
  32. # [05:05] <fantasai> although, hm, maybe that should be the case for all elements
  33. # [05:05] <fantasai> but yeah, how did you handle the cascade?
  34. # [05:05] <fantasai> because that's one of the major sticking points with speccing those things
  35. # [05:05] <hyatt> maybe give me an example and i can tell you if i handled it? :)
  36. # [05:05] <fantasai> p { margin-left: 2em; margin-start: 3em; }
  37. # [05:05] <hyatt> we just map them into the physical property at style resolution time
  38. # [05:05] <hyatt> so yeah in that example margin-left is 3edm
  39. # [05:05] <hyatt> 3em
  40. # [05:06] <fantasai> p { margin-end: 5em; margin-right: 6em; }
  41. # [05:06] <hyatt> we just look at the element's block-flow and direction
  42. # [05:06] <hyatt> and make a decision
  43. # [05:06] <hyatt> and map it to the physical side
  44. # [05:06] <hyatt> which seems to me to be the sensible way to handle it
  45. # [05:06] <fantasai> when?
  46. # [05:06] <fantasai> what's the result for tha bove?
  47. # [05:07] <hyatt> for the 2nd example, 6em would be the right margin...
  48. # [05:07] <hyatt> assuming tb-lr
  49. # [05:07] <fantasai> right
  50. # [05:07] <fantasai> style resolution means what?
  51. # [05:07] <hyatt> when we first compute the style information for the element
  52. # [05:07] <hyatt> when we examine the rules
  53. # [05:08] <hyatt> we do a first pass to determine certain properties (like font, block-flow, direction)
  54. # [05:08] <hyatt> anything that other properties could depend on
  55. # [05:08] <hyatt> and then in the second pass we can resolve direction-aware logical properties to their physical sides
  56. # [05:08] <fantasai> so you cascade twice?
  57. # [05:08] <fantasai> once for the first et of properties, one for the second?
  58. # [05:08] <hyatt> well the set of properties is mutually exclusive
  59. # [05:09] <fantasai> right
  60. # [05:09] <fantasai> but
  61. # [05:09] <hyatt> so it's just that we figure out the values for block-flow and direction
  62. # [05:09] <hyatt> first
  63. # [05:09] <hyatt> and then knowing those we can resolve margin-end etc. correctly
  64. # [05:09] <fantasai> ok
  65. # [05:09] <fantasai> cool
  66. # [05:09] <fantasai> well
  67. # [05:09] <fantasai> I'm glad to hear that's workingout
  68. # [05:09] <hyatt> which is why i really would not want there to be some kind of mismatch at rendering time
  69. # [05:10] <fantasai> so
  70. # [05:10] <fantasai> for x-y coordinate pairs
  71. # [05:10] <hyatt> like if margin-start for a replaced element needs to match teh containing block's margin start
  72. # [05:10] <hyatt> then i'd prefer it do so by having the block-flow match the containing block's block flow
  73. # [05:10] <fantasai> makes sense
  74. # [05:10] <hyatt> i don't happen to think it does need to match though
  75. # [05:10] <fantasai> I think it does
  76. # [05:10] <fantasai> otherwise that logic isn't useful for determining spacing
  77. # [05:11] <fantasai> if I set margin-start and -end on a replaced element expecting it to space the element from its surrounding contents
  78. # [05:11] <fantasai> your !important rule would break that assumption
  79. # [05:11] <fantasai> I think the contents of replaced elements just shouldn't rotate
  80. # [05:12] <hyatt> that would be fine with me
  81. # [05:12] <hyatt> as long as the block-flow of the replaced element was how i determine margin-start / end
  82. # [05:12] <hyatt> i guess i agree with that conceptually
  83. # [05:12] <hyatt> it's kind of like having an upright glyph
  84. # [05:12] <hyatt> if you think of the replaced element as a "glyph"
  85. # [05:12] <fantasai> yeah
  86. # [05:12] <hyatt> but it would mean the borders rotate if you say border-start
  87. # [05:12] <hyatt> border-end
  88. # [05:13] <hyatt> but that makes sense to me
  89. # [05:13] <fantasai> rotate wrt the image, yes
  90. # [05:13] <hyatt> yes
  91. # [05:13] <fantasai> but if you wanted them physical
  92. # [05:13] <hyatt> ok i like this idea
  93. # [05:13] <fantasai> then you use physical properties
  94. # [05:13] <hyatt> sure
  95. # [05:13] <hyatt> i'll implement the rotation
  96. # [05:13] <hyatt> of the contents
  97. # [05:13] <hyatt> oh the other thing is that blocks with different directionality than their parent
  98. # [05:13] <hyatt> differeent block-flow
  99. # [05:14] <hyatt> should establish a block formatting context
  100. # [05:14] <hyatt> i don't know if the spec says that yet
  101. # [05:14] <fantasai> oh
  102. # [05:14] <fantasai> of course
  103. # [05:14] <fantasai> I don't think it does
  104. # [05:14] <fantasai> I haven't really written up that section yet
  105. # [05:14] <fantasai> it's in my notes somewhere :)
  106. # [05:14] <hyatt> yeah so the iCB, replaced elements, block formatting context
  107. # [05:14] <hyatt> what else did i run into
  108. # [05:14] <fantasai> x-y coordinate pairs
  109. # [05:14] <hyatt> when to apply auto margins is interesting
  110. # [05:14] <hyatt> i matched winie
  111. # [05:15] <fantasai> ?
  112. # [05:15] <hyatt> and kind of agree with them
  113. # [05:15] <hyatt> if a child block has different directoinality than a parent block
  114. # [05:15] <fantasai> what do you mean?
  115. # [05:15] <hyatt> auto margins center you in the containing block's inline direction
  116. # [05:15] <hyatt> but not in the child's
  117. # [05:15] <fantasai> right
  118. # [05:15] <fantasai> that makes sense
  119. # [05:15] <hyatt> which makes sense
  120. # [05:15] <hyatt> another thing
  121. # [05:15] <fantasai> if I have a block with vertical writing mode in a horizontal writing mode container
  122. # [05:16] <hyatt> when a child uses percentages on something like margin/border/padding it is relative to the logical width of the containing block
  123. # [05:16] <fantasai> then it lays out as if it were in a container of fixed height and infinite width
  124. # [05:16] <hyatt> regardless of if the block has a different directionality than the containing block
  125. # [05:16] <fantasai> and its margins participate in its containing block's formatting context
  126. # [05:16] <hyatt> which your draft says
  127. # [05:16] <hyatt> but if a child uses percentages on width/height etc., it's relative to the specific physical axis that matches of the containing block
  128. # [05:16] <hyatt> i don't think the draft is so clear about that
  129. # [05:17] <hyatt> so you can't just say logical width of a child percentage uses logical width of container
  130. # [05:17] <hyatt> i didn't do the infinite width thing for now
  131. # [05:17] <hyatt> i matched winie which uses the viewport height/width instead of infinity
  132. # [05:17] <hyatt> but it's easy to change
  133. # [05:17] <hyatt> i put a big fixme in it
  134. # [05:18] <fantasai> heh
  135. # [05:18] <fantasai> um
  136. # [05:18] <hyatt> this is a crazy project
  137. # [05:18] <hyatt> i'm like
  138. # [05:18] <hyatt> renaming every layout function in the fricking engine
  139. # [05:18] <fantasai> ok, I think I understand what you're saying
  140. # [05:18] <fantasai> haha, yeah
  141. # [05:19] * fantasai is glad krijnh is logging
  142. # [05:20] <fantasai> so, x-y coordinates...
  143. # [05:20] <hyatt> i couldn't make my mind up about them
  144. # [05:20] <fantasai> My preference is to make them logical
  145. # [05:20] <hyatt> mine is too
  146. # [05:20] <hyatt> it was my first impulse at least
  147. # [05:20] <fantasai> and allow physical by use of a flag
  148. # [05:20] <hyatt> i guess i'm kind of falling into the camp of "it should be easy to write code that flips if you just change block-flow on a root"
  149. # [05:20] <fantasai> [physical | logical]? or something
  150. # [05:21] <fantasai> that's been my camp, but it's hard to fall into it when nobody wants to implement logical properties :)
  151. # [05:21] <hyatt> wow i didn't even know there was a debate
  152. # [05:21] <fantasai> but if you're doing it and Antenna House is doing it, then we have the basis for a standard
  153. # [05:21] <hyatt> they're barely any code to implement
  154. # [05:21] <hyatt> they're a joke
  155. # [05:21] <fantasai> The argument is that it adds too many new properites
  156. # [05:21] <hyatt> oh that's just silly
  157. # [05:22] * fantasai laughs
  158. # [05:22] <hyatt> we add properties like popping candy
  159. # [05:22] <hyatt> so yeah
  160. # [05:22] <hyatt> that doesn't bother me
  161. # [05:22] <hyatt> and they aren't real
  162. # [05:22] <hyatt> they just map to the physical
  163. # [05:22] <hyatt> so in terms of extra engine code
  164. # [05:22] <hyatt> it's nothing
  165. # [05:22] <fantasai> it's just storing the property name keys, pretty much
  166. # [05:22] <hyatt> exactly
  167. # [05:22] <hyatt> and writing one little function to resolve the sides
  168. # [05:22] <fantasai> which is what I tried to argue :)
  169. # [05:22] <hyatt> which is easy
  170. # [05:22] <fantasai> but whatever
  171. # [05:22] <hyatt> well 2 impls
  172. # [05:23] <hyatt> roar
  173. # [05:23] <hyatt> i hate the second solution
  174. # [05:23] <hyatt> hate hate hate
  175. # [05:23] <fantasai> ?
  176. # [05:23] <fantasai> which one?
  177. # [05:23] <hyatt> the logical/physical toggle would be so horrible
  178. # [05:23] <hyatt> if you tell me top means something different
  179. # [05:23] <hyatt> now you force me to abstract painting
  180. # [05:23] <hyatt> the 1st solution just forces me to abstract layout
  181. # [05:23] <hyatt> the 2nd one forces me to abstract the physical access for painting
  182. # [05:23] <hyatt> and other non-layout uses
  183. # [05:23] <hyatt> if borderTop doesn't mean borderTop any more that would just be like.... gah
  184. # [05:24] <hyatt> "directional-mode"
  185. # [05:24] <hyatt> gah
  186. # [05:24] <hyatt> no
  187. # [05:24] <fantasai> got it
  188. # [05:24] <hyatt> like that would be so horrible to implement
  189. # [05:24] <fantasai> Well, that makes my job easier
  190. # [05:24] <hyatt> you'd have to introduce indirection into the access of physical properties
  191. # [05:24] <hyatt> from the engine
  192. # [05:24] <fantasai> Don't have to write two different specs before TPAC
  193. # [05:25] <hyatt> yeah the first proposal is fully implemented
  194. # [05:25] <hyatt> i added every single one
  195. # [05:25] <hyatt> heck i even added new properties for our made-up properties!
  196. # [05:25] <hyatt> margin-top-collapse became margin-before-collapse etc
  197. # [05:25] <hyatt> lol
  198. # [05:26] <fantasai> actually, it probably should just be margin-before-collapse
  199. # [05:26] <fantasai> I don't think margin-top-collapse is necessary
  200. # [05:26] <fantasai> margin-top doesn't collapse unless it's in horizontal mode anyway
  201. # [05:27] <hyatt> you're exactly right
  202. # [05:27] <fantasai> so just rename it :)
  203. # [05:27] <hyatt> what i ended up doing is just aliasing top/bottom to before/after
  204. # [05:27] <fantasai> alias the old version if you need to
  205. # [05:27] <fantasai> yeah
  206. # [05:27] <hyatt> for backwards compat
  207. # [05:27] <hyatt> since this is used by safari rss
  208. # [05:28] <hyatt> i did not add a left/right collapse
  209. # [05:28] <hyatt> just before/after are the real one now
  210. # [05:28] <fantasai> nice
  211. # [05:28] <hyatt> i'm working on margin collapsing now
  212. # [05:28] <hyatt> it's complicated
  213. # [05:28] <fantasai> huh
  214. # [05:28] <hyatt> just making sure i get the correct margin is all
  215. # [05:28] <fantasai> ah
  216. # [05:28] <fantasai> can you send me a dump of your property list?
  217. # [05:29] <fantasai> would like to make sure we have everything listed in the spec
  218. # [05:29] <hyatt> i don't have to. it exactly matches the spec.
  219. # [05:29] <hyatt> there may be something we haven't thought of
  220. # [05:29] <fantasai> k
  221. # [05:29] <hyatt> in which case i haven't implemented it yet :)
  222. # [05:29] <fantasai> do you have start/end keywords for background-position?
  223. # [05:30] <hyatt> no i haven't gotten that far
  224. # [05:30] <fantasai> k
  225. # [05:30] <hyatt> no new keywords for anything
  226. # [05:30] <fantasai> k
  227. # [05:30] <hyatt> i'm kind of going from the outside in
  228. # [05:30] <hyatt> so got the view working in LR mode
  229. # [05:30] <fantasai> makes sense
  230. # [05:30] <hyatt> now i'm doing block layout of block children
  231. # [05:30] <hyatt> so that i can actually get some blocks placed
  232. # [05:30] <hyatt> :)
  233. # [05:30] <fantasai> :)
  234. # [05:30] <hyatt> then i'll do lines
  235. # [05:30] <hyatt> then floats/positioning
  236. # [05:31] <hyatt> probably tables after that
  237. # [05:31] <hyatt> then flex boxes, ruby, marquees, argh
  238. # [05:31] <hyatt> columns
  239. # [05:31] <hyatt> printing
  240. # [05:31] <hyatt> this is not small.
  241. # [05:31] <hyatt> :)
  242. # [05:31] <fantasai> I know :)
  243. # [05:31] <hyatt> so antenna house supports the logical properties? that's good news.
  244. # [05:31] <hyatt> since i support them too
  245. # [05:31] <hyatt> who hated them
  246. # [05:32] <fantasai> I'd say at least half the WG
  247. # [05:32] <hyatt> when they start implementing then they can talk.
  248. # [05:32] <hyatt> ;)
  249. # [05:32] <fantasai> :)
  250. # [05:33] <fantasai> For the position ones... I would suggest to use position-before/start/end/after
  251. # [05:33] <fantasai> rather than just before/start/end/after
  252. # [05:33] <fantasai> I wish top/left/right/bottom did the same
  253. # [05:33] <fantasai> but it gets really ambiguous with the new set
  254. # [05:33] <fantasai> what this property means
  255. # [05:33] <hyatt> you mean position: position-before?
  256. # [05:33] <fantasai> no
  257. # [05:33] <fantasai> position-before: 40%
  258. # [05:33] <fantasai> instead of
  259. # [05:33] <fantasai> top: 40%
  260. # [05:33] <hyatt> left:
  261. # [05:34] <hyatt> i see
  262. # [05:34] <hyatt> i'll just wait for you to write something down and then do it
  263. # [05:34] <fantasai> heh
  264. # [05:34] <hyatt> will be a few weeks before i get to positioned elements
  265. # [05:34] <fantasai> I think today I'm going to work on the intro mostly
  266. # [05:34] <fantasai> and text-orientation
  267. # [05:35] <hyatt> what is text-orientation
  268. # [05:36] <hyatt> is it like the glyph-orientation thign?
  269. # [05:36] <hyatt> thing?
  270. # [05:38] <hyatt> like on the logical properties just to give you an idea
  271. # [05:38] <hyatt> it took me about 45 minutes to add them
  272. # [05:38] <hyatt> including writing tests
  273. # [05:38] <hyatt> so i think it's really silly for people to think they are some great burden
  274. # [05:38] <hyatt> :)
  275. # [05:41] <fantasai> 45 minutes for you equals, what, 5 days for anyone else? ;)
  276. # [05:41] <fantasai> text-orientation is like glyph-orientation
  277. # [05:41] <fantasai> except it's smarter about things
  278. # [05:41] <hyatt> ok
  279. # [05:41] * Joins: Figaroo (Figaroo@70.234.3.170)
  280. # [05:41] <fantasai> every value of glyph-orientation except 'auto' is ...
  281. # [05:42] <fantasai> not intelligent about correctly handling things the designer of said property hadn't thought of
  282. # [05:42] <Figaroo> Are there any plans for standardizing webkit's scrollbar psuedoelements?
  283. # [05:45] <hyatt> Figaroo: not really
  284. # [05:45] <hyatt> unless there is a whole lot of interest in them
  285. # [05:46] <Figaroo> It appears twitter is already taking advantage of webkit's implementation, if that's of any significants?
  286. # [05:46] <hyatt> those were primarily added so itunes could get its custom scrollbar look
  287. # [05:46] <hyatt> heh
  288. # [05:46] <hyatt> twitter is? cool
  289. # [05:46] <Figaroo> I misspelled significance*
  290. # [05:46] <hyatt> we never really proposed them since we didn't think anyone cared
  291. # [05:47] <Figaroo> the #newtwitter
  292. # [05:47] <Figaroo> I still feel that the way webkit does things is a little complicated though.
  293. # [05:47] <hyatt> fantasai: another thing i'm kind of terrified about is overflow scrollbars and block-flow
  294. # [05:48] <hyatt> Figaroo: yeah the way webkit does things is to support itunes insanely complicated scrollbar look
  295. # [05:48] <hyatt> there are features no sane person would probably even care about
  296. # [05:49] <Figaroo> So with some tweeking of the spec it would be fantastic!
  297. # [05:49] <hyatt> yeah although we would have to support enough to keep itunes working
  298. # [05:49] <Figaroo> What are you talking about overflow and block-flow?
  299. # [05:49] <hyatt> i'm not sure how scrollbars should render for different block-flow values
  300. # [05:49] <hyatt> or how i should implement it
  301. # [05:50] <Figaroo> I'm not familiar with block-flow, could you give me an example?
  302. # [05:50] <hyatt> http://dev.w3.org/csswg/css3-text-layout/
  303. # [05:50] <hyatt> it's vertical text basically
  304. # [05:51] <Figaroo> Are talking about different block-flow and overflow vallues for each psuedo element in the scrollbar?
  305. # [05:51] <hyatt> nah just about where the scrollbars go in general
  306. # [05:51] <hyatt> brb
  307. # [05:52] <Figaroo> k
  308. # [05:53] * Quits: dbaron (dbaron@63.245.220.240) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  309. # [05:58] <Figaroo> hyatt, when you get back: What concerns do you have with block-flow and scrollbars?
  310. # [06:00] <fantasai> hyatt: I don't think there's anything to be concerned about. scrollbars should be positioned consistently throughout the page, i.e. according to the user's OS settings
  311. # [06:01] <fantasai> hyatt: The only difference is which way they're allowed to scroll
  312. # [06:01] <fantasai> hyatt: you want the origin in the start before corner and allow scrolling down to the end after corner
  313. # [06:10] <fantasai> hyatt: also... I am wondering if we can alter the terms to be more consistent with multicol somehow
  314. # [06:10] <fantasai> hyatt: that uses width and length as logical properties
  315. # [06:11] <fantasai> hyatt: which would mean height and something else as physical properties
  316. # [06:11] * fantasai can't come up with any synonyms for width though. :/
  317. # [06:12] <fantasai> it would make logical variants of width/height less painful to use, though, if they weren't so awkwardly named
  318. # [07:21] * Quits: Figaroo (Figaroo@70.234.3.170) (Quit: Leaving)
  319. # [07:33] <hyatt> fantasai: yeah winie throws the scrollbars on different box sides
  320. # [07:33] <hyatt> fantasai: which i think is nuts
  321. # [08:19] * Joins: nimbupani (nimbupani@24.22.131.46)
  322. # [08:28] * Disconnected
  323. # [08:29] * Attempting to rejoin channel #css
  324. # [08:29] * Rejoined channel #css
  325. # [08:29] * Topic is 'CSS Working Group discussion'
  326. # [08:29] * Set by fantasai on Mon Aug 02 00:49:50
  327. # [08:32] * Joins: jdaggett (jdaggett@202.221.217.73)
  328. # [09:31] * Quits: nimbupani (nimbupani@24.22.131.46) (Quit: nimbupani)
  329. # [10:40] * Quits: karl (karlcow@128.30.54.58) (Ping timeout)
  330. # [10:41] * Joins: karl (karlcow@128.30.54.58)
  331. # [10:44] * Quits: arronei (arronei@131.107.0.69) (Ping timeout)
  332. # [10:49] * Joins: anne (annevk@83.85.115.123)
  333. # [10:50] * Joins: arronei (arronei@131.107.0.105)
  334. # [11:12] * Quits: jdaggett (jdaggett@202.221.217.73) (Quit: jdaggett)
  335. # [12:04] * Quits: kennyluck (kennyluck@128.30.52.28) (Quit: kennyluck)
  336. # [14:04] * Disconnected
  337. # [14:05] * Attempting to rejoin channel #css
  338. # [14:05] * Rejoined channel #css
  339. # [14:05] * Topic is 'CSS Working Group discussion'
  340. # [14:05] * Set by fantasai on Mon Aug 02 00:49:50
  341. # [14:36] * Joins: karl (karlcow@128.30.54.58)
  342. # [15:01] * Joins: jdaggett (jdaggett@183.77.242.62)
  343. # [15:30] * Joins: kennyluck (kennyluck@128.30.52.28)
  344. # [16:05] * Joins: szilles (chatzilla@67.188.27.37)
  345. # [16:30] * Joins: Ms2ger (Ms2ger@91.181.33.168)
  346. # [16:31] * Joins: nimbupani (nimbupani@24.22.131.46)
  347. # [17:31] * Joins: glazou (glazou@82.247.96.19)
  348. # [17:31] * Joins: Zakim (rrs-bridgg@128.30.52.169)
  349. # [17:31] * Joins: RRSAgent (rrs-loggee@128.30.52.169)
  350. # [17:31] <RRSAgent> logging to http://www.w3.org/2010/09/29-CSS-irc
  351. # [17:31] <glazou> Zakim, this will be Style
  352. # [17:31] <Zakim> ok, glazou; I see Style_CSS FP()12:00PM scheduled to start in 32 minutes
  353. # [17:31] <glazou> RRSAgent, make logs public
  354. # [17:31] <RRSAgent> I have made the request, glazou
  355. # [17:34] * Parts: nimbupani (nimbupani@24.22.131.46)
  356. # [17:51] * Joins: oyvind (oyvinds@213.236.208.22)
  357. # [17:57] <glazou> rhâââ european bridge saturated, as usual
  358. # [17:57] <glazou> Zakim, code?
  359. # [17:57] <Zakim> the conference code is 78953 (tel:+1.617.761.6200 tel:+33.4.26.46.79.03 tel:+44.203.318.0479), glazou
  360. # [18:00] * Joins: murakami (murakami@118.154.209.3)
  361. # [18:00] <Zakim> Style_CSS FP()12:00PM has now started
  362. # [18:00] <Zakim> +glazou
  363. # [18:00] * Joins: bradk (bradk@67.188.133.45)
  364. # [18:01] <Zakim> +[plinss]
  365. # [18:01] * Joins: dethbakin (dethbakin@76.102.99.47)
  366. # [18:01] * Joins: ChrisL (ChrisL@128.30.52.169)
  367. # [18:01] <Zakim> +??P12
  368. # [18:02] <fantasai> Zakim, ??P12 is me
  369. # [18:02] <Zakim> +fantasai; got it
  370. # [18:02] <Zakim> +bradk
  371. # [18:02] * Joins: kojiishi (kojiishi@222.158.227.129)
  372. # [18:03] <Zakim> +??P14
  373. # [18:03] <jdaggett> zakim, p14 is jdaggett
  374. # [18:03] <Zakim> sorry, jdaggett, I do not recognize a party named 'p14'
  375. # [18:03] <jdaggett> zakim, +??P14 is jdaggett
  376. # [18:03] <Zakim> sorry, jdaggett, I do not recognize a party named '+??P14'
  377. # [18:03] <Ms2ger> zakim, ??P14 is jdaggett
  378. # [18:03] <Zakim> +jdaggett; got it
  379. # [18:04] <jdaggett> thx
  380. # [18:04] <glazou> note to self: extra item http://www.w3.org/mid/4C9CC808.7010402@nokia.com
  381. # [18:04] <Ms2ger> np
  382. # [18:04] * Joins: smfr (smfr@72.25.91.178)
  383. # [18:04] <Zakim> +??P18
  384. # [18:04] <Zakim> +ChrisL
  385. # [18:04] * Joins: TabAtkins_ (tabatkins@216.239.45.19)
  386. # [18:05] <Zakim> +[Microsoft]
  387. # [18:05] <Zakim> +smfr
  388. # [18:05] <Zakim> +Bert
  389. # [18:05] <arronei> zakim, microsoft has arronei
  390. # [18:05] <Zakim> + +1.650.214.aaaa
  391. # [18:05] <Zakim> +arronei; got it
  392. # [18:05] <TabAtkins_> zakim, aaaa is me
  393. # [18:05] <Zakim> +TabAtkins_; got it
  394. # [18:06] <glazou> Zakim, who is here?
  395. # [18:06] <Zakim> On the phone I see glazou, [plinss], fantasai, bradk, jdaggett, ??P18, ChrisL, [Microsoft], smfr, Bert, TabAtkins_
  396. # [18:06] <Zakim> [Microsoft] has arronei
  397. # [18:06] * Joins: alexmog (alexmog@131.107.0.117)
  398. # [18:06] <Zakim> On IRC I see TabAtkins_, smfr, kojiishi, ChrisL, dethbakin, bradk, murakami, oyvind, RRSAgent, Zakim, glazou, Ms2ger, szilles, kennyluck, jdaggett, karl, krijnh, arronei, anne,
  399. # [18:06] <Zakim> ... hyatt, tabatkins, shepazu, jgraham, fantasai, plinss_, Bert, plinss, lhnz, Hixie, gsnedders, trackbot
  400. # [18:08] <glazou> Zakim, ??P18 is kojiishi
  401. # [18:08] <Zakim> +kojiishi; got it
  402. # [18:08] <TabAtkins_> ScribeNick: TabAtkins_
  403. # [18:09] <Zakim> +SteveZ
  404. # [18:09] <TabAtkins_> glazou: Request from Art Barstow for extra agenda item.
  405. # [18:09] <glazou> http://www.w3.org/mid/4C9CC808.7010402@nokia.com
  406. # [18:10] <TabAtkins_> glazou: Now, CSS2.1. Where are we with the test suite, IR, etc.?
  407. # [18:10] <TabAtkins_> glazou: First, test suite.
  408. # [18:10] <TabAtkins_> fantasai: There were a bunch of edits checked in by gsnedders about updating metadata.
  409. # [18:10] <TabAtkins_> fantasai: And some other fixes.
  410. # [18:10] <Zakim> +howcome
  411. # [18:10] <TabAtkins_> fantasai: I'm not certain every issue has been addressed. If requested, I could publish a snapshot today.
  412. # [18:10] <TabAtkins_> glazou: What about IR?
  413. # [18:10] <TabAtkins_> smfr: I anticipate that Apple will be able to do test reports.
  414. # [18:11] * Joins: howcome (howcome@80.203.20.94)
  415. # [18:11] <TabAtkins_> smfr: I just need ot know which version to test - we probably won't be able to do this more than once.
  416. # [18:11] <TabAtkins_> arronei: If we were to publish an update, we'll list only the differences from the previous, so you could just run today's testsuite and then run the handful of tests from the new suite.
  417. # [18:11] <TabAtkins_> smfr: That would be fine.
  418. # [18:12] <TabAtkins_> glazou: So for now take the 20100917 version, linked form the testsuite page.
  419. # [18:12] <TabAtkins_> glazou: I pinged Opera and Moz to ask if we could have an impl report from them.
  420. # [18:12] <TabAtkins_> howcome: We should be able to do it, I just need to get the right people internally.
  421. # [18:12] <TabAtkins_> glazou: When do Opera and Apple think they could submit it?
  422. # [18:13] <TabAtkins_> howcome: That's a much harder question to answer. ^_^
  423. # [18:13] <TabAtkins_> glazou: I understand. Mid november, that would be fine. Mid Feb, not so fine.
  424. # [18:13] <TabAtkins_> smfr: We anticipate by the end of Oct, possibly by mid Oct.
  425. # [18:13] <TabAtkins_> howcome: I can't give a date at this point.
  426. # [18:14] * ChrisL can run the tests for Mozilla if that will help; end October sounds realistic. Great to head Opera and Apple stepping up
  427. # [18:14] <TabAtkins_> glazou: Understood; it's not super urgent right now, but we need more IRs more tests that aren't passing in at least 2 yet.
  428. # [18:14] <TabAtkins_> smfr: I implemented a harness that lets you run through the test suite, with a few extra features.
  429. # [18:15] <TabAtkins_> glazou: Great; if you could submit it to the group or www-style it could be useful.
  430. # [18:15] <TabAtkins_> glazou: I would like to warn all members of the WG that some tests require a change of character encoding for the doc, and some browsers reload when they do that.
  431. # [18:15] <TabAtkins_> smfr: Do we have a flag for tests that require a change in character encoding?
  432. # [18:16] <TabAtkins_> TabAtkins_: I don't believe so.
  433. # [18:16] <TabAtkins_> fantasai: Do you mean changing character encoding via UI, via HTTP, via @charset, via <meta>...?
  434. # [18:16] <TabAtkins_> glazou: The ones I was mentioning were about changing it in the UI.
  435. # [18:16] <ChrisL> The ones where usrer interaction is required
  436. # [18:16] <TabAtkins_> fantasai: I think we should mark those as "need user interaction" or do a separate flag.
  437. # [18:16] <TabAtkins_> smfr: I'd prefer a separate flag.
  438. # [18:16] <TabAtkins_> fantasai: Okay.
  439. # [18:17] * Joins: JohnJan (qw3birc@128.30.52.28)
  440. # [18:17] <TabAtkins_> fantasai: Do we need one for general "needs special settings", or should we split it out?
  441. # [18:17] * glazou is really about opera and apple IRs; thanks guys
  442. # [18:17] <glazou> really glad
  443. # [18:17] <TabAtkins_> smfr: I think it's okay to share a flag with user styles.
  444. # [18:17] <TabAtkins_> fantasai: Okay. I can't do that tonight, but I'll look into it.
  445. # [18:17] <Zakim> +[Microsoft.a]
  446. # [18:17] <TabAtkins_> glazou: Enough about the test suite. Bert, you had a list of edits to do.
  447. # [18:18] <TabAtkins_> Bert: I didn't do as much as I had hoped to do. I've done 6, and I think 20 left.
  448. # [18:18] * ChrisL did we hear about IR from Microsoft?
  449. # [18:18] <TabAtkins_> Bert: I assume I can do the remaining edits in 2 weeks.
  450. # [18:18] <TabAtkins_> glazou: Anything blocking any of these?
  451. # [18:18] <TabAtkins_> Bert: I don't think so.
  452. # [18:18] <TabAtkins_> Bert: But I need to review some of Elika's edits.
  453. # [18:19] <Bert> s/Elika's edits/Elika's reviews of my edits/
  454. # [18:19] * Joins: sylvaing (sylvaing@131.107.0.101)
  455. # [18:19] <TabAtkins_> TabAtkins_: I will have the rest of my 2.1 issues on the list by today.
  456. # [18:19] <TabAtkins_> szilles: I sent a message to the list yesterday pointing to the issue I had open.
  457. # [18:19] * sylvaing is unfashionably late
  458. # [18:20] * TabAtkins_ tsk tsk, Sylvain!
  459. # [18:20] <ChrisL> http://wiki.csswg.org/spec/css2.1#issue-198
  460. # [18:20] * sylvaing GPUs don't squat for traffic
  461. # [18:20] <Bert> http://lists.w3.org/Archives/Public/www-style/2010Sep/0674.html
  462. # [18:20] <ChrisL> http://lists.w3.org/Archives/Public/www-style/2010Sep/0674.html
  463. # [18:20] <TabAtkins_> glazou: Can you summarize, Steve?
  464. # [18:21] <TabAtkins_> szilles: The problem is that, with runins, floats inside the runins - how do they relate to floats that precede and follow the runin?
  465. # [18:21] * fantasai proposes marking run-in at risk
  466. # [18:21] <TabAtkins_> szilles: I think we decided in Oslo that runins that run in are rendered/treated as a child of the block. So a float that originally came between the runin and the block is now treated as preceding the runin.
  467. # [18:22] <TabAtkins_> glazou: MS, do you think run-in is sufficiently bad to be at risk?
  468. # [18:23] <TabAtkins_> arronei: runins are pretty much fully implemented in IE and Opera. A few iffy areas around tables, but otherwise the 100+ tests we have are passed by both, and by Safari for many of them.
  469. # [18:23] <TabAtkins_> glazou: So, Elika, is it worth putting it at risk?
  470. # [18:23] <TabAtkins_> fantasai: Eh, if we have interop in everything but floats, that's probably good enough for most people.
  471. # [18:24] <TabAtkins_> szilles: That's separate from the issue at hand, though, about runin and float interaction.
  472. # [18:24] <TabAtkins_> glazou: If it ends up being at risk, we can just mark it undefined.
  473. # [18:24] <TabAtkins_> Bert: I have two things to say.
  474. # [18:25] <TabAtkins_> Bert: First is that the "first line" bit is complicated.
  475. # [18:25] <TabAtkins_> Bert: It's not wrong, it's just unclear I think.
  476. # [18:25] <TabAtkins_> szilles: I'm okay with juts saying "rendered as an inline (refer to section XX)".
  477. # [18:26] <TabAtkins_> Bert: Second was a typo.
  478. # [18:26] * ChrisL can no-one hear me?
  479. # [18:26] * TabAtkins_ No, we can't here you, Chris.
  480. # [18:26] * ChrisL redials
  481. # [18:26] <Zakim> -ChrisL
  482. # [18:26] * TabAtkins_ s/here/hear/
  483. # [18:27] <Zakim> +ChrisL
  484. # [18:28] * ChrisL helooooo????
  485. # [18:28] <glazou> we can't hear you
  486. # [18:28] <Zakim> -ChrisL
  487. # [18:28] <TabAtkins_> szilles: There were comments from bz, but they were just saying that the general area about how floats are painted is undefined, but the actual part I defined is fine.
  488. # [18:28] <glazou> type here pls
  489. # [18:28] <ChrisL> Its is better to me to have normative text included and to put the subfeature at risk
  490. # [18:28] <ChrisL> rather than the whole feature
  491. # [18:28] <ChrisL> or having nio definition and thus no guidance for implementors
  492. # [18:28] <glazou> yes
  493. # [18:29] <bradk> agreed
  494. # [18:29] <TabAtkins_> RESOLVED: Accept szilles' edits regarding floats and runins, but mark the float/runin interaction as at-risk.
  495. # [18:30] * ChrisL "sorry, the number you have reached is not in service" sigh
  496. # [18:30] <TabAtkins_> glazou: Next agenda item would be about CSS3 Color, but tantek isn't on the call and we can't hear Chris.
  497. # [18:30] <TabAtkins_> glazou: We'll skip it and come back.
  498. # [18:30] <ChrisL> noo
  499. # [18:30] <TabAtkins_> glazou: Next is about the style attribute.
  500. # [18:30] <Zakim> +ChrisL
  501. # [18:30] <TabAtkins_> glazou: Bert, I see you sent a request for PR, anything else need to happen?
  502. # [18:31] * TabAtkins_ Still no good, Chris.
  503. # [18:31] <glazou> ChrisL: isn't it YOUR phone ?
  504. # [18:31] <Zakim> -ChrisL
  505. # [18:31] <TabAtkins_> Bert: No, we just need to wait for the telcon.
  506. # [18:31] <TabAtkins_> glazou: next is about epub laiason. Bert?
  507. # [18:31] <TabAtkins_> Bert: w3c has a laiason with the epub group. It's handled by MikeSmith on this side.
  508. # [18:32] <TabAtkins_> Bert: They've asked us to provide more laiason with CSS.
  509. # [18:32] <glazou> plinss_: could you conference ChrisL in ?
  510. # [18:32] <TabAtkins_> Bert: They've shown their schedule for their expected spec, and they seem to be in quite a hurry to get it published.
  511. # [18:32] * ChrisL calls from another phone
  512. # [18:32] <glazou> ok ChrisL
  513. # [18:32] <Zakim> + +39.524.9.aabb
  514. # [18:32] <TabAtkins_> jdaggett: If you dig around in their doc, their set of requirements is fairly jaw-dropping - hyphenation, encoding schemes, etc.
  515. # [18:33] <TabAtkins_> zakim, aabb is ChrisL
  516. # [18:33] <Zakim> +ChrisL; got it
  517. # [18:33] <TabAtkins_> jdaggett: So, what is the goal?
  518. # [18:33] <TabAtkins_> Bert: Good question. I don't have one. I'm asking for how best to coordinate with them; we should also discuss what our goal for coordinating with them as well.
  519. # [18:33] <TabAtkins_> Bert: We should probably tell them that their goal is too high - we can't finish that much of CSS3 in time, but we can do parts of it.
  520. # [18:34] <TabAtkins_> howcome: hyphenation is finished, for example.
  521. # [18:34] <TabAtkins_> Bert: We have good proposals, can they be brought to CR in time?
  522. # [18:34] <TabAtkins_> howcome: I think so, if we fork it out separately.
  523. # [18:34] <TabAtkins_> fantasai: I think I agree with howcome that we can get hyphenation to CR. I'm also trying to get the rest of CSS3 Text to CR, because many of the features they want are in that draft.
  524. # [18:35] <TabAtkins_> Bert: jdaggett, you said there were more features?
  525. # [18:35] <TabAtkins_> jdaggett: Vertical text - we're still arguing about the fundamental properties. It needs to be well-defined by the end of the year.
  526. # [18:35] <TabAtkins_> jdaggett: To meet the epub schedule, at least.
  527. # [18:35] <TabAtkins_> fantasai: We will have two impls by the end of the year.
  528. # [18:35] <TabAtkins_> jdaggett: Impls of what?
  529. # [18:36] <TabAtkins_> fantasai: what Antenna House and what Hyatt wrote for Webkit will be compatible.
  530. # [18:36] <TabAtkins_> jdaggett: What have we agreed upon?
  531. # [18:36] <TabAtkins_> fantasai: AH and Hyatt have implemented logical margins.
  532. # [18:36] <TabAtkins_> howcome: That doens't mean that's what should be defined.
  533. # [18:37] <TabAtkins_> jdaggett: Every time we discuss this we get to a point, but don't put things into a spec.
  534. # [18:37] <TabAtkins_> szilles: What we agreed in Oslo was to see what your proposal was and then discuss it at TPAC.
  535. # [18:37] <TabAtkins_> fantasai: Yes.
  536. # [18:38] <TabAtkins_> Bert: I'd like to go back to coordination with IDPF. Koji, what's your role in there?
  537. # [18:38] <TabAtkins_> kojiishi: I'm willing to take over what Shinyu has been doing.
  538. # [18:38] <TabAtkins_> kojiishi: If you have anything else you expect the IPDF laiason to do beyond what Shinyu has been doing, I can do that.
  539. # [18:38] <TabAtkins_> Bert: You plan to participate in both our meetings and IPDF meetings?
  540. # [18:38] <TabAtkins_> kojiishi: Yes.
  541. # [18:39] <TabAtkins_> kojiishi: [???] is a globalization effort within IPDF. I talk with him often, but I'm otherwise not very familiar with it.
  542. # [18:40] * kennyluck I suppose [???] = Murata
  543. # [18:40] <jdaggett> no ???? = EGLS
  544. # [18:40] <TabAtkins_> s/[???]/EGLS/
  545. # [18:41] <TabAtkins_> kojiishi: i can talk to my contact in IPDF for what they really expect.
  546. # [18:42] <TabAtkins_> howcome: I think something that might help is to have a set of use-cases.
  547. # [18:42] <TabAtkins_> howcome: I think what EPUB is looking for is perhaps simpler than the problem we're seeing on our side.
  548. # [18:43] <TabAtkins_> kojiishi: Vertical text and globalization are on our radar. Hyphenation I'm not tracking right now.
  549. # [18:43] <TabAtkins_> howcome: That's fine. I think the biggest issue we have is vertical text. If we could get proposed use-cases - typical things they need to solve - then we could more easily find a solution for that.
  550. # [18:43] * Quits: lhnz (lhnz@188.223.83.48) (Ping timeout)
  551. # [18:43] <kojiishi> http://code.google.com/p/epub-revision/wiki/EGLS_solutions
  552. # [18:43] <TabAtkins_> szilles: There is a requirements doc that epub is putting out.
  553. # [18:44] <TabAtkins_> kojiishi: They haven't finished the prioritization quite yet. They should have it be their meeting on Oct 5th.
  554. # [18:44] <TabAtkins_> kojiishi: I'll be attending that meeting.
  555. # [18:45] * Joins: lhnz (lhnz@188.223.83.48)
  556. # [18:45] <TabAtkins_> kojiishi: Hopefully we'll find out what we're missing and what items are high priority.
  557. # [18:45] <TabAtkins_> szilles: I believe Adobe will also have a rep on that meeting, though not me.
  558. # [18:45] <TabAtkins_> Bert: Would it be possible to have reps come to our meeting in Lyon in November?
  559. # [18:45] <TabAtkins_> glazou: That would be fine with me.
  560. # [18:45] * kennyluck SZilles: Yes, Yamamoto-san from Adobe
  561. # [18:45] <TabAtkins_> Bert: That we could probably ask via MikeSmith.
  562. # [18:46] <TabAtkins_> Action Bert: Ping MikeSmith about getting IPDF people at TPAC.
  563. # [18:46] * trackbot noticed an ACTION. Trying to create it.
  564. # [18:46] * RRSAgent records action 1
  565. # [18:46] <trackbot> Created ACTION-268 - Ping MikeSmith about getting IPDF people at TPAC. [on Bert Bos - due 2010-10-06].
  566. # [18:46] <murakami> s/IPDF/IDPF/
  567. # [18:46] <TabAtkins_> glazou: We need a laiason; the deadlines of CSS and EPUB don't quite match; we need a closer discussion with EPUB people to really decide something.
  568. # [18:47] <TabAtkins_> ChrisL: Are the EPUB deadlines hard, or are they just a guess?
  569. # [18:47] <TabAtkins_> szilles: I believe they're actually trying to operate toward those deadlines.
  570. # [18:47] * sylvaing i.e. are they like implementation report deadlines, or are they deadlines ? :)
  571. # [18:47] <TabAtkins_> szilles: EPUB primarily wants to base their work on existing standards.
  572. # [18:47] <TabAtkins_> szilles: There was something that Sharp and related companies put together a while back that they're pushing to use.
  573. # [18:48] <TabAtkins_> szilles: The real problem is having something in the near term that would better align with w3c's tech than some of th ealternatives.
  574. # [18:48] <TabAtkins_> szilles: That's partly why teh deadlines are so short.
  575. # [18:49] * TabAtkins_ Chris, I missed that part of what you said, unfortunately.
  576. # [18:49] * TabAtkins_ ChrisL ^^^
  577. # [18:49] <TabAtkins_> szilles: There are certainly a substantial number of people in the EPUB discussion that would prefer an approach that was closer to w3c standards, if they could.
  578. # [18:50] <TabAtkins_> bradk: Can they align with working drafts, perhaps with an epub prefix? Or do they have to have PRs?
  579. # [18:50] <ChrisL> if they dont get the featurs they need from w3c specs would they drop the feature, extebd the deadline, or pick a different source of standards?
  580. # [18:50] * ChrisL tab ^^
  581. # [18:50] <TabAtkins_> szilles: If they like what they think they're going to get, they may accept them before CR, because there's really nothing else out there right now except ISO standards.
  582. # [18:50] <TabAtkins_> kojiishi: I think generally they need CR.
  583. # [18:50] <kojiishi> http://code.google.com/p/epub-revision/wiki/CSS3Relations
  584. # [18:50] * kennyluck they might invent their own -> http://code.google.com/p/epub-revision/wiki/CSS3Relations
  585. # [18:51] <TabAtkins_> kojiishi: As far as I know they haven't decided yet, and they'll be discussing this in Taiwan on Oct 5th.
  586. # [18:51] * fantasai would like to squeeze in a request to publish css3-text before the end of the call
  587. # [18:52] <TabAtkins_> szilles: So, I believe that Elika and friends are tyring to produce a do we can look at and discuss by TPAC, to see if we have neough consensus to move ahead.
  588. # [18:52] <TabAtkins_> jdaggett: There are two specs here - CSS3 Text and CSS3 Writing Modes.
  589. # [18:52] <TabAtkins_> szilles: Elika, you were doing Text, not Writing Modes, right?
  590. # [18:53] * glazou wants the 7 last minutes on css3-color even if this discussion is not finished
  591. # [18:53] <TabAtkins_> fantasai: Right; I've made a lot of edits to Writing Modes, but it's not ready to publish right now. CSS3 Text is ready to publish as a WD.
  592. # [18:53] <TabAtkins_> fantasai: The current CSS3 Text draft is quite outdated. The new draft has addressed nearly all the issues raised with it.
  593. # [18:53] <TabAtkins_> fantasai: I'd like to get a new draft published before the Taiwan meeting next week.
  594. # [18:55] <Zakim> +[Mozilla]
  595. # [18:55] * Joins: tantek (tantek@63.245.220.240)
  596. # [18:55] <jdaggett> jdaggett: i'm fine with publishing a new draft of CSS3 Text
  597. # [18:55] <glazou> 30 seconds before next item plase
  598. # [18:55] <glazou> please
  599. # [18:55] <TabAtkins_> szilles: I haven't looked at the new Text. Has it changed?
  600. # [18:55] <tantek> also for publishing new draft of CSS3 Text
  601. # [18:55] <TabAtkins_> fantasai: Yes, a lot. [lists changes]
  602. # [18:56] <glazou> TIME
  603. # [18:56] * ChrisL pointer to editors draft?
  604. # [18:56] <jdaggett> glazou: let's resolve to publish and move one
  605. # [18:56] <kojiishi> http://dev.w3.org/csswg/css3-text/
  606. # [18:56] <TabAtkins_> RESOLVED: Publish a new WD of CSS3 Text.
  607. # [18:56] * fantasai thanks jdaggett !
  608. # [18:56] <tantek> ChrisL - maybe this: http://dev.w3.org/csswg/css3-text/
  609. # [18:56] <TabAtkins_> glazou: Now, CSS3 Color.
  610. # [18:56] * jdaggett np
  611. # [18:57] <ChrisL> http://dev.w3.org/csswg/css3-color/issues-lc-2008.html
  612. # [18:57] <tantek> Thanks much Chris!
  613. # [18:57] <TabAtkins_> ChrisL: I spent today making a Disposition of Comments. It's not in a great shape.
  614. # [18:57] <TabAtkins_> ChrisL: We need what the WG did, what the commenter responded, etc.
  615. # [18:57] <TabAtkins_> ChrisL: We have at least 3 where the commenter said they weren't happy, a bunch where they didn't respond, and 1 from the XSL WG where we didn't respond to them at all (we made edits, but didn't tell them).
  616. # [18:58] <TabAtkins_> ChrisL: We mostly agreed with them, which makes it easy.
  617. # [18:58] <TabAtkins_> ChrisL: I sent out a few others asking for confirmation.
  618. # [18:59] * jdaggett oh, that's cute...
  619. # [18:59] * sylvaing ...as long as CSS4 has normative Unicornosity...
  620. # [18:59] <glazou> lol
  621. # [18:59] <TabAtkins_> tantek: The DoC is looking good, thanks for writing it up.
  622. # [19:00] <TabAtkins_> ChrisL: I didn't get the biblio updated, but I will.
  623. # [19:00] * TabAtkins_ we need another color name - 'unicorn'=rgba(255,105,180,.5).
  624. # [19:01] <TabAtkins_> tantek: Did you see the most recent followup regarding scRGB?
  625. # [19:01] * sylvaing I was just thinking color:unicorn should map to some nifty gradient
  626. # [19:01] <TabAtkins_> ChrisL: There was a recent discussion about adding a bunch of ICC spaces.
  627. # [19:01] * glazou sylvaing with 90° north ?-)
  628. # [19:01] <TabAtkins_> ChrisL: Should we treat it as an LC comment or what?
  629. # [19:02] * sylvaing 9e1deg you mean ?
  630. # [19:02] <TabAtkins_> tantek: I think it's out of scope right now. We should reject it for now, and have it as possible functionality for CSS4 Color.
  631. # [19:02] <glazou> sylvaing: lol
  632. # [19:02] * bradk lol
  633. # [19:02] <TabAtkins_> tantek: Does the DoC look good otherwise?
  634. # [19:02] <TabAtkins_> ChrisL: The XSLWG response we should probably wait a week or so for.
  635. # [19:03] <TabAtkins_> tantek: So we're pretty happy with the DoC, and we'll give commenters a week or two to respond. What's next?
  636. # [19:04] <TabAtkins_> ChrisL: Then we produce a director's ???, showing that we exit CR correctly.
  637. # [19:04] <TabAtkins_> glazou: Any normative dependency on CSS2.1?
  638. # [19:04] <TabAtkins_> ChrisL: yes.
  639. # [19:04] <TabAtkins_> glazou: So it'll be at the same state as CSS3 Selectors?
  640. # [19:04] <TabAtkins_> ChrisL: Yeah. It precludes PR, but not Rec.
  641. # [19:04] <TabAtkins_> glazou: So yeah, we need to push CSS2.1 quick.
  642. # [19:05] <TabAtkins_> ChrisL: Selectors already has "provisional Rec" contingent on CSS2.1 going to Rec.
  643. # [19:05] <Zakim> -smfr
  644. # [19:05] <Zakim> -SteveZ
  645. # [19:05] <Zakim> -[Microsoft]
  646. # [19:05] <Zakim> -[Microsoft.a]
  647. # [19:05] <Zakim> -howcome
  648. # [19:05] <Zakim> -jdaggett
  649. # [19:05] <Zakim> -ChrisL
  650. # [19:05] <Zakim> -[Mozilla]
  651. # [19:05] <Zakim> -glazou
  652. # [19:05] <Zakim> -Bert
  653. # [19:05] <Zakim> -kojiishi
  654. # [19:05] <Zakim> -fantasai
  655. # [19:05] <glazou> View mode review request for email or next telcon
  656. # [19:05] <Zakim> -TabAtkins_
  657. # [19:05] <Ms2ger> ...Adjourned?
  658. # [19:05] <glazou> yes
  659. # [19:06] <TabAtkins_> Nope, simultaneous mass murder.
  660. # [19:06] <glazou> lol
  661. # [19:06] <fantasai> lol
  662. # [19:06] <glazou> TabAtkins_: saw my private msg?
  663. # [19:06] <TabAtkins_> glazou: yeah.
  664. # [19:06] <tantek> TabAtkins_ to be clear it does NOT preclude PR
  665. # [19:06] <tantek> it does preclude REC
  666. # [19:06] <tantek> (per minutes above)
  667. # [19:06] <TabAtkins_> Argh, I reversed them.
  668. # [19:07] <TabAtkins_> fantasai: Could you fix that when you prepare minutes?
  669. # [19:07] <tantek> glazou - did we record an action for Bert to setup a call with the Director?
  670. # [19:07] <ChrisL> s/It precludes PR, but not Rec./It precludes Rec, but not PR
  671. # [19:07] <tantek> or are we doing that later?
  672. # [19:07] * Quits: bradk (bradk@67.188.133.45) (Quit: Get MacIrssi - http://www.sysctl.co.uk/projects/macirssi/ )
  673. # [19:07] <Bert> better wait until we actually have the DoC ready.
  674. # [19:08] <Bert> (And maybe Chris and do it himself? That saves me work :-) )
  675. # [19:08] * glazou has to go, bye people
  676. # [19:08] <ChrisL> bert, yes I can do it once DoC is ready
  677. # [19:08] * Quits: glazou (glazou@82.247.96.19) (Quit: glazou)
  678. # [19:08] * Quits: kojiishi (kojiishi@222.158.227.129) (Quit: Leaving...)
  679. # [19:08] * Quits: TabAtkins_ (tabatkins@216.239.45.19) (Quit: Lost terminal)
  680. # [19:08] * Quits: JohnJan (qw3birc@128.30.52.28) (Quit: Page closed)
  681. # [19:08] * Parts: murakami (murakami@118.154.209.3) (Leaving...)
  682. # [19:08] <Zakim> -[plinss]
  683. # [19:08] <tantek> Bert, ChrisL - excellent - thanks much!
  684. # [19:09] <tantek> ChrisL - how much time did you want to give commenters to follow-up? is a week sufficient or would you be more comfortable with 2 weeks?
  685. # [19:10] <ChrisL> I think a week is reasonable. Willtalk with xsl fo staff contact
  686. # [19:10] * Parts: smfr (smfr@72.25.91.178)
  687. # [19:11] <tantek> ok
  688. # [19:13] <Zakim> disconnecting the lone participant, bradk, in Style_CSS FP()12:00PM
  689. # [19:13] <Zakim> Style_CSS FP()12:00PM has ended
  690. # [19:14] <Zakim> Attendees were glazou, [plinss], fantasai, bradk, jdaggett, ChrisL, smfr, Bert, +1.650.214.aaaa, arronei, TabAtkins_, kojiishi, SteveZ, howcome, [Microsoft], +39.524.9.aabb,
  691. # [19:14] <Zakim> ... [Mozilla]
  692. # [19:14] * Quits: ChrisL (ChrisL@128.30.52.169) (Quit: Fire on main board error, client combusted)
  693. # [19:16] * Quits: oyvind (oyvinds@213.236.208.22) (Quit: oyvind)
  694. # [19:18] * Quits: dethbakin (dethbakin@76.102.99.47) (Quit: dethbakin)
  695. # [19:19] * Quits: sylvaing (sylvaing@131.107.0.101) (Connection reset by peer)
  696. # [19:29] <fantasai> RRSAgent: make minutes
  697. # [19:29] <RRSAgent> I have made the request to generate http://www.w3.org/2010/09/29-CSS-minutes.html fantasai
  698. # [19:29] <fantasai> RRSAgent: make logs public
  699. # [19:29] <RRSAgent> I have made the request, fantasai
  700. # [19:29] <fantasai> RRSAgent: make minutes
  701. # [19:29] <RRSAgent> I have made the request to generate http://www.w3.org/2010/09/29-CSS-minutes.html fantasai
  702. # [19:30] * Joins: sylvaing (sylvaing@131.107.0.80)
  703. # [19:48] * Quits: szilles (chatzilla@67.188.27.37) (Quit: ChatZilla 0.9.86 [Firefox 3.6.10/20100914125854])
  704. # [20:19] * Joins: dbaron (dbaron@63.245.220.240)
  705. # [20:24] <hyatt> fantasai: ultimately writing-mode will be its own draft right
  706. # [20:24] <hyatt> fantasai: and not part of that gigantic text draft?
  707. # [20:42] * Quits: lhnz (lhnz@188.223.83.48) (Connection reset by peer)
  708. # [20:42] * Joins: lhnz (lhnz@188.223.83.48)
  709. # [20:47] * Quits: lhnz (lhnz@188.223.83.48) (Connection reset by peer)
  710. # [20:47] * Joins: lhnz (lhnz@188.223.83.48)
  711. # [20:49] * Zakim excuses himself; his presence no longer seems to be needed
  712. # [20:49] * Parts: Zakim (rrs-bridgg@128.30.52.169)
  713. # [21:57] * Quits: sylvaing (sylvaing@131.107.0.80) (Ping timeout)
  714. # [22:06] * Joins: ChrisL (ChrisL@128.30.52.169)
  715. # [22:18] * Quits: karl (karlcow@128.30.54.58) (Client exited)
  716. # [22:52] * Quits: tantek (tantek@63.245.220.240) (Quit: tantek)
  717. # [23:13] * Joins: karl (karlcow@128.30.54.58)
  718. # [23:15] * Quits: lhnz (lhnz@188.223.83.48) (Ping timeout)
  719. # [23:16] * Joins: lhnz (lhnz@188.223.83.48)
  720. # [23:21] * Joins: sylvaing (sylvaing@131.107.0.101)
  721. # [23:23] * Quits: Ms2ger (Ms2ger@91.181.33.168) (Quit: nn)
  722. # [23:25] * Quits: ChrisL (ChrisL@128.30.52.169) (Quit: Fire on main board error, client combusted)
  723. # [23:26] * Joins: nimbupani (nimbupani@24.22.131.46)
  724. # [23:36] * Quits: nimbupani (nimbupani@24.22.131.46) (Quit: nimbupani)
  725. # Session Close: Thu Sep 30 00:00:00 2010

The end :)