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
492 lines (482 loc) · 38.7 KB
/
Copy pathindex.html
File metadata and controls
492 lines (482 loc) · 38.7 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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Seattle F2F 2014 - 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> / seattle-2014</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="#seattle-f2f-2014">Seattle F2F 2014</a><ul class="toc">
<li class="level2"><a href="#meeting-minutes">Meeting Minutes</a></li>
<li class="level2"><a href="#location">Location</a></li>
<li class="level2"><a href="#participants">Participants</a></li>
<li class="level2"><a href="#agenda">Agenda</a><ul class="toc">
<li class="level3"><a href="#monday">Monday</a></li>
<li class="level3"><a href="#tuesday">Tuesday</a></li>
<li class="level3"><a href="#wednesday">Wednesday</a></li>
</ul>
</li>
<li class="level2"><a href="#transport-tofrom-airport">Transport to/from Airport</a></li>
<li class="level2"><a href="#housing">Housing</a></li>
<li class="level2"><a href="#travel-tofrom-adobe">Travel to/from Adobe</a></li>
<li class="level2"><a href="#group-dinner">Group dinner</a></li>
<li class="level2"><a href="#proposed-topics-for-the-meeting">Proposed topics for the meeting</a></li>
</ul></li>
</ul>
</div>
</div>
<!-- TOC END -->
<h1 id="seattle-f2f-2014">Seattle F2F 2014</h1>
<p>
<strong>Dates</strong>: 2014 January 27-29
Organizer: Sylvain Galineau, Adobe
</p>
<p>
Note:
</p>
<ul>
<li class="level1">The SVG WG meeting will be held at the same location on the same day. January 29 (Wednesday) is currently planned to be a joint day where everyone shares the same room.</li>
<li class="level1">Microsoft is hosting a Seattle Test the Web Forward event on Sunday, January 26. Sign up at <a href="http://ttwf-seattle.eventbrite.com" title="http://ttwf-seattle.eventbrite.com" rel="noopener">http://ttwf-seattle.eventbrite.com</a> if you can attend.</li>
<li class="level1">There's a Seattle web dev meetup on Wednesday, January 29th. Sign up at <a href="http://www.meetup.com/marquee-club/events/160982722/" title="http://www.meetup.com/marquee-club/events/160982722/" rel="noopener">http://www.meetup.com/marquee-club/events/160982722/</a></li>
</ul><h2 id="meeting-minutes">Meeting Minutes</h2>
<p>
<strong>Monday, 27 January:</strong>
</p>
<ul>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0604.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0604.html" rel="noopener">Part I</a>, Variables, Masking</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0602.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0602.html" rel="noopener"> Part II</a>, Syntax, Shapes, Serialization</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0603.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0603.html" rel="noopener">Part III</a>, Shadow DOM</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0606.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0606.html" rel="noopener">Part IV</a>, Transitions and Animations</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0608.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0608.html" rel="noopener">Part V</a>, Propdef Tables, Grid Layout, Issue Tracking</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0605.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0605.html" rel="noopener">Part VI</a>, CSS3 Backgrounds, CSS2.2, Counter Styles, -webkit-print-color-adjust</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0607.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0607.html" rel="noopener">Part VII</a>, Selectors, Display</li>
</ul>
<p>
<strong>Tuesday, 28 January:</strong>
</p>
<ul>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0052.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0052.html" rel="noopener">Part I</a>, Media Queries, Baseline Grids, currentColor</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0053.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0053.html" rel="noopener">Part II</a>, Reversed Lists, Transforms, Display Module, 9-slice recap</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0054.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0054.html" rel="noopener">Part III</a>, Fragmentation</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0055.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0055.html" rel="noopener">Part IV</a>, Flexbox, <br>, Serialization and Shapes</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0056.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0056.html" rel="noopener">Part V</a>, Regions</li>
</ul>
<p>
<strong>Wednesday, 29 January:</strong>
</p>
<ul>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0606.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0606.html" rel="noopener">Part I</a>, Page Selectors and Groups, CSS2.1, Region Styling</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0607.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0607.html" rel="noopener">Part II</a>, Scroll Snap Points</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0608.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0608.html" rel="noopener">Part III</a>, will-change, Blending and Compositing</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0609.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0609.html" rel="noopener">Part IV</a>, Masking, Gradients, SVG Text Fills</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0610.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0610.html" rel="noopener">Part V</a>, Media Query Macros, CSSOM Value <abbr title="Application Programming Interface">API</abbr></li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Feb/0611.html" title="http://lists.w3.org/Archives/Public/www-style/2014Feb/0611.html" rel="noopener">Part VI</a>, Custom Filters, SVG Hover Effects</li>
</ul><h2 id="location">Location</h2>
<p>
<a href="https://www.google.com/maps/preview#!q=adobe&data=!4m15!2m14!1m13!1s0x54901506ba72d6e5%3A0xf693cdc0af40611e!3m8!1m3!1d64369!2d-122.342892!3d47.6704929!3m2!1i960!2i1150!4f13.1!4m2!3d47.648301!4d-122.347935" title="https://www.google.com/maps/preview#!q=adobe&data=!4m15!2m14!1m13!1s0x54901506ba72d6e5%3A0xf693cdc0af40611e!3m8!1m3!1d64369!2d-122.342892!3d47.6704929!3m2!1i960!2i1150!4f13.1!4m2!3d47.648301!4d-122.347935" rel="noopener">Adobe Seattle, 801 North 34th Street</a>
</p>
<p>
The main entrance is in the north-east corner of the building.
</p>
<p>
<strong>Meeting room:</strong> Adobe U, first floor straight through the double doors after the reception, take a right at the end.
</p>
<p>
<strong>Dial-in info:</strong>
</p>
<ul>
<li class="level1">Toll-free (US/Canada): 1-855-870-5454</li>
<li class="level1">International dial-in: +1-408-773-6768</li>
<li class="level1">Conference code: 9939150137</li>
<li class="level1">For a toll-free number in your country, contact <a href="mailto:mailto:galineau@adobe.com" class="mail" title="mailto:galineau@adobe.com">Sylvain Galineau</a></li>
</ul>
<p>
<strong>Parking:</strong> the visitor parking lot is on the East side of the building, under the Aurora bridge. (Nearly straight when you drive down the ramp from 34th St). Reception will give you a pass to hang from your mirror.
</p>
<p>
Weather Forecast: <a href="http://forecast.weather.gov/MapClick.php?lat=47.648&lon=-122.348&unit=1" title="http://forecast.weather.gov/MapClick.php?lat=47.648&lon=-122.348&unit=1" rel="noopener">°C</a> or <a href="http://forecast.weather.gov/MapClick.php?lat=47.648&lon=-122.348" title="http://forecast.weather.gov/MapClick.php?lat=47.648&lon=-122.348" rel="noopener">°F</a>
</p><h2 id="participants">Participants</h2>
<p>
(Alphabetical by full name.)
</p>
<div class="table sectionedit5"><table class="inline">
<thead>
<tr class="row0">
<th class="col0"> Name </th><th class="col1"> Representing </th><th class="col2"> Arrive </th><th class="col3"> Leave </th><th class="col4"> Hotel </th><th class="col5"> Flight Info </th><th class="col6"> Notes </th>
</tr>
</thead>
<tr class="row1">
<td class="col0"> Alan Stearns </td><td class="col1"> Adobe </td><td class="col2"> (host) </td><td class="col3"> (host) </td><td class="col4"> home </td><td class="col5"> N/A </td><td class="col6"></td>
</tr>
<tr class="row2">
<td class="col0"> Bert Bos </td><td class="col1"> <abbr title="World Wide Web Consortium">W3C</abbr> </td><td class="col2"> 25 Jan </td><td class="col3"> 30 Jan </td><td class="col4"> Hampton Inn Seattle-Downtown </td><td class="col5"> KL6033 12:05 / KL6032 13:20 </td><td class="col6"> </td>
</tr>
<tr class="row3">
<td class="col0"> Brian Birtles </td><td class="col1"> Mozilla </td><td class="col2"> 29-jan </td><td class="col3"> 31-jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> ? </td><td class="col6"></td>
</tr>
<tr class="row4">
<td class="col0"> Cameron McCormack </td><td class="col1"> Mozilla </td><td class="col2"> 28-Jan </td><td class="col3"> 01-Feb </td><td class="col4"> Courtyard Marriott </td><td class="col5"> AS223 22:58 / AS460 10:45 </td><td class="col6"> Low carbohydrate options preferred (i.e. meats, cheeses, salads, most veggies good), but don't make too much special effort. </td>
</tr>
<tr class="row5">
<td class="col0"> Chris Lilley </td><td class="col1"> <abbr title="World Wide Web Consortium">W3C</abbr> </td><td class="col2"> 24-Jan </td><td class="col3"> 01-Feb </td><td class="col4"> 11th Avenue BnB </td><td class="col5"> UA6249 16:14 / BA48 18:10 </td><td class="col6"> arriving SFO>SEA </td>
</tr>
<tr class="row6">
<td class="col0"> Daniel Glazman </td><td class="col1"> Samsung </td><td class="col2"> 25-jan </td><td class="col3"> 29-jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> AF3622 12:40pm / AS226 08:30pm </td><td class="col6"></td>
</tr>
<tr class="row7">
<td class="col0"> Dave Cramer </td><td class="col1"> Hachette </td><td class="col2"> 24-Jan </td><td class="col3"> 30-jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> UA408 12:06pm / UA278 11:10am </td><td class="col6 leftalign"> </td>
</tr>
<tr class="row8">
<td class="col0"> Dirk Schulze </td><td class="col1"> Adobe </td><td class="col2"> 24-Jan </td><td class="col3"> 31-Jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> No idea </td><td class="col6"> arriving FRA>SEA </td>
</tr>
<tr class="row9">
<td class="col0"> fantasai </td><td class="col1"> Invited expert </td><td class="col2"> 26-Jan </td><td class="col3"> 30-Jan </td><td class="col4"> TBD </td><td class="col5"> United </td><td class="col6"> </td>
</tr>
<tr class="row10">
<td class="col0"> Florian Rivoal </td><td class="col1"> Invited expert </td><td class="col2"> 25-Jan </td><td class="col3"> 1-Feb </td><td class="col4"> Courtyard Mariott </td><td class="col5"> FI681 4:40PM / FI680 3:30PM </td><td class="col6"> </td>
</tr>
<tr class="row11">
<td class="col0"> Glenn Adams </td><td class="col1"> Cox </td><td class="col2"> </td><td class="col3"> </td><td class="col4"> </td><td class="col5"> </td><td class="col6"> phone only </td>
</tr>
<tr class="row12">
<td class="col0"> Israel Hilerio </td><td class="col1"> Microsoft </td><td class="col2"> </td><td class="col3"> </td><td class="col4"> home </td><td class="col5"> N/A </td><td class="col6"></td>
</tr>
<tr class="row13">
<td class="col0"> Jacob Goldstein </td><td class="col1"> Adobe </td><td class="col2"> 26-Jan </td><td class="col3"> 31-Jan </td><td class="col4 leftalign"> </td><td class="col5 leftalign"> </td><td class="col6 leftalign"> </td>
</tr>
<tr class="row14">
<td class="col0"> Kazutaka YAMAMOTO </td><td class="col1"> NTT </td><td class="col2"> 26-Jan </td><td class="col3"> 30-Jan </td><td class="col4"> The Edgewater </td><td class="col5"> NH1178/NH1177 </td><td class="col6"></td>
</tr>
<tr class="row15">
<td class="col0"> L. David Baron </td><td class="col1"> Mozilla </td><td class="col2"> 26 Jan </td><td class="col3"> 29 Jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> UA1581 20:10 / UA6367 19:31 </td><td class="col6"></td>
</tr>
<tr class="row16">
<td class="col0"> Leif Arne Storset </td><td class="col1"> Opera </td><td class="col2"> 25 Jan </td><td class="col3"> 29 Jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> UA 1088 20:42 / WN 601 19:30 </td><td class="col6"> No onion, limit garlic and wheat. (Intolerance only, not an allergy. I.e. don't worry that I'll die if there's a mistake.) </td>
</tr>
<tr class="row17">
<td class="col0"> Matt Rakow </td><td class="col1"> Microsoft </td><td class="col2"> </td><td class="col3"> </td><td class="col4"> home </td><td class="col5"> N/A </td><td class="col6"></td>
</tr>
<tr class="row18">
<td class="col0"> Peter Linss </td><td class="col1"> HP </td><td class="col2"> 26-jan </td><td class="col3"> 01-feb </td><td class="col4"> Courtyard Marriott </td><td class="col5"> UA6249 04:19pm / UA816 01:10pm </td><td class="col6"></td>
</tr>
<tr class="row19">
<td class="col0"> Philippe Le Hegaret </td><td class="col1"> <abbr title="World Wide Web Consortium">W3C</abbr> </td><td class="col2"> 26-Jan </td><td class="col3"> 29-Jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> UA1075 18:18 / UA0408 12:56 </td><td class="col6"> </td>
</tr>
<tr class="row20">
<td class="col0"> Rik Cabanier </td><td class="col1"> Adobe </td><td class="col2"> (host) </td><td class="col3"> (host) </td><td class="col4"> home </td><td class="col5"> N/A</td><td class="col6"> observer </td>
</tr>
<tr class="row21">
<td class="col0"> Rossen Atanassov </td><td class="col1"> Microsoft </td><td class="col2"> </td><td class="col3"> </td><td class="col4"> home </td><td class="col5"> N/A </td><td class="col6"> pescaterian </td>
</tr>
<tr class="row22">
<td class="col0"> Simon Fraser </td><td class="col1"> Apple </td><td class="col2"> 26-Jan </td><td class="col3"> 29-Jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> AA227 /AA226 </td><td class="col6"> </td>
</tr>
<tr class="row23">
<td class="col0"> Simon Sapin </td><td class="col1"> Mozilla </td><td class="col2"> 26-jan </td><td class="col3"> 30-jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> AA6929 2:50pm / BA48 6:10pm </td><td class="col6"></td>
</tr>
<tr class="row24">
<td class="col0"> Steve Zilles </td><td class="col1"> Adobe </td><td class="col2"> 25 Jan </td><td class="col3"> 29 Jan </td><td class="col4"> Marriott Courtyard </td><td class="col5"> United </td><td class="col6"></td>
</tr>
<tr class="row25">
<td class="col0"> Sylvain Galineau </td><td class="col1"> Adobe </td><td class="col2"> (host) </td><td class="col3"> (host) </td><td class="col4"> home </td><td class="col5"> N/A </td><td class="col6"></td>
</tr>
<tr class="row26">
<td class="col0"> Tab Atkins </td><td class="col1"> Google </td><td class="col2"> 25-Jan </td><td class="col3"> 29-Jan </td><td class="col4"> Courtyard Marriott </td><td class="col5"> Amtrak in (~8:30pm) / Alaska 226 (8:30pm) out </td><td class="col6"></td>
</tr>
<tr class="row27">
<td class="col0"> Taichi KAWABATA </td><td class="col1"> NTT </td><td class="col2"> 25-Jan </td><td class="col3"> 29-Jan </td><td class="col4"> Marriott Lakeside </td><td class="col5"> ANA NH1078/NH1077 </td><td class="col6"></td>
</tr>
<tr class="row28">
<td class="col0"> Tantek Çelik </td><td class="col1"> Mozilla </td><td class="col2"> 026 </td><td class="col3"> 029 </td><td class="col4"> Courtyard Marriott </td><td class="col5"> VX748 20:05 / VX759 <del>19:05</del> 20:05 <img src="/lib/images/smileys/sad.svg" class="icon smiley" alt=":-(" /> </td><td class="col6"> Pescetarian. No goat cheese (Intolerance only, not an allergy. As Leif said.) </td>
</tr>
<tr class="row29">
<td class="col0"> Koji Ishii </td><td class="col1"> Invited expert </td><td class="col2"> 25 Jan </td><td class="col3"> 30 Jan </td><td class="col4"> Hampton Inn Seattle-Downtown </td><td class="col5"> DL580 16:45 / DL9091 7:20 </td><td class="col6"> </td>
</tr>
</table><p>
Regrets:
</p>
<ul>
<li class="level1">Anton Prowse</li>
<li class="level1">Lea Verou</li>
</ul><h2 id="agenda">Agenda</h2><h3 id="monday">Monday</h3><h4 id="am">AM</h4>
<ul>
<li class="level1">Variables - what's left before CR?</li>
<li class="level1 node">Masking - remaining issues, LC/CR<ul>
<li class="level2"><shape-box> for clip-path ok?</li>
<li class="level2">bounding-box/bounding-client-rect as reference box</li>
<li class="level2">Fragmentation defined by box-decoration-break properties</li>
<li class="level2">mask-box or 9-sliced-image function</li>
</ul>
</li>
<li class="level1 node">Syntax 3 CR<ul>
<li class="level2"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0537.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0537.html" rel="noopener">http://lists.w3.org/Archives/Public/www-style/2014Jan/0537.html</a></li>
<li class="level2">Move environment encoding for @import to Cascade, for <?xml-stylesheet into CSSOM</li>
</ul>
</li>
<li class="level1">Shapes - remaining issues, LC/CR</li>
<li class="level1">Update on Shadow DOM Styling <abbr title="specification">spec</abbr></li>
</ul><h4 id="pm">PM</h4>
<ul>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2013Dec/0402.html" title="http://lists.w3.org/Archives/Public/www-style/2013Dec/0402.html" rel="noopener">Merging Animatable and Computed Value lines</a></li>
<li class="level1">Grid - open issues, initial value of grid-auto-flow</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0122.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0122.html" rel="noopener">Issue tracking</a></li>
<li class="level1">TTA - status, what's left?, get it done</li>
<li class="level1 node">Animations<ul>
<li class="level2">start time of animations</li>
</ul>
</li>
<li class="level1">Backgrounds and Borders LC</li>
<li class="level1"><abbr title="Cascading Style Sheets">CSS</abbr> 2.2</li>
<li class="level1">Standardize “-webkit-print-color-adjust: exact;” See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-print-color-adjust" title="https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-print-color-adjust" rel="noopener">https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-print-color-adjust</a>, or option 7 in <a href="http://wiki.csswg.org/ideas/print-backgrounds" title="http://wiki.csswg.org/ideas/print-backgrounds" rel="noopener">http://wiki.csswg.org/ideas/print-backgrounds</a></li>
<li class="level1 node">Selectors<ul>
<li class="level2"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0193.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0193.html" rel="noopener">Consider :has() instead of the subject indicator</a></li>
<li class="level2">Punt anything that's not stable, ship level 4</li>
</ul>
</li>
</ul><h3 id="tuesday">Tuesday</h3><h4 id="am1">AM</h4>
<ul>
<li class="level1 node">Mediaqueries<ul>
<li class="level2"><a href="http://lists.w3.org/Archives/Public/www-style/2013Nov/0122.html" title="http://lists.w3.org/Archives/Public/www-style/2013Nov/0122.html" rel="noopener">http://lists.w3.org/Archives/Public/www-style/2013Nov/0122.html</a></li>
<li class="level2"><a href="http://lists.w3.org/Archives/Public/www-style/2013Nov/0125.html" title="http://lists.w3.org/Archives/Public/www-style/2013Nov/0125.html" rel="noopener">http://lists.w3.org/Archives/Public/www-style/2013Nov/0125.html</a></li>
<li class="level2">MQ4 review changes and FPWD?</li>
<li class="level2">deprecate device-width, device-height, device-aspect-ratio?</li>
<li class="level2">Add Tab as an editor</li>
</ul>
</li>
<li class="level1">Baseline grid</li>
<li class="level1">CSS3 Color and currentColor erratum</li>
<li class="level1">Reversed lists</li>
<li class="level1">Transforms Issues</li>
<li class="level1">Display <abbr title="specification">spec</abbr> - FPWD, naming display-extras and box, use fantasai's run-in model</li>
</ul><h4 id="pm1">PM</h4>
<ul>
<li class="level1 node">Fragmentation<ul>
<li class="level2">background positioning/sizing on auto height and variable width fragments</li>
<li class="level2">fragmentation of borders with border radius going to the next fragment</li>
<li class="level2">specify transform-origin on fragmentation (follow up previous resolution)</li>
</ul>
</li>
<li class="level1">Flexbox - remaining issues, LC</li>
<li class="level1">Shape serialization</li>
<li class="level1">Elements as Regions: <a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0090.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0090.html" rel="noopener">http://lists.w3.org/Archives/Public/www-style/2014Jan/0090.html</a></li>
</ul><h3 id="wednesday">Wednesday</h3><h4 id="am2">AM</h4>
<ul>
<li class="level1"><a href="http://dev.w3.org/csswg/css-gcpm/#page-selectors" title="http://dev.w3.org/csswg/css-gcpm/#page-selectors" rel="noopener">Page selectors</a></li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0310.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0310.html" rel="noopener">Simplify the object size of replaced elements</a></li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0210.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0210.html" rel="noopener">will-change spec draft</a></li>
<li class="level1">Scroll Snap Points</li>
</ul><h4 id="pm2">PM</h4>
<ul>
<li class="level1">Blending/compositing, CR (FX day)</li>
<li class="level1 node">Masking - remaining issues, LC/CR<ul>
<li class="level2">userSpaceOnUse for <abbr title="HyperText Markup Language">HTML</abbr> (FX day)</li>
<li class="level2">New boxes (possibly SVG specific) viewport, stroke-box (FX day)</li>
</ul>
</li>
<li class="level1">fill/stroke with background syntax (FX day)</li>
<li class="level1">Proposal: ability to specify gradient midpoints (Rik)</li>
<li class="level1">Custom media features</li>
<li class="level1 node">Tab's topics:<ul>
<li class="level2">Selector and MQ aliases, bringing the power of custom properties to more of <abbr title="Cascading Style Sheets">CSS</abbr>: <a href="http://tabatkins.github.io/specs/css-aliases/" title="http://tabatkins.github.io/specs/css-aliases/" rel="noopener">http://tabatkins.github.io/specs/css-aliases/</a></li>
<li class="level2">Layout Transition Primitives, three small JS primitives for addressing the problem of transitioning between different layouts. (That is, “when I switch the 'grid' property, everything should fly to its new place!”.) <a href="http://tabatkins.github.io/specs/layout-transitions/" title="http://tabatkins.github.io/specs/layout-transitions/" rel="noopener">http://tabatkins.github.io/specs/layout-transitions/</a></li>
<li class="level2">An initial sketch of an object-based OM: <a href="http://www.xanthir.com/b4UD0" title="http://www.xanthir.com/b4UD0" rel="noopener">http://www.xanthir.com/b4UD0</a></li>
<li class="level2">A proposal for nesting <abbr title="Cascading Style Sheets">CSS</abbr> rules (revived from an older discussion!): <a href="http://tabatkins.github.io/specs/css-nesting/" title="http://tabatkins.github.io/specs/css-nesting/" rel="noopener">http://tabatkins.github.io/specs/css-nesting/</a></li>
</ul>
</li>
</ul><h2 id="transport-tofrom-airport">Transport to/from Airport</h2>
<p>
Traveling options to/from <a href="http://www.portseattle.org/sea-tac/Pages/default.aspx" title="http://www.portseattle.org/sea-tac/Pages/default.aspx" rel="noopener">Sea-Tac Airport</a> include:
</p>
<ul>
<li class="level1">The <a href="http://www.soundtransit.org/Schedules/Central-Link-light-rail?tab=Map" title="http://www.soundtransit.org/Schedules/Central-Link-light-rail?tab=Map" rel="noopener">Link Light Rail</a> departs every 7.5 to 15 minutes depending on the time of day. The trip takes about 40mn end to end; the fare is $2.75 one way. This will get you to the Convention Center station, which is 3 miles south of the Adobe office. From the last station (Westlake), it's about a 2km walk to the Courtyard Marriot.</li>
<li class="level1">Taxi fares from the airport to downtown run around $50 + tip on average.</li>
<li class="level1">Uber users pay $50 flat for a black car.</li>
</ul><h2 id="housing">Housing</h2>
<ul>
<li class="level1 node">Nearest hotels<ul>
<li class="level3 node"><a href="http://www.marriott.com/hotels/travel/seacd-courtyard-seattle-downtown-lake-union/" title="http://www.marriott.com/hotels/travel/seacd-courtyard-seattle-downtown-lake-union/" rel="noopener">Courtyard Seattle Downtown Lake Union</a><ul>
<li class="level4">Same hotel we held the 2011 meeting at. ~2 miles from Adobe office.</li>
<li class="level4 node">You can book a room at the rate of $139/per day by either:<ul>
<li class="level6"><a href="http://www.marriott.com/meeting-event-hotels/group-corporate-travel/groupCorp.mi?resLinkData=Adobe%20Room%20Block%5ESEACD%60ADBADBA%60139%60USD%60false%601/25/14%602/2/14%601/3/14&app=resvlink&stop_mobi=yes" title="http://www.marriott.com/meeting-event-hotels/group-corporate-travel/groupCorp.mi?resLinkData=Adobe%20Room%20Block%5ESEACD%60ADBADBA%60139%60USD%60false%601/25/14%602/2/14%601/3/14&app=resvlink&stop_mobi=yes" rel="noopener">Following this URL</a></li>
<li class="level6">Calling (800)228-9290 or +1-(206)213-0100 and asking for a room in the <strong>Adobe Room Block</strong></li>
<li class="level6">The room block is reserved from Saturday 1/25 until 2/2.</li>
<li class="level6"><strong>IMPORTANT: your reservation must be made before EOD Friday, January 3 (Pacific Time) to secure this rate</strong></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="level1 node">Downtown hotels<ul>
<li class="level3"><a href="http://www.hotelandra.com/Hotel Andra" title="http://www.hotelandra.com/Hotel Andra" rel="noopener">http://www.hotelandra.com/Hotel Andra</a></li>
<li class="level3"><a href="http://www.fairmont.com/seattle/" title="http://www.fairmont.com/seattle/" rel="noopener">Fairmont Seattle</a></li>
<li class="level3"><a href="http://www.hotelmaxseattle.com/" title="http://www.hotelmaxseattle.com/" rel="noopener">Hotel Max</a></li>
<li class="level3"><a href="http://www.marriott.com/hotels/travel/seawf-seattle-marriott-waterfront/" title="http://www.marriott.com/hotels/travel/seawf-seattle-marriott-waterfront/" rel="noopener">Seattle Marriott Waterfront</a></li>
</ul>
</li>
<li class="level1 node">Capitol Hill hotels<ul>
<li class="level3">Though farther than downtown, Cap Hill is the fun and hip area of Seattle. Very walkable and a lot of restaurants, bars etc. Highly recommended if you're going to spend a little extra time here but it will be more work to reach the meeting venue from here (while the inns below are not much farther from Adobe than the downtown waterfront, there is a lake in the way…)</li>
<li class="level3"><a href="http://www.gaslight-inn.com/" title="http://www.gaslight-inn.com/" rel="noopener">Gaslight Inn</a></li>
<li class="level3"><a href="http://www.11thavenueinn.com/" title="http://www.11thavenueinn.com/" rel="noopener">11th Avenue Inn</a></li>
</ul>
</li>
<li class="level1 node">AirBnb<ul>
<li class="level3">Though Seattle is not as clustered with Airbnb options as other cities, it is catching up.</li>
<li class="level3">The Fremont and Wallingford neighborhoods guarantee you walking distance to the meeting. The Eastlake neighborhood is bikable but remember: late January implies some rain.</li>
<li class="level3"><a href="https://www.airbnb.com/rooms/1844791?guests=5&s=1005" title="https://www.airbnb.com/rooms/1844791?guests=5&s=1005" rel="noopener">A 3BR house in the same neighborhood as Adobe, ~12-15mn walk; no reviews yet but this would be my favorite to rent around here</a></li>
<li class="level3"><a href="https://www.airbnb.com/rooms/1472532?guests=3&s=3155" title="https://www.airbnb.com/rooms/1472532?guests=3&s=3155" rel="noopener">Downtown 1 BR apartment</a></li>
<li class="level3"><a href="https://www.airbnb.com/rooms/59838?guests=2&s=a14d" title="https://www.airbnb.com/rooms/59838?guests=2&s=a14d" rel="noopener">Downtown 2BR close to buses</a></li>
<li class="level3"><a href="http://www.vrbo.com/467811" title="http://www.vrbo.com/467811" rel="noopener">Half of a bungalow within walking distance</a></li>
</ul>
</li>
</ul><h2 id="travel-tofrom-adobe">Travel to/from Adobe</h2>
<ul>
<li class="level1">At 3.8 miles the waterfront Marriott is the furthest from the office.</li>
<li class="level1">A number of buses - 26, 28, 40 - can be taken from 3rd & Virginia downtown to Fremont. Ride time ~20-30mn depending on traffic. One-way ride fare is $2.50.</li>
<li class="level1">Uber/UberX, Lyft and car2go are also available in Seattle.</li>
<li class="level1">This being Seattle, <a href="http://www.ibike.org/ibike/salish/bicycle-rental.htm" title="http://www.ibike.org/ibike/salish/bicycle-rental.htm" rel="noopener"> bike rentals</a> are available.</li>
<li class="level1 node"><strong>Bus travel from Courtyard Marriott</strong><ul>
<li class="level3">The 40 and 62 buses travel stop within a block from our office, leaving on Westlake Ave. across from the hotel.</li>
<li class="level3">Both buses will stop right before the Fremont bridge (“Westlake Aly” stop).</li>
<li class="level3">Only the 40 crosses the bridge and stops at N 34th St.</li>
<li class="level3">If you get off before the bridge - or right after - the quickest way to Adobe is to start walking across the bridge then down the staircase to the canal bank. These staircases are located right after the blue towers on each side of the bridge. Watch for bike traffic both on the bridge and on the trail at the bottom of the stairs.</li>
<li class="level3">Fare: $2.50 at peak time, exact change upon boarding.</li>
</ul>
</li>
</ul><h2 id="group-dinner">Group dinner</h2>
<p>
* This will be held at <a href="http://hungerseattle.com/" title="http://hungerseattle.com/" rel="noopener">hunger</a> a couple of blocks from our office on the evening of Tuesday 1/28/2014.
</p><h2 id="proposed-topics-for-the-meeting">Proposed topics for the meeting</h2>
<ul>
<li class="level1 node">Mediaqueries<ul>
<li class="level2">MQ4 review changes and FPWD?</li>
<li class="level2"><a href="http://lists.w3.org/Archives/Public/www-style/2013Nov/0122.html" title="http://lists.w3.org/Archives/Public/www-style/2013Nov/0122.html" rel="noopener">http://lists.w3.org/Archives/Public/www-style/2013Nov/0122.html</a></li>
<li class="level2"><a href="http://lists.w3.org/Archives/Public/www-style/2013Nov/0125.html" title="http://lists.w3.org/Archives/Public/www-style/2013Nov/0125.html" rel="noopener">http://lists.w3.org/Archives/Public/www-style/2013Nov/0125.html</a></li>
<li class="level2">Add Tab as an editor</li>
<li class="level2">deprecate device-width, device-height, device-aspect-ratio?</li>
</ul>
</li>
<li class="level1">Standardize “-webkit-print-color-adjust: exact;” See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-print-color-adjust" title="https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-print-color-adjust" rel="noopener">https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-print-color-adjust</a>, or option 7 in <a href="http://wiki.csswg.org/ideas/print-backgrounds" title="http://wiki.csswg.org/ideas/print-backgrounds" rel="noopener">http://wiki.csswg.org/ideas/print-backgrounds</a></li>
<li class="level1">Elements as Regions: <a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0090.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0090.html" rel="noopener">http://lists.w3.org/Archives/Public/www-style/2014Jan/0090.html</a></li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0122.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0122.html" rel="noopener">Issue tracking</a></li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2013Dec/0402.html" title="http://lists.w3.org/Archives/Public/www-style/2013Dec/0402.html" rel="noopener">Merging Animatable and Computed Value lines</a></li>
<li class="level1 node">Masking - remaining issues, LC/CR<ul>
<li class="level2"><shape-box> for clip-path ok?</li>
<li class="level2">bounding-box/bounding-client-rect as reference box</li>
<li class="level2">Fragmentation defined by box-decoration-break properties</li>
<li class="level2">mask-box or 9-sliced-image function</li>
<li class="level2">userSpaceOnUse for <abbr title="HyperText Markup Language">HTML</abbr> (FX day)</li>
<li class="level2">New boxes (possibly SVG specific) viewport, stroke-box (FX day)</li>
</ul>
</li>
<li class="level1 node">Fragmentation<ul>
<li class="level2">background positioning/sizing on auto height and variable width fragments</li>
<li class="level2">fragmentation of borders with border radius going to the next fragment</li>
<li class="level2">specify transform-origin on fragmentation (follow up previous resolution)</li>
</ul>
</li>
<li class="level1">Shapes - remaining issues, LC/CR</li>
<li class="level1">Flexbox - remaining issues, LC</li>
<li class="level1">Grid - open issues, initial value of grid-auto-flow</li>
<li class="level1">TTA - status, what's left?, get it done</li>
<li class="level1">Update on Shadow DOM Styling <abbr title="specification">spec</abbr></li>
<li class="level1">Display <abbr title="specification">spec</abbr> - FPWD, naming display-extras and box, use fantasai's run-in model</li>
<li class="level1 node">Selectors<ul>
<li class="level2"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0193.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0193.html" rel="noopener">Consider :has() instead of the subject indicator</a></li>
<li class="level2">Punt anything that's not stable, ship level 4</li>
</ul>
</li>
<li class="level1">CSS3 Color and currentColor erratum</li>
<li class="level1">Variables - what's left before CR?</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0210.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0210.html" rel="noopener">will-change spec draft</a></li>
<li class="level1"><a href="http://dauwhe.github.io/specs/Overview.html#page-selectors" title="http://dauwhe.github.io/specs/Overview.html#page-selectors" rel="noopener">Page selectors</a></li>
<li class="level1">Reversed lists</li>
<li class="level1 node">Animations<ul>
<li class="level2">start time of animations</li>
</ul>
</li>
<li class="level1">fill/stroke with background syntax (FX day)</li>
<li class="level1"><a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0310.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0310.html" rel="noopener">Simplify the object size of replaced elements</a></li>
<li class="level1">Proposal: ability to specify gradient midpoints (Rik)</li>
<li class="level1">Baseline grid</li>
<li class="level1">Syntax 3 CR</li>
<li class="level1">Scroll Snap Points</li>
<li class="level1">Move environment encoding for @import to Cascade, for <?xml-stylesheet into CSSOM</li>
<li class="level1"><abbr title="Cascading Style Sheets">CSS</abbr>-Ruby Ruby-merge default value be <a href="http://lists.w3.org/Archives/Public/www-style/2014Jan/0415.html" title="http://lists.w3.org/Archives/Public/www-style/2014Jan/0415.html" rel="noopener">auto</a>?</li>
</ul>
</main>
</body>
</html>