forked from w3c/csswg-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
457 lines (450 loc) · 34.1 KB
/
Copy pathindex.html
File metadata and controls
457 lines (450 loc) · 34.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Paris F2F August 2015 - CSS Working Group Wiki (Archive)</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
max-width: 900px; margin: 0 auto; padding: 1.5em 1em; line-height: 1.6;
color: #1f2328; background: #fff;
}
.archive-banner {
background: #fff8c5; border: 1px solid #d4a72c; border-radius: 6px;
padding: 0.75em 1em; margin-bottom: 1.5em; font-size: 0.9em;
}
.archive-banner strong { color: #6e5600; }
header { border-bottom: 1px solid #d1d5db; padding-bottom: 1em; margin-bottom: 1.5em; }
header h1 { margin: 0; font-size: 1.25em; }
header h1 a { color: #0366d6; text-decoration: none; }
header h1 a:hover { text-decoration: underline; }
nav { margin-top: 0.5em; font-size: 0.9em; }
nav a { color: #656d76; text-decoration: none; margin-right: 1em; }
nav a:hover { color: #0366d6; }
h1, h2, h3, h4 { color: #1f2328; margin-top: 1.5em; }
h1:first-child { margin-top: 0; }
a { color: #0366d6; }
code { background: #f6f8fa; padding: 0.15em 0.3em; border-radius: 3px; font-size: 0.9em; }
pre { background: #f6f8fa; padding: 1em; overflow: auto; border-radius: 6px; }
pre code { background: none; padding: 0; }
table { border-collapse: collapse; margin: 1em 0; }
th, td { border: 1px solid #d1d5db; padding: 0.4em 0.8em; }
th { background: #f6f8fa; }
img { max-width: 100%; }
.breadcrumb { font-size: 0.85em; color: #656d76; margin-bottom: 1em; }
.breadcrumb a { color: #656d76; }
ul, ol { padding-left: 1.5em; }
li { margin: 0.25em 0; }
.plugin_note { background: #f0f4f8; border-left: 4px solid #0366d6; padding: 0.75em 1em; margin: 1em 0; border-radius: 3px; }
abbr { text-decoration: underline dotted; cursor: help; }
@media (prefers-color-scheme: dark) {
body { background: #0d1117; color: #e6edf3; }
.archive-banner { background: #3d2e00; border-color: #6e5600; }
.archive-banner strong { color: #f0c000; }
header { border-bottom-color: #30363d; }
header h1 a { color: #58a6ff; }
nav a { color: #8b949e; }
nav a:hover { color: #58a6ff; }
h1, h2, h3, h4 { color: #e6edf3; }
a { color: #58a6ff; }
code, pre { background: #161b22; }
th, td { border-color: #30363d; }
th { background: #161b22; }
.breadcrumb, .breadcrumb a { color: #8b949e; }
.plugin_note { background: #161b22; border-color: #58a6ff; }
}
</style>
</head>
<body>
<div class="archive-banner">
<strong>Archive Notice:</strong> This is a read-only archive of the CSS Working Group Wiki.
The original wiki was hosted at wiki.csswg.org.
</div>
<header>
<h1><a href="/">CSS Working Group Wiki</a></h1>
<nav>
<a href="/">Home</a>
<a href="/spec/">Specs</a>
<a href="/ideas/">Ideas</a>
<a href="/test/">Testing</a>
<a href="/wiki/">About</a>
</nav>
</header>
<div class="breadcrumb"><a href="/">Home</a> / <a href="/planning/">planning</a> / paris-2015</div>
<main>
<!-- TOC START -->
<div id="dw__toc" class="dw__toc">
<h3 class="toggle">Table of Contents</h3>
<div>
<ul class="toc">
<li class="level1"><a href="#paris-f2f-august-2015">Paris F2F August 2015</a><ul class="toc">
<li class="clear">
<ul class="toc">
<li class="level3"><a href="#meeting-minutes">Meeting Minutes</a></li>
<li class="level3"><a href="#location">Location</a></li>
<li class="level3"><a href="#participants">Participants</a></li>
</ul>
</li>
<li class="level2"><a href="#agenda">Agenda</a><ul class="toc">
<li class="level3"><a href="#tuesday">Tuesday</a></li>
<li class="level3"><a href="#wednesday">Wednesday</a></li>
<li class="level3"><a href="#thursday">Thursday</a></li>
<li class="level3"><a href="#tbd">TBD</a></li>
<li class="level3"><a href="#proposed-agenda-topics">Proposed Agenda Topics</a></li>
<li class="level3"><a href="#proposed-agenda-topics-fx">Proposed Agenda Topics [fx]</a></li>
</ul></li>
</ul></li>
</ul>
</div>
</div>
<!-- TOC END -->
<h1 id="paris-f2f-august-2015">Paris F2F August 2015</h1>
<ul>
<li class="level1">Host: Mozilla</li>
<li class="level1">Dinner 7pm, Le Zinc des Cavistes</li>
<li class="level1">Dates: Tuesday-Thursday, August 25-27, 2015</li>
<li class="level1 node">Nearby events:<ul>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/public-editing-tf/2015Jun/0023.html" title="https://lists.w3.org/Archives/Public/public-editing-tf/2015Jun/0023.html" rel="noopener">Editing TF meeting</a> (Sunday-Monday 23-24)</li>
<li class="level2"><a href="https://wiki.css-houdini.org/planning/paris-2015" title="https://wiki.css-houdini.org/planning/paris-2015" rel="noopener">Houdini meeting</a> (Friday-Saturday 28-29)</li>
</ul>
</li>
</ul><h3 id="meeting-minutes">Meeting Minutes</h3><h5 id="tuesday-25-august">Tuesday, 25 August</h5>
<ul>
<li class="level1"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0037.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0037.html" rel="noopener">Part I</a>: <abbr title="Cascading Style Sheets">CSS</abbr> Cascade, <abbr title="Cascading Style Sheets">CSS</abbr> Fragmentation, <abbr title="Cascading Style Sheets">CSS</abbr> Animations, <abbr title="Cascading Style Sheets">CSS</abbr> Text, TPAC Japanese Industry Meet-up, Number of F2F Meetings Per Year</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0038.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0038.html" rel="noopener">Part II</a>: Flexbox, Grid/Flex Percentages, Testing</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0040.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0040.html" rel="noopener">Part III</a>: <abbr title="Cascading Style Sheets">CSS</abbr> UI 4, <abbr title="Cascading Style Sheets">CSS</abbr> Text 4, User Stylesheets</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0041.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0041.html" rel="noopener">Part IV</a>: Snapshot 2015 and Prefix Policy, @apply rule</li>
</ul><h5 id="wednesday-26-august">Wednesday, 26 August</h5>
<ul>
<li class="level1"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0093.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0093.html" rel="noopener">Part I</a>: Round Display, Grid Layout</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0094.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0094.html" rel="noopener">Part II</a>: Animations, Scroll Snapping</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0095.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0095.html" rel="noopener">Part III</a>: Defining Pagination, <abbr title="Cascading Style Sheets">CSS</abbr> Priorities from DigiPub</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0095.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0095.html" rel="noopener">Part IV</a>: <abbr title="Cascading Style Sheets">CSS</abbr> Inline</li>
</ul><h5 id="thursday-27-august">Thursday, 27 August</h5>
<ul>
<li class="level1"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0109.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0109.html" rel="noopener">Part I</a>: FXTF Meeting Part 1- SVG Resources, SVG Images Without Intrinsic Size, Matrix Interpolation Revisited, SLERPing and 0deg angles</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0110.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0110.html" rel="noopener">Part II</a>: FXTF Meeting Part 2- glyph-orientation, writing-mode Values from SVG 1.1, getTransformToElement, Path Animation, Zoom Features for Media Queries</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0111.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0111.html" rel="noopener">Part III</a>: Selectors</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0112.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0112.html" rel="noopener">Part IV</a>: will-change, Scroll Snap, Input Modality</li>
<li class="level2"><a href="https://lists.w3.org/Archives/Public/www-style/2015Sep/0113.html" title="https://lists.w3.org/Archives/Public/www-style/2015Sep/0113.html" rel="noopener">Part V</a>: Page Floats, Writing Modes, Snapshot 2015, Flexbox % Follow-Up</li>
</ul><h3 id="location">Location</h3>
<p>
<a href="https://wiki.mozilla.org/Paris" title="https://wiki.mozilla.org/Paris" rel="noopener">Mozilla Paris</a>, 16bis Boulevard Montmartre, 75009 Paris, France
</p>
<p>
See <a href="https://wiki.mozilla.org/Paris" title="https://wiki.mozilla.org/Paris" rel="noopener">Mozilla Paris wiki</a> for important directions on finding and entering the space
</p><h4 id="transport-notes">Transport Notes</h4>
<p>
Some notes about transport in Paris around this week. There are some lines shut down for maintenance. In particular, I've seen signage that:
</p>
<ul>
<li class="level1"><del>RER line A (the middle east-west RER line through the center) <a href="http://travaux-ete-rera.ratp.fr/fr/" title="http://travaux-ete-rera.ratp.fr/fr/" rel="noopener">is closed</a> between La Defense and Auber exclusive (i.e., the western half of its run through the center of Paris) from July 25 through August 23, inclusive</del></li>
<li class="level1"><del>RER line C (the southern east-west RER line through the center) <a href="https://vianavigo.com/fr/actualites-trafic/detail-actualite-vianavigo-vos-transports-en-commun-en-ile-de-france-optile-ratp-sncf/article/rer-c-travaux-castor-du-15-juillet-au-22-aout-7/" title="https://vianavigo.com/fr/actualites-trafic/detail-actualite-vianavigo-vos-transports-en-commun-en-ile-de-france-optile-ratp-sncf/article/rer-c-travaux-castor-du-15-juillet-au-22-aout-7/" rel="noopener">is closed</a> between Avenue Henri Martin/Javel and Gare d'Austerlitz (exclusive), July 15 through August 22</del></li>
<li class="level1">Metro line 4 (a north-south metro line through Paris) <a href="http://www.ratp.fr/fr/ratp/v_133187/metro-ligne-4-interruption-partielle-de-trafic-du-27-au-30-aout-2015/" title="http://www.ratp.fr/fr/ratp/v_133187/metro-ligne-4-interruption-partielle-de-trafic-du-27-au-30-aout-2015/" rel="noopener">is closed</a> north of Reaumur-Sebastopol (exclusive) from 27-30 August (inclusive). This includes its stops at Gare du Nord and Gare de l'Est, although other metro lines (including the 5) will still stop there</li>
</ul>
<p>
although I haven't found a central listing of all of the maintenance closures, although <a href="https://vianavigo.com/fr/actualites-trafic/" title="https://vianavigo.com/fr/actualites-trafic/" rel="noopener">https://vianavigo.com/fr/actualites-trafic/</a> is close.
</p>
<p>
<a href="http://www.ratp.fr/informer/trafic/travaux_ratp.php" title="http://www.ratp.fr/informer/trafic/travaux_ratp.php" rel="noopener">http://www.ratp.fr/informer/trafic/travaux_ratp.php</a> lists all maintenance works on RER, Metro, and Tram lines.
</p><h3 id="participants">Participants</h3>
<div class="table sectionedit5"><table class="inline">
<thead>
<tr class="row0">
<th class="col0"> Name </th><th class="col1"> Arrival </th><th class="col2"> Departure </th><th class="col3"> Hotel </th><th class="col4"> Flight info and notes </th>
</tr>
</thead>
<tr class="row1">
<td class="col0"> Alan Stearns </td><td class="col1"> 21 Aug </td><td class="col2"> 30 Aug </td><td class="col3"> Apt </td><td class="col4"> ?? </td>
</tr>
<tr class="row2">
<td class="col0"> Andrey Rybka </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ?? </td>
</tr>
<tr class="row3">
<td class="col0"> Bert </td><td class="col1"> 24 Aug </td><td class="col2"> 29 Aug </td><td class="col3"> Vivienne </td><td class="col4"> train (Gare de Lyon) A: 21:41 / D: 18:19 </td>
</tr>
<tr class="row4">
<td class="col0"> Brian Birtles </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> observer from Mozilla (and SVG WG) </td>
</tr>
<tr class="row5">
<td class="col0"> Cameron McCormack </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> observer from Mozilla (and SVG WG) </td>
</tr>
<tr class="row6">
<td class="col0"> Chris Lilley </td><td class="col1"> 22 Aug </td><td class="col2"> 30 Aug </td><td class="col3"> Hôtel Eugène en Ville </td><td class="col4 leftalign"> AF6207/ AF6248 </td>
</tr>
<tr class="row7">
<td class="col0"> Dael Jackson </td><td class="col1"> 23 Aug </td><td class="col2"> 30 Aug </td><td class="col3"> <a href="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" title="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" rel="noopener">apt share</a> </td><td class="col4"> AA754 / AA755 </td>
</tr>
<tr class="row8">
<td class="col0"> Dave Cramer </td><td class="col1"> 24 Aug </td><td class="col2"> 30 Aug </td><td class="col3"> Hotel Peletier-Haussmann </td><td class="col4"> UA 987 / UA 986 </td>
</tr>
<tr class="row9">
<td class="col0"> Dean Jackson </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ??, attending last day of <abbr title="Cascading Style Sheets">CSS</abbr> WG and both Houdini days </td>
</tr>
<tr class="row10">
<td class="col0"> Dirk Schulze </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ?? </td>
</tr>
<tr class="row11">
<td class="col0"> Edward O'Connor </td><td class="col1"> 22 Aug </td><td class="col2"> 29 Aug </td><td class="col3"> Hôtel Edouard 7 </td><td class="col4"> UA0990 / UA0991, attending <abbr title="Cascading Style Sheets">CSS</abbr> WG but not Houdini </td>
</tr>
<tr class="row12">
<td class="col0"> Elliott Sprehn </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ?? </td>
</tr>
<tr class="row13">
<td class="col0"> fantasai </td><td class="col1"> 23 Aug </td><td class="col2"> 28 Aug </td><td class="col3"> <a href="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" title="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" rel="noopener">apt share</a></td><td class="col4"> BA / Icelandair </td>
</tr>
<tr class="row14">
<td class="col0"> Florian Rivoal </td><td class="col1"> 22 Aug </td><td class="col2"> 30 Aug </td><td class="col3"> <a href="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" title="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" rel="noopener">apt share</a> </td><td class="col4"> ?? </td>
</tr>
<tr class="row15">
<td class="col0"> Greg Whitworth </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ?? </td>
</tr>
<tr class="row16">
<td class="col0"> Hiroshi Sakakibara </td><td class="col1"> 23 Aug </td><td class="col2"> ?? </td><td class="col3"> Hotel Peletier-Haussmann </td><td class="col4"> ?? </td>
</tr>
<tr class="row17">
<td class="col0"> Hyojin Song </td><td class="col1"> 24 Aug </td><td class="col2"> 29 Aug </td><td class="col3"> Hyatt Regency Paris Etoile </td><td class="col4"> OZ 501 / OZ 502 </td>
</tr>
<tr class="row18">
<td class="col0"> Ian Kilpatrick </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ?? </td>
</tr>
<tr class="row19">
<td class="col0"> Jet Villegas </td><td class="col1">2015-08-22</td><td class="col2">2015-08-29</td><td class="col3"> apartment </td><td class="col4"> UA0990 / UA0991 </td>
</tr>
<tr class="row20">
<td class="col0"> Jihye Hong </td><td class="col1"> 24 Aug </td><td class="col2"> 29 Aug </td><td class="col3"> Hyatt Regency Paris Etoile </td><td class="col4"> OZ 501 / OZ 502 </td>
</tr>
<tr class="row21">
<td class="col0"> Johannes Wilm </td><td class="col1"> 22 Aug </td><td class="col2"> 29 Aug </td><td class="col3"> <a href="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" title="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" rel="noopener">apt share</a> </td><td class="col4"> ?? </td>
</tr>
<tr class="row22">
<td class="col0"> L. David Baron </td><td class="col1"> 15 Aug </td><td class="col2"> 30 Aug </td><td class="col3"> Apartment </td><td class="col4"> AF351 / AF80 </td>
</tr>
<tr class="row23">
<td class="col0"> Lea Verou </td><td class="col1"> 21/8 </td><td class="col2"> 30/8 </td><td class="col3"> Hôtel Eugène en Ville </td><td class="col4"> AF1441 </td>
</tr>
<tr class="row24">
<td class="col0 leftalign"> Liam Quin </td><td class="col1"> 25 Aug </td><td class="col2"> 30 Aug </td><td class="col3 leftalign"> best Western Opera Roncay </td><td class="col4"> AC 880 / CDG </td>
</tr>
<tr class="row25">
<td class="col0"> Matt Rakow </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ??</td><td class="col4"> ?? </td>
</tr>
<tr class="row26">
<td class="col0"> Ojan Vafai </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ?? </td>
</tr>
<tr class="row27">
<td class="col0"> Peter Linss </td><td class="col1"> 23 Aug </td><td class="col2"> 31 Aug </td><td class="col3"> Best Western </td><td class="col4"> UA 990 / UA 914 </td>
</tr>
<tr class="row28">
<td class="col0"> Rachel Andrew </td><td class="col1"> 24 Aug </td><td class="col2"> 30 Aug </td><td class="col3"> Apartment </td><td class="col4"> [observer] BA 314 / Train</td>
</tr>
<tr class="row29">
<td class="col0"> Rossen Atanassov </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ?? </td>
</tr>
<tr class="row30">
<td class="col0"> Sam Weinig </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ??, attending/observing first day </td>
</tr>
<tr class="row31">
<td class="col0"> Shane Stephens </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ?? </td>
</tr>
<tr class="row32">
<td class="col0"> Simon Fraser </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> ?? </td><td class="col4"> ??, attending last day of <abbr title="Cascading Style Sheets">CSS</abbr> WG and both Houdini days </td>
</tr>
<tr class="row33">
<td class="col0"> Simon Pieters </td><td class="col1"> August 24 </td><td class="col2"> August 30 </td><td class="col3"> Vivienne </td><td class="col4"> AF1263 / AF1262 (CDG) </td>
</tr>
<tr class="row34">
<td class="col0"> Simon Sapin </td><td class="col1"> </td><td class="col2"> </td><td class="col3"> home </td><td class="col4"> </td>
</tr>
<tr class="row35">
<td class="col0"> Steve Zilles </td><td class="col1"> August 24 </td><td class="col2"> August 31 </td><td class="col3"> apartment </td><td class="col4"> Thai Air 930 </td>
</tr>
<tr class="row36">
<td class="col0"> Tab Atkins </td><td class="col1"> ?? </td><td class="col2"> ?? </td><td class="col3"> <a href="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" title="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0072.html" rel="noopener">apt share</a> </td><td class="col4"> US786 arriving CDG Aug 23 8:25, AA755 departing CDG Aug 30 13:20 </td>
</tr>
<tr class="row37">
<td class="col0"> Tantek Çelik </td><td class="col1">2015-08-22</td><td class="col2">2015-08-29</td><td class="col3"> apartment </td><td class="col4"> UA0990 / UA0991 </td>
</tr>
</table><p>
(alphabetical by first name, plzkthx)
</p>
<p>
<strong>Regrets</strong>
</p>
<p>
Anton Prowse, John Daggett
</p><h2 id="agenda">Agenda</h2><h3 id="tuesday">Tuesday</h3><h4 id="am">AM</h4>
<ul>
<li class="level1">css cascade to informal LC?</li>
<li class="level1 node">css fragmentation<ul>
<li class="level2">naming issues</li>
<li class="level2">go to CR ?</li>
</ul>
</li>
<li class="level1">Control Characters Status Update from all UAs <a href="https://drafts.csswg.org/css-text/#white-space-processing" title="https://drafts.csswg.org/css-text/#white-space-processing" rel="noopener">https://drafts.csswg.org/css-text/#white-space-processing</a> - greg</li>
</ul>
<ul>
<li class="level1">Japanese Industry meet-up</li>
</ul>
<ul>
<li class="level1 node">FlexBox<ul>
<li class="level2">remaining issues</li>
<li class="level2">CR?</li>
</ul>
</li>
<li class="level1">Percentage heights in grid and flex containers</li>
<li class="level1">Absolute positioning in grid and flex containers</li>
<li class="level1">max-content for flex items <a href="https://lists.w3.org/Archives/Public/www-style/2015Jul/0429.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jul/0429.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jul/0429.html</a></li>
<li class="level1">Tests invalidated by future levels</li>
</ul><h4 id="pm">PM</h4>
<ul>
<li class="level1 node"><abbr title="Cascading Style Sheets">CSS</abbr> UI<ul>
<li class="level2 node">Feedback from Tab<ul>
<li class="level3">note about user-select:none and editing</li>
<li class="level3">caret-animation / caret-blink-time</li>
<li class="level3">appearance property</li>
<li class="level3">renaming user-select: text ?</li>
</ul>
</li>
<li class="level2">cursor behavior when elements overlap is ambiguous <a href="https://lists.w3.org/Archives/Public/www-style/2015Aug/0010.html" title="https://lists.w3.org/Archives/Public/www-style/2015Aug/0010.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Aug/0010.html</a></li>
<li class="level2">text-overflow: fade</li>
<li class="level2">FPWD for <abbr title="Cascading Style Sheets">CSS</abbr>-UI-4?</li>
</ul>
</li>
<li class="level1 node">css-text-4<ul>
<li class="level2">pre-wrap-* and longhands of white-space <a href="https://lists.w3.org/Archives/Public/www-style/2015Jun/0099.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jun/0099.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jun/0099.html</a></li>
</ul>
</li>
<li class="level1">User stylesheets (Chris)</li>
<li class="level1">Snapshot 2015 and Prefix Policy</li>
<li class="level1">First draft of <a href="https://tabatkins.github.io/specs/css-apply-rule/" title="https://tabatkins.github.io/specs/css-apply-rule/" rel="noopener">@apply rule</a> (simple mixins, powered by Custom Properties)</li>
</ul><h3 id="wednesday">Wednesday</h3><h4 id="am1">AM</h4>
<ul>
<li class="level1"><abbr title="Cascading Style Sheets">CSS</abbr> Round Display - demo, issues, FPWD? (early AM Wednesday)</li>
<li class="level1">Grid Layout - Issues</li>
<li class="level1">Animations 2</li>
<li class="level1">snap points & oversized elements - tab</li>
</ul><h4 id="pm1">PM</h4>
<ul>
<li class="level1">Getting to pagination <a href="https://lists.w3.org/Archives/Public/www-style/2015Aug/0179.html" title="https://lists.w3.org/Archives/Public/www-style/2015Aug/0179.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Aug/0179.html</a> (dauwhe)</li>
<li class="level1 node"><a href="http://www.w3.org/TR/2015/WD-dpub-css-priorities-20150820/" title="http://www.w3.org/TR/2015/WD-dpub-css-priorities-20150820/" rel="noopener">“Priorities for CSS from the DPub IG”</a> (Bert): I propose we try to say for each requirement (jdaggett dialin)<ol>
<li class="level2">Is it in scope for <abbr title="Cascading Style Sheets">CSS</abbr> (and if not, where might it be solved)?</li>
<li class="level2">If in scope, what might a solution look like, roughly?</li>
</ol>
</li>
<li class="level1"><abbr title="Cascading Style Sheets">CSS</abbr> Inline - Review edits, Review vertical alignment section, republish? (jdaggett dialin)</li>
</ul><h4 id="optional-run">optional run</h4>
<ul>
<li class="level1">“running is not just for programs” - run to the Eiffel tower and back after the meeting, before the dinner!</li>
</ul><h3 id="thursday">Thursday</h3><h4 id="am2">AM</h4>
<p>
<a href="https://wiki.csswg.org/planning/paris-2015#proposed-agenda-topics-fx" title="https://wiki.csswg.org/planning/paris-2015#proposed-agenda-topics-fx" rel="noopener">FXTF</a>
</p>
<ul>
<li class="level1 node">selectors<ul>
<li class="level2"><a href="https://drafts.csswg.org/selectors-4/#issues-index" title="https://drafts.csswg.org/selectors-4/#issues-index" rel="noopener">selectors 4 issues</a></li>
</ul>
</li>
</ul><h4 id="pm2">PM</h4>
<ul>
<li class="level1">will-change (on Thurs please) - smfr</li>
<li class="level1">Scroll snap followup</li>
<li class="level1">Input Modality (<a href="http://radar.oreilly.com/2015/08/proposing-css-input-modailty.html" title="http://radar.oreilly.com/2015/08/proposing-css-input-modailty.html" rel="noopener">http://radar.oreilly.com/2015/08/proposing-css-input-modailty.html</a>) - tab, bkardell (Thursday please)</li>
<li class="level1 node"><abbr title="Cascading Style Sheets">CSS</abbr> Page Floats (on Thursday, see <a href="https://lists.w3.org/Archives/Public/www-style/2015Jul/0410.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jul/0410.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jul/0410.html</a> , <a href="https://lists.w3.org/Archives/Public/www-style/2015Aug/0167.html" title="https://lists.w3.org/Archives/Public/www-style/2015Aug/0167.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Aug/0167.html</a> , <a href="https://lists.w3.org/Archives/Public/www-style/2015Jun/0334.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jun/0334.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jun/0334.html</a> ):<ul>
<li class="level2">Do we need two dimensional page floats (up and right)?</li>
<li class="level2">Do we need/want page floats in non-fragmenting contexts?</li>
<li class="level2">Do we need to be able to control the placement order of page floats within a fragmentainer?</li>
</ul>
</li>
<li class="level1">Writing Modes - DoC and re-CR (jdaggett dialin)</li>
<li class="level1">Make sure Mozilla is OK with keyframe interaction decision</li>
<li class="level1"><abbr title="Cascading Style Sheets">CSS</abbr> Snapshot 2015</li>
<li class="level1">Flexbox % followup</li>
<li class="level1">fill-available sizing</li>
<li class="level1">r12a would like us to <a href="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0120.html" title="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0120.html" rel="noopener">switch to GitHub</a> for all <abbr title="specification">spec</abbr> discussions</li>
</ul><h3 id="tbd">TBD</h3>
<ul>
<li class="level1"><abbr title="Cascading Style Sheets">CSS</abbr> IG</li>
</ul><h3 id="proposed-agenda-topics">Proposed Agenda Topics</h3>
<ul>
<li class="level1">r12a would like us to <a href="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0120.html" title="https://lists.w3.org/Archives/Member/w3c-css-wg/2015JulSep/0120.html" rel="noopener">switch to GitHub</a> for all <abbr title="specification">spec</abbr> discussions</li>
<li class="level1">Snapshot 2015 and Prefix Policy</li>
<li class="level1">Writing Modes - DoC and re-CR (jdaggett dialin)</li>
<li class="level1"><abbr title="Cascading Style Sheets">CSS</abbr> Inline - Review edits, Review vertical alignment section, republish? (jdaggett dialin)</li>
<li class="level1">Grid Layout - Issues</li>
<li class="level1">User stylesheets (Chris)</li>
<li class="level1"><abbr title="Cascading Style Sheets">CSS</abbr> IG</li>
<li class="level1">css cascade to informal LC?</li>
<li class="level1 node">css fragmentation<ul>
<li class="level2">naming issues</li>
<li class="level2">go to CR ?</li>
</ul>
</li>
<li class="level1">Percentage heights in grid and flex containers</li>
<li class="level1">Absolute positioning in grid and flex containers</li>
<li class="level1">Make sure Mozilla is OK with keyframe interaction decision</li>
<li class="level1">Ruby? <a href="https://lists.w3.org/Archives/Public/www-style/2015Jul/0091.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jul/0091.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jul/0091.html</a> <a href="https://lists.w3.org/Archives/Public/www-style/2015Jul/0165.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jul/0165.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jul/0165.html</a></li>
<li class="level1">max-content for flex items <a href="https://lists.w3.org/Archives/Public/www-style/2015Jul/0429.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jul/0429.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jul/0429.html</a></li>
<li class="level1">fill-available sizing</li>
<li class="level1 node">FlexBox<ul>
<li class="level2">remaining issues</li>
<li class="level2">CR?</li>
</ul>
</li>
<li class="level1"><abbr title="Cascading Style Sheets">CSS</abbr> Round Display - demo, issues, FPWD? (early AM Wednesday)</li>
<li class="level1">will-change (on Thurs please) - smfr</li>
<li class="level1 node"><abbr title="Cascading Style Sheets">CSS</abbr> Page Floats (on Thursday, see <a href="https://lists.w3.org/Archives/Public/www-style/2015Jul/0410.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jul/0410.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jul/0410.html</a> , <a href="https://lists.w3.org/Archives/Public/www-style/2015Aug/0167.html" title="https://lists.w3.org/Archives/Public/www-style/2015Aug/0167.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Aug/0167.html</a> , <a href="https://lists.w3.org/Archives/Public/www-style/2015Jun/0334.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jun/0334.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jun/0334.html</a> ):<ul>
<li class="level2">Do we need to say more about non-overlapping than that the margin boxes of given elements are not overlapping?</li>
<li class="level2">Do we need two dimensional page floats (up and right)?</li>
<li class="level2">Do we need/want page floats in non-fragmenting contexts?</li>
<li class="level2">Do we need to be able to control the placement order of page floats within a fragmentainer?</li>
</ul>
</li>
<li class="level1 node"><abbr title="Cascading Style Sheets">CSS</abbr> UI<ul>
<li class="level2 node">Feedback from Tab<ul>
<li class="level3">note about user-select:none and editing</li>
<li class="level3">caret-animation / caret-blink-time</li>
<li class="level3">appearance property</li>
<li class="level3">renaming user-select: text ?</li>
</ul>
</li>
<li class="level2">cursor behavior when elements overlap is ambiguous <a href="https://lists.w3.org/Archives/Public/www-style/2015Aug/0010.html" title="https://lists.w3.org/Archives/Public/www-style/2015Aug/0010.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Aug/0010.html</a></li>
<li class="level2">text-overflow: fade</li>
<li class="level2">FPWD for <abbr title="Cascading Style Sheets">CSS</abbr>-UI-4?</li>
</ul>
</li>
<li class="level1">Control Characters Status Update from all UAs <a href="https://drafts.csswg.org/css-text/#white-space-processing" title="https://drafts.csswg.org/css-text/#white-space-processing" rel="noopener">https://drafts.csswg.org/css-text/#white-space-processing</a> - greg</li>
<li class="level1">Input Modality (<a href="http://radar.oreilly.com/2015/08/proposing-css-input-modailty.html" title="http://radar.oreilly.com/2015/08/proposing-css-input-modailty.html" rel="noopener">http://radar.oreilly.com/2015/08/proposing-css-input-modailty.html</a>) - tab, bkardell (Thursday please)</li>
<li class="level1">snap points & oversized elements - tab</li>
<li class="level1 node"><a href="http://www.w3.org/TR/2015/WD-dpub-css-priorities-20150820/" title="http://www.w3.org/TR/2015/WD-dpub-css-priorities-20150820/" rel="noopener">“Priorities for CSS from the DPub IG”</a> (Bert): I propose we try to say for each requirement (jdaggett dialin)<ol>
<li class="level2">Is it in scope for <abbr title="Cascading Style Sheets">CSS</abbr> (and if not, where might it be solved)?</li>
<li class="level2">If in scope, what might a solution look like, roughly?</li>
</ol>
</li>
<li class="level1">Japanese Industry meet-up</li>
<li class="level1 node">css-text-4<ul>
<li class="level2">pre-wrap-* and longhands of white-space <a href="https://lists.w3.org/Archives/Public/www-style/2015Jun/0099.html" title="https://lists.w3.org/Archives/Public/www-style/2015Jun/0099.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Jun/0099.html</a></li>
</ul>
</li>
<li class="level1">Getting to pagination <a href="https://lists.w3.org/Archives/Public/www-style/2015Aug/0179.html" title="https://lists.w3.org/Archives/Public/www-style/2015Aug/0179.html" rel="noopener">https://lists.w3.org/Archives/Public/www-style/2015Aug/0179.html</a> (dauwhe)</li>
<li class="level1">First draft of <a href="https://tabatkins.github.io/specs/css-apply-rule/" title="https://tabatkins.github.io/specs/css-apply-rule/" rel="noopener">@apply rule</a> (simple mixins, powered by Custom Properties)</li>
</ul><h4 id="miscellaneous">Miscellaneous</h4>
<ul>
<li class="level1">plinss and fantasai should update hg.csswg.org/index.html</li>
</ul><h3 id="proposed-agenda-topics-fx">Proposed Agenda Topics [fx]</h3>
<ul>
<li class="level1">SVG images without intrinsic size in <abbr title="Cascading Style Sheets">CSS</abbr> border-image (added by dino)</li>
<li class="level1">SVG-as-image and loading external resources (added by smfr)</li>
<li class="level1">Matrix Interpolation revisited (added by shans)</li>
<li class="level1">SLERPing and 0deg angles (<a href="https://lists.w3.org/Archives/Public/public-fx/2015JulSep/0046.html" title="https://lists.w3.org/Archives/Public/public-fx/2015JulSep/0046.html" rel="noopener">https://lists.w3.org/Archives/Public/public-fx/2015JulSep/0046.html</a>) (added by shans)</li>
<li class="level1">Zoom Features for Media Queries (FX) (added by konno)</li>
<li class="level1">Old writing-mode values (FX) (added by heycam)</li>
<li class="level1">Dropping text-orientation:use-glyph-orientation (FX) (added by heycam)</li>
<li class="level1">getTransformToElement, for geometry utils level 2? (FX) (added by heycam)</li>
<li class="level1">path d property, wrapping in a path() function? (FX) (added by krit)</li>
</ul>
</main>
</body>
</html>