This repository has been archived by the owner on Jan 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
feed.rss
1206 lines (1008 loc) · 103 KB
/
feed.rss
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Test the Web Forward</title>
<description>Home of the Open Web Platform testing effort.</description>
<link>http://testthewebforward.com</link>
<atom:link href="http://testthewebforward.com/feed.xml" rel="self" type="application/rss+xml" />
<item>
<title>Test the Web Forward Portland!</title>
<description><p>Test The Web Forward to conclude PDX Dev Week!</p>
<p>Test the Web Forward is throwing an event in Portland on August 3. The focus of this event is on learning, hacking, and writing tests for W3C specifications. You&#39;ve spent all week at <a href="http://2014.cascadiajs.com">CascadiaJS 2014</a> and other events learning about awesome new parts of the Web Platform, now give back, with a great chance to network and learn at the same time. During the event, experts will teach you about W3C specs &amp; W3C testing and will guide you as you help make the Web a better, more interoperable place.</p>
<p>Ian Melven of New Relic and Brad Hill of PayPal will be introducing and hosting a test development session for <a href="http://www.w3.org/TR/CSP">Content Security Policy</a>, and additional Experts and Speakers will be posted shortly on the <a href="/events/2014/portland.html">Test the Web Forward</a> website. </p>
<p>Also, follow us on <a href="https://twitter.com/testthewebfwd">@testthewebfwd</a> for updates and be sure to sign up for the <a href="http://lists.w3.org/Archives/Public/public-testtwf/">W3C Test the Web Forward mail list</a>. </p>
<p>To learn more about the past events, check out our posts on Test the Web Forward <a href="http://blogs.adobe.com/webplatform/2012/11/09/test-the-web-forward-paris/">Paris</a>, <a href="http://blogs.adobe.com/webplatform/2012/10/25/test-the-web-forward-beijing/">Beijing</a> and <a href="http://blogs.adobe.com/webplatform/2012/06/20/test-the-web-forward-weekend/">San Francisco</a>.</p>
<h4>Get Registered</h4>
<p><a href="https://www.eventbrite.com/e/test-the-web-forward-portland-2014-tickets-11850520225">Registration is now open on Eventbrite</a>, so get signed up! Help make the Web a better place!</p>
<h4>Can't make it?</h4>
<p>Hey, if you are busy or can&#39;t make it for any reason, it is a bummer, but be sure to sign up for the <a href="http://lists.w3.org/Archives/Public/public-testtwf/">W3C Test the Web Forward mail list</a> so that you learn about future happenings!</p>
</description>
<pubDate>Fri, 06 Jun 2014 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2014/06/06/portland-event-announcement.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2014/06/06/portland-event-announcement.html</guid>
</item>
<item>
<title>Test the Web Forward Seoul Recap</title>
<description><p><a href="https://www.flickr.com/photos/96746315@N08/sets/72157643826942215/">Here are some photos</a>
taken by Jonathan Jeon from <a href="/events/2014/seoul.html">Test The Web Forward in Seoul</a>
last weekend.</p>
<p>We had a good turnout at the Ritz-Carlton hotel (lovely food!)
for talks and preparation on Friday evening, then a day of coding on
Saturday. It was the first TestTWF in Seoul so several people needed
help with the concept and setting up Git and the test repository.</p>
<p>We also had a video link with Tokyo (WebRTC, of course!) as they held
their third TestTWF which added to the fun. The Tokyo crew concentrated
on CSS text decoration, HTML ruby and shadow DOM.</p>
<p>AT&amp;T also joined in the video chat from the USA on Saturday morning.</p>
<p>In Seoul, the attendees were divided into three groups:</p>
<ul>
<li>Accessibility (Shadi was there for guidance)</li>
<li>CSS</li>
<li>HTML</li>
</ul>
<p>During the Saturday I saw people working on the following areas:</p>
<ul>
<li>Browser Context</li>
<li>Custom Elements (Web Components)</li>
<li>HTML Import (Web Components)</li>
<li>Text Track</li>
<li>Web Crypto API</li>
</ul>
<p>Despite some initial confusion about W3C specs and what to work on,
there was a positive attitude and good cooperation between experts and
newbies among the tables. Sangwhan was particularly noticeable for his
technical help while wearing a teddy bear costume!</p>
<p>There&#39;s a core group of friendly, enthusiastic &quot;open webbers&quot; in Seoul
so I&#39;m hopeful this will not be the last TestTWF there.</p>
</description>
<pubDate>Wed, 16 Apr 2014 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2014/04/16/seoul-event-recap.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2014/04/16/seoul-event-recap.html</guid>
</item>
<item>
<title>Test the Web Forward - November/December Newsletter</title>
<description><p>As we wind down 2013, let&#39;s reflect on what a great year it&#39;s
been for Test the Web Forward. We&#39;ve held five major events
around the world where attendees contributed thousands of new
testt, added over 1000 new subscribers to our
mailing list, built up a rich set of centralized W3C test documentation, relaunched testthewebforward.org as the
one-stop-shop for Open Web Platform testing, and officially became
part of the W3C. A hearty thanks and congratulations to all of YOU
contributed, attended, participated, and supported our movement. We
have a truly awesome community.</p>
<h3>Welcome New Subscribers</h3>
<p>Welcome to our new subscribers who attended our Shenzhen event in
November. We had a great time with you all and were once again
deeply impressed by the level of enthusiasm we saw in the Chinese
Web development community.</p>
<h3>Upcoming TestTWF Events</h3>
<h4>Test the Web Forward Seattle, January 26 8:30am-8:00pm PST</h4>
<p>Earlier this year in April, the IE Developer Relations team hosted
a great event at the Microsoft office in Seattle. The event was such
a success, we&#39;re going back to kick off TestTWF 2014, once again
graciously hosted by Microsoft. If you&#39;re in the Pacific Northwest,
don&#39;t miss this one! <a href="http://ttwf-seattle.eventbrite.com">Registration is now open</a>.</p>
<h3>Past TestTWF Events</h3>
<h4>Test the Web Forward Shenzhen @ TPAC, November 9</h4>
<p>In November, we returned to China for a third time and met hundreds
more passionate Web developers. Experts came from all over the
world to work with the local community and we had a dazzling lineup
of speakers, including Tim Berners-Lee! It was a full day of
learning, hacking, food, drinks and prizes.</p>
<p>Read some good summaries of the event here:</p>
<ul>
<li><a href="http://blogs.adobe.com/webplatform/2013/11/20/test-the-web-forward-shenzhen-recap/">Adobe Web Platform Blog</a></li>
<li><a href="http://www.csdn.net/article/a/2013-11-15/15817104">CSDN</a></li>
<li><a href="http://www.51cto.com/art/201311/417786.htm">51CTO</a></li>
</ul>
<h3>Test the Web Forward Event Kit - Now Available!</h3>
<p>We&#39;re pleased to announce that our <a href="http://testthewebforward.org/events/kits/event-kit.html">Event</a> and <a href="http://testthewebforward.org/events/kits/meetup-kit.html">Meetup</a> Kits
are now available on testthewebforward.org. As we move into 2014,
we&#39;ll be actively seeking organizations (big or small) and user
groups to host their own TestTWF events. If you&#39;ve never hosted an
event or aren&#39;t familiar with Test the Web Forward, we&#39;ve provided
these kits with all the details you&#39;ll need to get you going. If
you&#39;re interested in hosting an event, you may also send a note to
[email protected] and we can help get you started.</p>
<h3>CTA: Get Involved!</h3>
<h4>Contribute to TestTheWebForward.org</h4>
<p>The invitation remains open to add your own testing documentation
to our site. With the much-improved Github workflow, it&#39;s easy to
<a href="https://github.com/w3c/testtwf-website/blob/gh-pages/CONTRIBUTING.md">make contributions</a>.</p>
<p>Thanks for great year of Testing the Web Forward. Happy Holidays and we&#39;ll see you next year!</p>
<hr>
</description>
<pubDate>Thu, 19 Dec 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/12/19/testtwf-monthly-newsletter-nov-dec.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/12/19/testtwf-monthly-newsletter-nov-dec.html</guid>
</item>
<item>
<title>Test the Web Forward Shenzhen Recap</title>
<description><p>On November 9, 2013, the eighth major Test the Web Forward event was held in Shenzhen, China. The primary goals of this event was to raise awareness of the crucial need for tests, to educate newcomers on the test creation and submission processes, and to cultivate a community of Open Web Platform contributors beyond the day of the event.</p>
<p>With the recent announcement of the <a href="http://www.w3.org/blog/2013/10/welcoming-testtwf-to-w3c/">W3C adopting the Test the Web Forward brand</a>, for the first time this event was part of the W3C&#8217;s annual <a href="http://www.w3.org/2013/11/TPAC/">TPAC</a> conference at the Shenzhen Wuzhou Guest House. With TPAC attendees traveling from all over the world, this TestTWF event drew over 40 experts and spec editors covering many W3C specs and areas, including HTML5, CSS, WebDriver, and Web Accessibility. It was an event that brought together a large group of enthusiastic web developers and an extraordinary number of people with deep knowledge of the Web.</p>
<p>Another first for Test the Web Forward was that this was a single day event. In the past, the education and hacking were split across two days but this event reduced the hacking time and focused more on the goals of education and raising awareness.</p>
<p>Early Saturday morning, over 250 attendees filled Huaxia Hall for a day full of learning, socializing, and hacking.</p>
<p><img src="/assets/blog/shenzhen/testtwf-shenzhen3.jpg" width="600" height="400" /></p>
<h3>Speakers</h3>
<p>Just as the event was full of an unprecedented number of experts, the lineup of speakers was equally impressive.</p>
<p><strong>The Keynote</strong><br />
We were honored to have <strong>Angel Li, Site Manager of W3C Beihang</strong>, take the time out of her busy TPAC schedule to join us and deliver the opening message to attendees. Angel gave an <a href="/assets/slides/TestTWFShenzhen-Keynote-AngelLi.pdf">inspiring talk</a> and emphasized the importance of interoperability on the Web and the vital need for tests during the W3C spec lifecycle.</p>
<p><strong>Educational Talks</strong></p>
<p>The first two talks were given by <strong>Belem Zhang of Intel</strong>. Belem attended the <a href="http://testthewebforward.org/events/2013/shanghai.html">Shanghai event</a> and exhibited such proficiency there, he was invited to Shenzhen to help educate more newcomers. Belem began with <a href="http://codedefect.com/ttwf-sz-belem/#/">How to Read W3C Specifications</a>, emphasizing that specs are not intended to be user manuals and are written in a way that test author can extract assertions that require supporting tests. He then moved on to the detailed instructions for <a href="http://codedefect.com/ttwf-sz-belem/#/5">Using testharness.js</a>, the W3C&#8217;s JavaScript testing framework. To test the audience&#8217;s knowledge gained from his presentation, he ended with a short quiz and quickly handed out a prize to the first correct response!</p>
<p>The next two talks were given by <strong>Zhiqiang Zhang, </strong>also of<strong> Intel</strong>. Zhiqiang is among just a small group of people who&#8217;ve attended four TestTWF events, including being a featured speaker at the past China events and attending the first TestTWF in San Francisco. Zhiqiang described <a href="http://zqzhang.github.io/reveal.js/reftest-and-review.html#/">How to Write W3C Reftests</a>, which is the type of test preferred by the W3C for testing how browsers visually render. These types of tests are particularly common and useful for testing CSS. Following a logical order, Zhiqiang then covered the very important topic of <a href="http://zqzhang.github.io/reveal.js/reftest-and-review.html#/3">How to Review W3C Tests</a> (or How to Write Tests That Pass Review). One of the more challenging problems facing the W3C now is having qualified reviewers to approve the growing number of incoming tests. Recognizing this need early on, Zhiqiang nominated this topic and delivered an excellent talk on the subject. Last, and most importantly, Zhiqiang covered <a href="http://zqzhang.github.io/reveal.js/reftest-and-review.html#/5">Where to Report Bugs</a> - pointing the bugbases for specs, tests, and for each of the major browsers.</p>
<p><strong>Lightning Talks</strong></p>
<p>After the presentations came a series of lightning talks, where spec editors and experts gave a quick overview of a number of specs that need tests. Each person made a pitch to the crowd to write tests for their spec:</p>
<p><strong>David Burns</strong>, <strong>Mozilla:</strong> WebDriver<br />
<strong>Leif Arne Storset</strong>, <strong>Opera: </strong>CSS User Interface<br />
<strong>Alan Stearns</strong>, <strong>Adobe: </strong>CSS Shapes<br />
<strong>Dirk Schulze</strong>, <strong>Adobe: </strong>CSS Masking<br />
<strong>David Baron</strong>, <strong>Mozilla: </strong>CSS Fonts<br />
<strong>Rik Cabanier</strong>,<strong> Adobe:</strong> Compositing &amp; Blending<br />
<strong>Mark Sadecki, W3C + Kenny Zhang</strong>, <strong>W3C:</strong> Web Accessibility<br />
<strong>Daniel Davis, W3C:</strong> HTML5<br />
<strong>James Graham</strong>, <strong>Mozilla: </strong>WPTServer (newly implemented test environment)</p>
<p><img src="/assets/blog/shenzhen/lightning.jpg" width="450" height="600" /></p>
<p>After the lightning talks, attendees were encouraged to meet and mingle with the experts. They had their questions answered and by lunchtime, everyone had signed up for a testing group.</p>
<p><img src="/assets/blog/shenzhen/testtwf-shenzhen45.jpg" width="600" height="400" /></p>
<h3><strong>Hacking</strong></h3>
<p>After lunch, attendees had several hours to hack. People carefully followed the <a href="http://testthewebforward.org/docs/github-101.html">GitHub setup instructions</a>, got their test environments set up, and starting taking on test writing. The energy in the room was great and the experts and attendees were very engaged all day. As the pull requests began to come in, we started hearing the familiar TestTWF &#8220;gong&#8221; followed by ripples of applause as people got more excited with each new test submitted. Throughout the day, there were several raffles &#8211; from the random drawings emerged several lucky winners of prizes ranging from gift cards to iPad Minis to the Adobe Creative Suite Master Collection.</p>
<p><img src="/assets/blog/shenzhen/testtwf-shenzhen44.jpg" width="700" height="531" /></p>
<h3><strong>Closing Talk</strong></h3>
<p>Perhaps the biggest prize of all for attendees and experts alike was hearing the closing words from a very special speaker, <strong>Tim Berners-Lee, Director of the W3C and inventor of the World Wide Web</strong>. When he was introduced, the event emcee suggested that people close their laptops to give him their undivided attention, to which he replied, &#8220;Don&#8217;t close your laptops! Keep coding!&#8221; At that, the room erupted in laughter and applause. Tim thanked the crowd for showing up and making a difference. He encouraged everyone keep making a difference, to teach their friends and colleagues what they learned that day, and to host an event of their own.</p>
<p><img alt="Tim Berners-Lee" src="/assets/blog/shenzhen/testtwf-shenzhen41.jpg" width="600" height="444" /></p>
<h3><strong>After the Event</strong></h3>
<p>In the days following event, we saw good evidence of achieving success in perhaps the most important goal of this event: cultivating a community of Open Web contributors beyond just this one day. For the week following the event, we saw unprecedented followup activity in GitHub. Experts continued reviewing and new test authors continued their work in progress. We were delighted that after some new test authors had their tests reviewed and merged that they asked to be assigned more tests to write! While there is still much more to do, we are once again pleased at the tremendous turnout and enthusiasm from the Shenzhen web community during and after this event.</p>
<h3><strong>Favorite Quotes</strong></h3>
<p>&#8220;Why don&#8217;t you ask the HTML Editor? He&#8217;s sitting right there.&#8221;<br />
&#8211; Doug Schepers, W3C Developer Relations</p>
<p>&#8220;Writing tests is a lot of fun. I want work on more challenging tests later on!&#8221;<br />
&#8211; Sherlock Zhong, Attendee</p>
<p>&#8220;It was so easy! I wrote my first test and found a bug!&#8221;</p>
<p>&#8211; Jonathan Dang, Attendee</p>
<p>&#8220;This was my first Test the Web Forward. I really learned a lot&#8221;<br />
&#8211; Mark Sadecki, Accessibility Expert</p>
<h3><strong>Special Thanks</strong></h3>
<p>These events would not be possible without the help and support of so many great people in the Open Web community. A very special thanks to these people who arrived in China early and spent a long and very full Saturday to help Move the Web Forward:</p>
<p><strong>Experts &amp; Speakers</strong><br />
Denis Ah-Kang, Wilhelm Joys Andersen, David Baron, Robin Berjon, Bert Bos, Judy Brewer, David Burns, Rik Cabanier, Michael Cooper, Daniel Davis, fantasai, Sylvain Galineau, James Graham, Andrew Kirkpatrick, Tobie Langel, Philippe Le Hégaret, Angel Li, Peter Linss, Sangwhan Moon, Mary Jo Mueller, Simon Pieters, Mark Sadecki, Simon Sapin, Dirk Schulze, Michael [tm] Smith, Alan Stearns, Simon Stewart, Leif Arne Storset, Masataka Yakura, Belem Zhang, Kun Zhang, Zhiqiang Zhang, and of course, Tim Berners-Lee.</p>
<p><strong>Translators</strong></p>
<p>And to a wonderful group of people who volunteered their time to provide translation support. You all went above and beyond&#8230;</p>
<p>Wei Jiang, Aili Wang, Wei Wu, Xiaoqian (Cindy) Wu, Donald Zhao.</p>
<h3>Photos</h3>
<p>Many thanks to TestTWF attendee, <a href="https://plus.google.com/101690758836974068276">Bob Zheng</a> for taking these beautiful photos of this great event.</p>
<style type='text/css'>
#gallery-1 {
margin: auto;
}
#gallery-1 .gallery-item {
float: left;
margin-top: 10px;
text-align: center;
width: 20%;
}
#gallery-1 img {
border: 2px solid #cfcfcf;
}
#gallery-1 .gallery-caption {
margin-left: 0;
}
/* see gallery_shortcode() in wp-includes/media.php */
</style>
<!--<div id='gallery-1' class='gallery galleryid-5301 gallery-columns-5 gallery-size-thumbnail'><dl class='gallery-item'>-->
<div id='gallery-1'><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen5.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen5-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen7.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen7-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen8.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen8-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen9.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen9-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen10.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen10-150x150.jpg" class="img-responsive" /></a>
</dt></dl><br style="clear: both" /><dl class='gallery-item'>
<dt class='gallery-icon portrait'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen11.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen11-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon portrait'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen12.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen12-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen13.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen13-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen14.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen14-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen15.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen15-150x150.jpg" class="img-responsive" /></a>
</dt></dl><br style="clear: both" /><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen16.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen16-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen17.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen17-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen18.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen18-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen19.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen19-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen20.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen20-150x150.jpg" class="img-responsive" /></a>
</dt></dl><br style="clear: both" /><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen21.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen21-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon portrait'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen22.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen22-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen23.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen23-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen24.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen24-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen25.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen25-150x150.jpg" class="img-responsive" /></a>
</dt></dl><br style="clear: both" /><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen26.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen26-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen27.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen27-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen28.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen28-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon portrait'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen29.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen29-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen30.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen30-150x150.jpg" class="img-responsive" /></a>
</dt></dl><br style="clear: both" /><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen31.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen31-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen32.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen32-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen33.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen33-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen34.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen34-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon portrait'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen35.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen35-150x150.jpg" class="img-responsive" /></a>
</dt></dl><br style="clear: both" /><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen36.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen36-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen37.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen37-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen38.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen38-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon portrait'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen40.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen40-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen42.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen42-150x150.jpg" class="img-responsive" /></a>
</dt></dl><br style="clear: both" /><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href="/assets/blog/shenzhen//testtwf-shenzhen43.jpg"><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen43-150x150.jpg" class="img-responsive" /></a>
</dt></dl><dl class='gallery-item'>
<dt class='gallery-icon landscape'>
<a href='/assets/blog/shenzhen//testtwf-shenzhen39.jpg'><img width="150" height="150" src="/assets/blog/shenzhen/testtwf-shenzhen39-150x150.jpg" class="img-responsive" /></a>
</dt></dl>
<br style='clear: both;' />
</div>
</description>
<pubDate>Wed, 20 Nov 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/11/20/shenzhen-event-recap.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/11/20/shenzhen-event-recap.html</guid>
</item>
<item>
<title>Test the Web Forward - October Newsletter</title>
<description><p>On this All Hallow&#39;s Eve, we&#39;re wearing our dinosaur costumes in
celebration of this day and of another great month-- and we&#39;ll be keeping them on until we get to China. October brought in many new members to to our community, hundreds of registrants for our next big event, a dazzling lineup of confirmed speakers (including Tim Berners-Lee!), and we officially became part of the W3C!</p>
<h3>Welcome New Subscribers</h3>
<p>Welcome to the many new subscribers we met at HTML5 DevConf in
San Francisco! We really enjoyed talking to so many passionate
web developers and telling you all about Test the Web Forward
and <a href="http://www.webplatform.org/">WebPlatform.org</a>. Although not surprising, we were happy to
see that the goals of both of these initiatives resonated deeply
with you.</p>
<h3>Upcoming TestTWF Events</h3>
<h4>Test the Web Forward @TPAC, Shenzhen, China: 11/9, 9AM-7PM CST</h4>
<p>We&#39;re less than two weeks away and registration for TestTWF Shenzhen
is now full! We&#39;re proud to have the W3C Beihang Site Manager, Angel
Li as our keynote speaker and very excited to have Tim Berners-Lee
add some parting words to wrap up the event. Additionally, we have
some excellent instructional talks lined up from Zhiaqiang Zhang and
Belem Zhang, both from Intel and both TestTWF alumni and experienced
W3C test writers.</p>
<p>If you&#39;re not able to attend in person, you&#39;re still very much
welcome to participate. Log on to GitHub (<a href="https://github.com/w3c/web-platform-tests">web-platform-tests</a>,
<a href="https://github.com/w3c/csswg-test">css</a>) and jump into #testing on irc.w3.org and find out where you
can start. We&#39;ll happily take pull requests from all over the world.
We&#39;d especially like to see some past attendees from the Beijing,
Shanghai, and Tokyo events!</p>
<p>Event schedule with extra timezones for convenience:
<table class="table table-hover">
<tr>
<th></th><th>Shenzhen</th><th>Tokyo</th><th>London</th><th>San Francisco</th>
</tr>
<tr>
<td>Saturday November 0 8</td><td>9am-7pm</td><td>10am-8pm</td><td>2am-12pm</td><td>(Fri) 5pm-3am</td>
</tr>
</table></p>
<p>During the event, follow <a href="https://twitter.com/testthewebfwd">@testthewebfwd</a> on Twitter or
<a href="http://weibo.com/u/3618259334">@TestTheWebForward</a> on Sina Weibo, #testtwf on both.</p>
<h3>Test the Web Forward is Now Officially Part of the W3C</h3>
<p>Last month, we told you about the new and improved
<a href="http://testthewebforward.org">TestTheWebForward.org</a> website , which was part of transition.
Now, we&#39;re pleased to announce that Test the Web Forward is now
<a href="http://www.w3.org/blog/2013/10/welcoming-testtwf-to-w3c/">officially part of the W3C</a>. This a great development that simply
means that TestTWF now belongs to The Web, to the W3C members, and to
you. While we are actively working to build out this domain to
include more than documentation, the events will continue be driven
by the community. See below for how you can have one of your own.</p>
<h3>Get Involved</h3>
<h4>Contribute to TestTheWebForward.org</h4>
<p>With the relaunch of website, the W3C has provided a completely open
repository on GitHub to host its content. We invite all of you
to add your own, whether it be additional <a href="http://testthewebforward.org/docs/">documentation</a>, a <a href="http://testthewebforward.org/blog/">blog
post</a>, something on the <a href="https://github.com/w3c/testtwf-website/issues?page=1&amp;state=open">TODO list</a>, or just a bug fix -
we&#39;ll take your <a href="https://github.com/w3c/testtwf-website/blob/gh-pages/CONTRIBUTING.md">contribution</a>.</p>
<h4>Host your own Test the Web Forward event!</h4>
<p>As you start your planning for 2014, consider holding an event of
your own - an intimate meetup focused on a topic suited to your
local community or user group, or partner with others to put on a
hackathon to crank out more tests over some beer and pizza.
Start the conversation at [email protected]. We
have kits to get you going and a growing network of TestTWF
experts around the world.</p>
<p>Let&#39;s keep Making the Web a Better Place!</p>
</description>
<pubDate>Thu, 31 Oct 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/10/31/testtwf-monthly-newsletter-october.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/10/31/testtwf-monthly-newsletter-october.html</guid>
</item>
<item>
<title>Welcoming Test the Web Forward to W3C</title>
<description><p>Two years ago a group of Web developers led by Divya Manian and Paul Irish launched a small web project called <a href="http://movethewebforward.org">Move the Web Forward</a>. Its fresh look, cute dinos, and grass-root nature quickly caught the attention of Adobe who reached out to the original creators and obtained the permission to start as spinoff focused on testing. <a href="http://testthewebforward.org">Test the Web Forward</a> was born.</p>
<h2>A Thriving Community &amp; a Recognizable Brand</h2>
<p>Fast forward two years. Test the Web Forward is a recognizable brand among Web developers and thriving community bringing together Web developers and experts from all over the World to learn, share, write tests and improve browser interoperability.</p>
<p>Smart tag lines and cute logo aren&#39;t enough to build brands or communities, though. That takes hard work and dedication. Over the course of these two years, Adobe tirelessly fostered this community, organizing events, bringing in other key members of the industry to help along.</p>
<p>Adobe was so successful at driving this effort, that little after I joined W3C as a fellow from Facebook, I overheard Tim Berners-Lee, inventor of the Web and W3C&#39;s Director, refer to the W3C testing effort I was starting to pull together as &quot;Test the Web Forward.&quot; That was a strong enough incentive to approach Adobe to suggest using Test the Web Forward as the umbrella brand for the entire Open Web Platform testing effort. Adobe was delighted with the proposal and obliged.</p>
<p>Today, I&#39;m delighted to announce that we finalized the transaction and that Adobe officially gave the Test the Web Forward brand to W3C. In a sense that&#39;s a technicality, though. Test the Web Forward is essentially a community effort which W3C is proud to host.</p>
<h2>Scaling-up Events &amp; Revamping testthewebforward.org</h2>
<p>What will this change, you might ask. Well, for Test the Web Forward Events, not much in the short run. Adobe has done a tremendous job teaming up with the industry and the community to organize events so far and will continue doing so in the near future. Longer term, however, the plan is to make Test the Web Forward Events more scalable and self-sustainable. For, at the current rate, it would take over a decade to complete the HTML5 test suite. So, whether you&#39;re interested in hosting a local Test the Web Forward meet-up, sponsor or host one of the larger events, please <a href="mailto:[email protected]">get in touch</a>.</p>
<p>The website has also been recently overhauled. It now includes a <a href="http://testthewebforward.org/blog/">blog</a>, and more importantly, the <a href="http://testthewebforward.org/docs/">canonical documentation</a> for W3C Open Web Platform testing effort. The website&#39;s <a href="https://github.com/w3c/testtwf-website/">full source code</a> is available on GitHub. <a href="https://github.com/w3c/testtwf-website/blob/gh-pages/CONTRIBUTING.md#grant-of-license">Contributing</a> couldn&#39;t be easier.</p>
<p>Finally, I&#39;d like to take this opportunity to thank all the people that have helped make this possible, and in particular Rebecca Hauck, Larry McLister and Israel Noto Garcia of the <a href="http://html.adobe.com/webplatform/">Adobe Web Platform Team</a>. I hope to see some of you at the upcoming <a href="http://testthewebforward.org/events/2013/shenzhen.html">Test The Web Forward Event in Shenzhen</a>.</p>
</description>
<pubDate>Wed, 30 Oct 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/10/30/welcoming-testtwf-to-w3c.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/10/30/welcoming-testtwf-to-w3c.html</guid>
</item>
<item>
<title>Test the Web Forward Shenzhen @ TPAC Nov 9 2013 – Registration Now Open!</title>
<description><p>Registration for Test the Web Forward @ TPAC is now open. We&#39;re excited to
be heading back to China for the <em>third</em> time for a day of learning, hacking,
and Making a Better Web. We warmly welcome all TPAC attendees as well as the
Web development communities in Shenzhen, Guangzhou, Zhuhai, Xiamen, Hong
Kong and surrounding areas. </p>
<ul>
<li>When: Saturday, November 9 2013 9am-7pm</li>
<li>Where: Wuzhou Guest House (TPAC conference venue)
Shenzhen, China</li>
<li>Why: To Make the Web a Better Place!</li>
</ul>
<p>Full details can be found on the
<a href="http://testthewebforward.org/events/2013/shenzhen.html">event page</a>.
We&#39;re still finalizing our lineup of speakers and experts, so check back often
for updates or follow us on Twitter <a href="https://twitterq.com/testthewebfwd">@testthewebfwd</a>
or Weibo <a href="http://s.weibo.com/weibo/testthewebforward">@TestTheWebForward</a>, #testtwf on both.</p>
<p>Delicious food, drinks, and a great time is promised to all who attend. Space
is limited so <a href="https://testtwf-shenzhen-2013.eventbrite.com/">register soon</a>!</p>
<p>Hope to see you there!</p>
</description>
<pubDate>Wed, 09 Oct 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/10/09/shenzhen-event-annoucement.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/10/09/shenzhen-event-annoucement.html</guid>
</item>
<item>
<title>Test the Web Forward - September Newsletter</title>
<description><p>The Fall Equinox is celebrated worldwide through various cultural
traditions, many of which center around harvest and growth. As we
pass through this season, we&#39;re celebrating the same in our Test
the Web Forward community. Both of the events this month are examples
of people outside of the core TestTWF team planting the seeds and
cultivating the growth of the movement in their local areas. Read
more about these events below.</p>
<h3>Welcome New Subscribers</h3>
<p>Welcome to our new subscribers from Sacramento! It was great
meeting you and answering your great questions about testing
browsers.</p>
<h3>Upcoming TestTWF Events</h3>
<p><br/></p>
<h4>HTML5 DevConf, San Francisco, CA: October 22-23</h4>
<p>If you&#39;re planning on being at the HTML5 Developer&#39;s Conference in
October in SF and want to learn more about what we&#39;re doing, stop by
our table and say hi. We&#39;ll be there answering questions about TestTWF
and WebPlatform.org and passing out goodies!</p>
<p><br/></p>
<h4>Test the Web Forward @TPAC, Shenzhen, China: November 9, 9AM-7PM CST</h4>
<p>Early registration for TPAC attendees is now open. If you&#39;re a W3C member
and registered for TPAC, you&#39;ll be receiving an access code through
email. Registration will be open for everyone on October 7. Follow
<a href="https://twitter.com/testthewebfwd">@TestTheWebForward</a> on Twitter or <a href="http://weibo.com/u/3618259334">Weibo</a> to get latest
updates. For more information about the schedule, experts &amp; speakers,
and the program, visit the <a href="http://testthewebforward.org/events/2013/shenzhen.html">event site</a>. Updates will be made there
regularly.</p>
<h3>Past TestTWF Events</h3>
<p><br/></p>
<h4>HTML5J Tokyo: Test the Web Forward Meetup</h4>
<p>Back in June, when we left Tokyo, there was <a href="http://blogs.adobe.com/webplatform/2013/06/26/">excitement about more TestTWF events in Japan in the future</a>. Masataka Yakura took
the lead and on behalf of <a href="http://html5j.org/">HTML5J</a>, he&#39;s happy to report that that
the first TestTWF Meetup in Tokyo on September 14th went well. They had
about 20 attendees including a few returning folks from the first Tokyo
event. He expresses big thanks to them for helping newcomers writing
and submitting tests!</p>
<p>Check out these write-ups from a couple of attendees:</p>
<ul>
<li><a href="http://html5experts.jp/myakura/2704/">HTML5 Experts.jp article</a> - JA</li>
<li><a href="http://d.hatena.ne.jp/hayashih/20130914/p1">hayashih&#39;s recap</a> - JA</li>
</ul>
<p><br/></p>
<h4>HTML5 Sacramento Meetup</h4>
<p>In the spring, we met Chris Minnick, who runs the <a href="http://www.meetup.com/HTML5-in-Sacramento/events/133819602/">Sacramento HTML5</a>
user group in Northern California. He reached out to us to bring TestTWF
to his community we were happy to oblige. On September 17, we gathered at
the super cool <a href="http://hackerlab.org/">HackerLab</a> space and educated people on ways they can
get involved in contributing to the Open Web by writing tests and by
writing documentation on <a href="http://www.webplatform.org/">WebPlatform.org</a>. It was a nice evening with
a very enagaged group who by the end of it were eager to get started
right away.</p>
<h3>New and Improved TestTheWebForward.org!</h3>
<p>We are excited and proud to announce the relaunch of
TestTheWebForward.org this month. This marks one of the key
deliverables of the <a href="http://testthewebforward.org/blog/2013/02/20/testing-the-open-web-platform.html">Open Web Platform Testing initiative</a> kicked
off earlier this year, led by Tobie Langel. Prior to this launch,
the website was just a place for information about events. Now, it
is so much more: It&#39;s W3C&#39;s one stop shop for Open Web Platform
testing. This includes a rich set of centralized <a href="http://testthewebforward.org/docs/">documentation</a> to get
you started, a <a href="http://testthewebforward.org/blog/">blog</a> to keep you informed of what&#39;s happening,
and vastly improved <a href="http://testthewebforward.org/events/">event pages</a> -- past, present, and future.
And this is only the beginning. Stay tuned for developments on what&#39;s
next and of course, how you can become a contributor!</p>
<h3>Get Involved</h3>
<p><br/></p>
<h4>Contribute</h4>
<p>The best thing about the new TestTheWebForward.org is that it belongs
to everyone and your contributions are warmly welcomed. Do you see
Something missing in the documentation? Have an idea for more useful
content? Would you like to write or cross-post a blog entry about your
Experience testing browsers? Please contribute! The site&#39;s content is
hosted in a public GitHub repo, so the contribution process couldn&#39;t
be easier - just send a pull request. See the <a href="https://github.com/w3c/testtwf-website/blob/gh-pages/CONTRIBUTING.md">contribution guidelines</a>
for more info.</p>
<p><br/></p>
<h4>Host your own Test the Web Forward event!</h4>
<p>Follow Masataka&#39;s and Chris&#39; lead and have an event in your area!
Whether you&#39;d like to have a small info session meetup, a one day
hackathon, or a larger event like we&#39;re planning for Shenzhen, let us
know at [email protected]. We have kits to get you going.</p>
<h3>Quotes of the Month</h3>
<p>As we navigate millions of words on Twitter, Github, mailing lists,
and our inboxes, from time to time someone says something that captures
the spirit of the Test the Web Forward movement. Here are some we
came across in September:</p>
<div class="highlight"><pre><code class="language-text" data-lang="text"> &quot;The good news is about one-third were also at the June TestTWF. Yes,
returning Forwardistas! It was really great to have them; they were kind
enough to help us and others writing tests, so people who were new to the
event were able to submit tests. What a beautiful community, isn&#39;t it?&quot;
</code></pre></div>
<p>&nbsp;&nbsp;-- Masataka Yakura, on the turnout at the Tokyo TestTWF Meetup</p>
<div class="highlight"><pre><code class="language-text" data-lang="text"> &quot;Authoring tests is not the end of the story. It&#39;s actually the beginning.&quot;
</code></pre></div>
<p>&nbsp;&nbsp;-- <a href="https://github.com/w3c/web-platform-tests/pull/135#issuecomment-19433353">Yuta Kitamura</a>, Github test review</p>
<div class="highlight"><pre><code class="language-text" data-lang="text">&quot;TestTheWebForward.org - Join the rebellion [tm]&quot;
</code></pre></div>
<p>&nbsp;&nbsp;-- <a href="https://twitter.com/klick_ass/status/373016885476200448">Rodney Rehm</a>, Frontend Conference, Zurich</p>
<p><br/>
Let&#39;s keep Making the Web a Better Place!</p>
<hr>
</description>
<pubDate>Mon, 30 Sep 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/09/30/testtwf-monthly-newsletter-september.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/09/30/testtwf-monthly-newsletter-september.html</guid>
</item>
<item>
<title>Test the Web Forward - August Newsletter</title>
<description><p>With one big event finished and another one already in the works, it&#39;s
been another busy month. We&#39;re excited to give you this update and
let you know of all the new ways YOU can join the movement and help
Make a Better Web.</p>
<h3>Welcome New Subscribers!</h3>
<p>First, a very warm welcome to all of our new subscribers from
Shanghai! We&#39;re happy to have you join our ever-growing Test the Web
Forward community and we&#39;re blown away by the fantastic success
of your event.</p>
<h3>Upcoming TestTWF Events</h3>
<h4>Sacramento HTML5 Meetup: September 17, 7PM PDT</h4>
<p>Due to a last minute cancellation last month, we&#39;ve rescheduled the
Sacto meetup for September 17, extending your opportunity to come meet
some of the TestTWF team and learn more about it. We&#39;ll be co-presenting
with Julee Burdekin of <a href="http://www.webplatform.org/">WebPlatform.org</a>, who&#39;ll be letting you know
how you can also contribute to web platform docs.
RSVP on <a href="http://www.meetup.com/HTML5-in-Sacramento/events/133819602/">Meetup.com</a>.</p>
<h4>Test the Web Forward @ TPAC, Shenzhen, China: November 9, 9AM-7PM CST</h4>
<p>Now that we&#39;ve wrapped up the Shanghai event, we&#39;ve kicked off the
planning for our next event. Because we love China so much, we&#39;re
heading back! This time we&#39;ll be in Shenzhen and for the first time,
Test the Web Forward will be part of of the W3C&#39;s annual <a href="http://www.w3.org/2013/11/TPAC/">TPAC
conference</a>. If you&#39;re a W3C working group member planning to be at
TPAC and you&#39;d like to come and offer your expertise on your favorite
spec, please let us know! Contact Rebecca Hauck at rhauck @adobe.com.
If you&#39;re unable to attend TPAC but would like suggest specs or areas
that need tests, we&#39;d also love your input. You can contact Rebecca
directly or if you&#39;d like to start a group discussion, please use our
new TestTWF event planning mailing list - see more info on this new
list below.</p>
<h3>Past TestTWF Events</h3>
<h4>Test the Web Forward Shanghai Roundup</h4>
<p>What can we say? Shanghai, you ROCK! Over 350 passionate web developers
showed up and joined the movement setting yet another TestTWF
World Record of 1003 tests! Big congrats to Baidu and Adobe China for
a successful event. Some nice write-ups from our friends in China:</p>
<ul>
<li><a href="http://goo.gl/sUr4pP">Fiona Duan&#39;s recap</a> - with lots of pictures! - EN</li>
<li><a href="http://www.w3.org/QA/2013/08/event_report_test_the_web_forw.html">Angel Li&#39;s Event Report</a> - EN</li>
<li><a href="http://www.csdn.net/article/a/2013-08-27/15816406">CSDN.com - &quot;TTWF Extreme Programming...&quot;</a> - ZN</li>
<li><a href="http://developer.51cto.com/art/201308/407576.htm">51CTO.com article</a> - ZN</li>
<li><a href="http://www.infoq.com/cn/news/2013/08/ttwf-shanghai-recap">Infoq.com - &quot;Test the Web Forward Shanghai Event Review&quot;</a> - ZN</li>
<li><a href="http://help.3g.163.com/13/0821/13/96Q9RFSI00964KGB.html">Netease New Media article</a> - ZN</li>
<li><a href="http://www.cww.net.cn/news/html/2013/8/23/2013823174324780.htm">CWW.net article</a> - ZN</li>
</ul>
<h4>Adobe TechLive Webinar</h4>
<p>If you&#39;re still curious about what Test the Web Forward is and wer
unable to join us earlier this month for the Adobe TechLive webinar,
watch and listen to the recording on <a href="http://www.youtube.com/watch?v=x60XkP0T1ms">YouTube</a> to learn the history,
the goals, and the progress of the movement.</p>
<h3>New TestTWF Mailing List</h3>
<p>We&#39;re pulling back the curtain a little on our event planning process
and we&#39;re inviting all of you to participate. We&#39;ve created a new public
mailing list for this purpose: <a href="http://lists.w3.org/Archives/Public/public-testtwf-planning/">[email protected]</a>. If
you have ideas for events (especially to suggest areas or specs that
really need tests) or have questions about running your own, use this list to reach out.</p>
<h3>Get Involved</h3>
<h4>Host your own Test the Web Forward event!</h4>
<p>If you&#39;re a community leader, part of a web-related user group, or
belong to an organization that wants to Make the Web a Better Place,
consider hosting an event of your own or partnering with others in your
area to put one on. If you&#39;d like to have a small meetup-style event or
we can point you in the right direction. A <a href="http://goo.gl/MNiZyI">Meetup Kit</a> is available
and you can contact Susan Parini at parini @adobe.com to get you
started.</p>
<p>For assistance in planning larger events like the one we just had in<br>
Shanghai, we&#39;ll be rolling out a full Event Kit very soon. If you&#39;re
interested in hosting, partnering, sponsoring, or participating in a
future event, let us know at [email protected].</p>
<p>Let&#39;s keep Making the Web a Better Place!</p>
</description>
<pubDate>Thu, 29 Aug 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/08/29/testtwf-monthly-newsletter-august.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/08/29/testtwf-monthly-newsletter-august.html</guid>
</item>
<item>
<title>Test the Web Forward Shanghai!</title>
<description><p>We’re pleased to report that the seventh Test the Web Forward on August 17 &amp; 18 has wrapped up successfully. The Shanghai development community is very passionate about the Web as the event attracted nearly 350 web developers on the first day and 150 on the second day. By the end of the event, 1003 tests and 35 bugs were submitted, setting yet another Test the Web Forward world record!
</p>
<p>The event took place at Parkyard Hotel, funded by <a href="http://yun.baidu.com/">Baidu Cloud Group</a> and kicked off on Saturday afternoon. With a scheduled start time of 2:00pm, people began to arrive at 1:00 and formed a long queue to get registered. We set up a signature wall where people signed their names to make the commitment to making the Web better and of course, took photos. We also prepared lots of gifts for attendees, including Test the Web Forward T-shirts, HTML5 stickers, tags, W3C mugs and Baidu radiation-proof stickers. Developers loved these things.
</p>
<p style="float: left;">
<a href="/assets/blog/shanghai/Registration.jpg"><img class="img-responsive" alt="Registration" src="/assets/blog/shanghai/Registration-small.jpg" /></a></p>
<p><a href="/assets/blog/shanghai/tshirt.jpg"><img class="img-responsive" alt="tshirts" src="/assets/blog/shanghai/tshirt-small.jpg" /></a></p>
<p style="float: left;"><a href="/assets/blog/shanghai/tshirt1.jpg"><img class="img-responsive" alt="tshirt1" src="/assets/blog/shanghai/tshirt1-small.jpg" /></a></p>
<p><a href="/assets/blog/shanghai/gifts.jpg"><img cclass="img-responsive" alt="gifts" src="/assets/blog/shanghai/gifts-small.jpg" /></a></p>
<p style="float: left;"><a href="/assets/blog/shanghai/Wall.jpg"><img class="img-responsive" alt="Wall" src="/assets/blog/shanghai/Wall-small.jpg" /></a></p>
<p><a href="/assets/blog/shanghai/PaulFiona.jpg"><img class="img-responsive" alt="Paul&amp;Fiona" src="/assets/blog/shanghai/PaulFiona-small.jpg" /></a>
</p>
<p>The event started with two special guests: Mr. Chen Shangyi, VP of Baidu and Mr. Hou Ziqiang, Member of Ministry of Industry and Information Technology, Dean of Institue of Acoustics, Chinese Academy of Sciences. They delivered the message on the importance of Web Standards to China government and industry.</p>
<p style="float: left;"><a href="/assets/blog/shanghai/day1.jpg"><img class="img-responsive" alt="day1" src="/assets/blog/shanghai/day1-small.jpg" /></a></p>
<p><a href="/assets/blog/shanghai/day1-1.jpg"><img class="img-responsive" alt="day1-1" src="/assets/blog/shanghai/day1-1-small.jpg" /></a></p>
<p style="float: left;"><a href="/assets/blog/shanghai/ChenShangyi.jpg"><img class="img-responsive" alt="ChenShangyi" src="/assets/blog/shanghai/ChenShangyi-small.jpg" /></a></p>
<p><a href="/assets/blog/shanghai/HouZiqiang.jpg"><img class="img-responsive" alt="HouZiqiang" src="/assets/blog/shanghai/HouZiqiang-small.jpg" /></a></p>
<p>The next speaker was Paul Cotton, HTML5 Work Group Chairman. Paul gave an update on the latest progress of HTML, shared the roadmap and introduced the process of publishing a W3C spec. During the Q&amp;A session, Paul clarified the misunderstanding between W3C and WHATWG. Paul personally believes that the relationship between W3C and WHATWG is a partnership. Although they don&#8217;t have a release process, they have a mutual goal that Make a better Web.</p>
<p style="align: center;"><a href="/assets/blog/shanghai/Paul.jpg"><img class="img-responsive" alt="Paul" src="/assets/blog/shanghai/Paul-small.jpg" /></a></p>
<p>The lightning talks were next, where the experts introduced themselves, gave quick reviews of several specs, and recruited new test writers for their favourite specs. People joined six groups to write tests for HTML Drag and Drop, IndexedDB, File API, CSS Transforms, Grid Layout, Backgrounds and Borders. Jian Zhang from Adobe China wrapped up the day with sessions on How to Create W3C Tests.</p>
<p style="float: left;"><a href="/assets/blog/shanghai/ZhangJian.jpg"><img class="img-responsive" alt="Zhang Jian" src="/assets/blog/shanghai/ZhangJian-small.jpg" /></a></p>
<p><a href="/assets/blog/shanghai/ShenDayang.jpg"><img class="img-responsive" alt="Shen Dayang" src="/assets/blog/shanghai/ShenDayang-small.jpg" /></a></p>
<p style="float: left;"><a href="/assets/blog/shanghai/GuoPengcheng.jpg"><img class="img-responsive" alt="Guo Pengcheng" src="/assets/blog/shanghai/GuoPengcheng-small.jpg" /></a></p>
<p><a href="/assets/blog/shanghai/SunTie.jpg"><img class="img-responsive" alt="Sun Tie" src="/assets/blog/shanghai/SunTie-small.jpg" /></a></p>
<p>Each group had 5 reviewers.</p>
<p style="float: left;"><a href="/assets/blog/shanghai/Groups.jpg"><img class="img-responsive" alt="Groups" src="/assets/blog/shanghai/Groups-small.jpg" /></a></p>
<p><a href="/assets/blog/shanghai/Groups-1.jpg"><img class="img-responsive" alt="Groups-1" src="/assets/blog/shanghai/Groups-1-small.jpg" /></a></p>
<p>The evening wrapped with a great buffet. Developers enjoyed the yummy food and nice environment. Everyone was ready for hacking the next day!</p>
<p style="align: center;"><a href="/assets/blog/shanghai/dinner.jpg"><img class="img-responsive" alt="dinner" src="/assets/blog/shanghai/dinner-small.jpg" /></a></p>
<p>On Sunday, the test hacking began. Zhiqiang Zhang from Intel China and gave an informative talk on How to Write Good Tests and How to File Good Bugs.</p>
<p style="align: center;"><a href="/assets/blog/shanghai/Zhiqiang.jpg"><img class="img-responsive" alt="Zhiqiang" src="/assets/blog/shanghai/Zhiqiang-small.jpg" /></a></p>
<p>As is customary, we used a Chinese tanggu drum to signal when tests were completed and to get people motivated to submit more tests. The drumbeats began pretty quickly when a young developer had the first test of the event approved.</p>
<p style="align: center;"><a href="/assets/blog/shanghai/1tests.jpg"><img class="img-responsive" alt="first test" src="/assets/blog/shanghai/1tests-small.jpg" /></a></p>
<p>During the whole event, we saw everyone concentrated and fully involved. Experts were extremely busy assisting developers and reviewing their tests.</p>
<p style="float: left;"><a href="/assets/blog/shanghai/D1.jpg"><img class="img-responsive" alt="" src="/assets/blog/shanghai/D1-small.jpg"/></a></p>
<p><a href="/assets/blog/shanghai/D2.jpg"><img class="img-responsive" alt="D2" src="/assets/blog/shanghai/D2-small.jpg" /></a></p>
<p>Although contributing to make the web better was rewarding in itself, the awards and raffle prizes made it even more fun. Prizes included US$1000 cash for the outstanding individual contributor, an iPad Mini, and several Kindles.</p>
<p style="align: center;"><a href="/assets/blog/shanghai/prize-4.png"><img class="img-responsive" alt="prize-4" src="/assets/blog/shanghai/prize-4.png" /></a></p>
<p style="align: center;"><a href="/assets/blog/shanghai/prize-5.png"><img class="img-responsive" alt="prize-5" src="/assets/blog/shanghai/prize-5.png"/></a></p>
<p>Outstanding Service Award: Mr. Min Zhang won the first place with <a href="https://github.com/w3c/web-platform-tests/pull/280">319 Drag &amp; Drop tests</a>!</p>
<p style="align: center;"><a href="/assets/blog/shanghai/Prize-1.jpg"><img class="img-responsive" alt="" src="/assets/blog/shanghai/Prize-1-small.jpg" /></a></p>
<p>Best Bug-hunter : Tina filled 8 bugs for Webkit, Safari and Mozilla!</p>
<p style="align: center;"><a href="/assets/blog/shanghai/Prize-2.jpg"><img class="img-responsive" alt="" src="/assets/blog/shanghai/Prize-2-small.jpg" /></a></p>
<p>All in all, the event resulted in the creation of 1003 tests! And with those tests, 36 new bugs were found and submitted across multiple browsers.</p>
<p><a href="/assets/blog/shanghai/Final.png"><img class="img-responsive" alt="Final" src="/assets/blog/shanghai/Final.png"/></a></p>
<p><strong>Special Thanks</strong><br />
We have to say Thank You Baidu for successfully hosting the event at Shanghai and to Intel for super technical support! We were excited to see that people made new friends, improved their knowledge of web standards testing, and we continued moving the Web forward a little bit more.</p>
</description>
<pubDate>Mon, 26 Aug 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/08/26/shanghai-event-recap.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/08/26/shanghai-event-recap.html</guid>
</item>
<item>
<title>Upcoming - Test the Web Forward Shanghai</title>
<description><p>Test the Web Forward is returning to China this weekend, stopping in Shanghai on August 17-18.</p>
<p>Adobe has partnered with Baidu in planning this event and they&#39;ve lined up dozens of qualified experts and speakers to educate and support the attendees. The event will kick off with a Welcome and Introduction from Alex Zheng, VP at Baidu, followed by presentations from the W3C HTML Working Group Co-chair, Paul Cotton and Xu Hungbo of Innovation Valley Partners. After the presentations, web developers and experts will work together for two days writing and reviewing W3C tests, and moving the web forward just a little bit more.</p>
<p>We&#39;re very happy to welcome the Shanghai web development community into the Test the Web Forward movement! More details about the event can be found <a href="http://testthewebforward.org/events/shanghai-2013.html">here</a>.</p>
</description>
<pubDate>Tue, 13 Aug 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/08/13/shanghai-event-announcement.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/08/13/shanghai-event-announcement.html</guid>
</item>
<item>
<title>Test the Web Forward Monthly Newslettter</title>
<description><p>We&#39;re pleased to announce the beginning of a Test the Web Forward newsletter series where we&#39;ll give updates on upcoming events, recaps of past events, W3C testing news, and ways to get involved. To receive this newsletter, subscribe to the mailing list: <a href="mailto:[email protected]?subject=subscribe">[email protected]</a>. <i>(click the link to subscribe)</i></p>
<p>In addition to receiving the newsletter, subscribing to this list is a great way to stay engaged with the W3C testing community and participate in discussions about writing tests for better browser interoperability.</p>
</description>
<pubDate>Thu, 01 Aug 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/08/01/testtwf-monthly-newsletter.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/08/01/testtwf-monthly-newsletter.html</guid>
</item>
<item>
<title>Test the Web Forward - July Newsletter</title>
<description><p>It&#39;s been a busy season for Test the Web Forward and we&#39;re excited to
let you know what&#39;s coming up, how our last event went, and how YOU can
get more involved!</p>
<h3>Upcoming TestTWF Events</h3>
<h4>Test the Web Forward Shanghai (hackathon): August 17-18</h4>
<p>TestTWF is headed back to China and making a stop in Shanghai for two days
of W3C test education and hacking - registration is now open!
Visit the event <a href="http://testthewebforward.org/events/shanghai-2013.html">site</a> to register and stay tuned as more speakers and
experts will be announced there in the coming weeks.</p>
<h4>Sacramento HTML5 Meetup: August 6, 7PM PDT</h4>
<p>If you&#39;re in Northern California, come meet some of TestTWF team and
learn more about it! We&#39;ll be co-presenting with Julee Burdekin of
WebPlatform.org, who&#39;ll be letting you know how you can also contribute
to web platform docs. See more info on <a href="http://www.meetup.com/HTML5-in-Sacramento/events/131582702/">Meetup.com</a></p>
<h4>Adobe TechLive (webinar): Aug 8, 10AM PDT, 1PM EDT</h4>
<p>Are you still curious about what Test the Web Forward is? Join us online
and we&#39;ll tell you all about it! Learn the history, the goals, and the
progress of the movement, followed by a short interview and Q &amp; A session.
Details found at <a href="http://goo.gl/MedMvq">Adobe TechLive</a></p>
<h3>Past TestTWF Events - Tokyo Roundup</h3>
<p>Test the Web Forward Tokyo was a great success, turning out over 700
new tests. Way to go Tokyo!! If you missed it or if you want to see what
dinosaur sushi looks like (yes, really), check out these great write-ups:</p>
<ul>
<li><a href="http://the-pastry-box-project.net/oli-studholme/2013-june-26/">Testing the web - Oli Studholme</a> (EN) </li>
<li><a href="http://www.atmarkit.co.jp/ait/articles/1306/25/news008.html">Test the Web Forward Report - @IT</a> (JP) </li>
<li><a href="http://plus.adobe-adc.jp/post-3208/">TestTWF is finally landed in Tokyo - Adobe Developer Connection</a> (JP) </li>
<li><a href="http://gihyo.jp/news/report/2013/06/1701">Test the Web Forward Tokyo 2013 report - Gihyo.jp News</a> (JP) </li>
<li><a href="http://fumit.blogspot.jp/2013/06/test-web-forward-testtwf.html">Test the Web Forward - Fumi Yamazaki</a> (JP)</li>
<li><a href="http://blogs.adobe.com/webplatform/2013/06/26/test-the-web-forward-tokyo">Test the Web Forward Tokyo! - Adobe Web Platform Blog</a> (EN)</li>
</ul>
<p>Video recordings of the tech talks and some other fun footage:</p>
<ul>
<li><a href="http://goo.gl/fQUsDg">Tech Talks, Day 1 (Jun 7)</a></li>
<li><a href="http://goo.gl/6bpr8J">Tech Talks, Day 2 (Jun 8)</a></li>
<li><a href="http://goo.gl/0g4NFn">TestTWF Tokyo Video Montage</a> </li>
</ul>
<p><small><i> Special thanks to Akihiro Kamijo at Adobe Japan for producing the
awesome video montage!</i></small></p>
<p>And, the <a href="https://plus.google.com/events/cbnnd183320n38e6nch0h0gm3gs">Google+ event page</a></p>
<h3>Get Involved</h3>
<h4>Host your own Test the Web Forward event!</h4>
<p>If you&#39;re a community leader, part of a web-related user, or belong to an
organization that wants to make the Web a Better place, consider hosting an
event of your own or partnering with others in your area to put one on. It
may be a small meetup-style event or a full hackathon like the one we just
had in Tokyo. Either way, we can point you in the right direction. We&#39;re
pleased to announce that for smaller events, a new <a href="http://adobe-webplatform.github.io/testtwf-event-kit/meetup-kit.html">Meetup Kit</a> is
available. </p>
<p>For assistance in planning larger events, we&#39;ll soon be rolling out a full
Event Kit - stay tuned! If you&#39;re interested in hosting, partnering, or
Sponsoring a future event, let us know at [email protected].</p>
<p>Let&#39;s keep making the Web a Better Place!</p>
</description>
<pubDate>Mon, 29 Jul 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/07/29/testtwf-monthly-newsletter-july.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/07/29/testtwf-monthly-newsletter-july.html</guid>
</item>
<item>
<title>Test the Web Forward Shanghai, August 17-18, 2013 - Registration now open!</title>
<description><p>
Test the Web Forward is returning to China next month! This time, the movement
goes to Shanghai on August 17-18. We're excited to have some great speakers
and featured experts lined up to educate and support the community. The keynote
speaker is Paul Cotton, co-chair of the HTML5 working group and special guests
include Alex Zheng, Vice President at Baidu and Hongbo Xu, co-founder of InnoValley.
Experts from Baidu, Adobe, Intel, Alibaba, and Mozilla will work with developers
to write and submit HTML5 and CSS spec tests.
</p>
<p>
For more information, please visit the
<a href="http://testthewebforward.org/events/shanghai-2013.html">TestTWF Shanghai event page</a>.
</p>
</description>
<pubDate>Mon, 22 Jul 2013 00:00:00 +0000</pubDate>
<link>http://testthewebforward.com/blog/2013/07/22/shanghai-event.html</link>
<guid isPermaLink="true">http://testthewebforward.com/blog/2013/07/22/shanghai-event.html</guid>
</item>
<item>
<title>Test the Web Forward Tokyo!</title>
<description><p>
On the first anniversary of Test the Web Forward, we were thrilled that our <a href="http://testthewebforward.org/events/tokyo-2013.html" target="top">Tokyo event</a> on June 7 &amp; 8 was a tremendous success. This is further proof that the movement has caught on globally. Early on, we were amazed by the fact that registration filled up in just 12 hours and hoped that would be a good indicator of a fantastic event. It certainly was!
</p>
<p>
Our event was one of over 30 others held that weekend for <a href="http://www.htmlday.jp/" target="top">&lt;htmlday&gt;</a> in Japan and was also aligned nicely with a a lot of other things: the SVG and CSS Working Groups F2F meetings, the W3C AC Rep meetings, and a W3C Developer Meetup immediately following TestTWF in the same building. Many web developers and enthusiasts came together to learn, teach, demo, network, and have their voices on the Web heard. For two days, we all gathered in Google Japan's spectacular office on the 27th floor of the Mori Tower in Roppongi Hills.
</p>
<h4 style="text-align: left;"><b>Friday, June 7 – Day 1</b></h4>
<p class=pull-left>
<img class="img-responsive" alt="Shigeo Okamoto, Japanese Ministry of Internal Affairs and Communications" src="/assets/blog/tokyo/ttwf-tokyo1-1024x753.jpg" />
</p>
<p>
Things kicked off on Friday night with a special guest and keynote speaker, Shigeo Okamoto from the Japanese Ministry of Internal Affairs and Communications. Mr. Okamoto spoke to a packed room of 100 people, delivering a message on the importance of Web Standards to the Japanese government.
</p>
<p style="clear: both;">
Following Mr. Okamoto was Kazuaki Takemura, a very active test writer for CSS Text and Writing Modes to deliver the traditional TestTWF talk on How to Read W3C Specifications. Then came <a href="https://twitter.com/boblet" target="_blank">Oli Studholme</a> to talk about a new topic that arose from the Q &amp; A session at <a href="http://blogs.adobe.com/webplatform/2013/04/25/test-the-web-forward-seattle-recap/" target="_blank">TestTWF Seattle</a>. Someone there asked a simple question, "After I write and submit tests, then what happens?" Oli stepped up and gave an excellent talk on <a href="http://oli.github.io/test-twf" target="top">Specifications and Test Lifecycles</a>.
</p>
<div class="row">
<div class="col-lg-6">
<a href="/assets/blog/tokyo/ttwf-tokyo4.jpg" class="thumbnail">
<img src="/assets/blog/tokyo/ttwf-tokyo4-1024x678.jpg" alt="Kazuaki Takemura">
</a>
</div>
<div class="col-lg-6">
<a href="/assets/blog/tokyo/ttwf-tokyo5.jpg" class="thumbnail">
<img src="/assets/blog/tokyo/ttwf-tokyo5-1024x678.jpg" alt="Oli Studholme">
</a>
</div>
</div>
<p style="margin-top: 20px;">The lightning talks were next, where experts made 3 minute pitches to get people to write tests for their favorite specs:
</p>
<div class="row">
<div class="col-lg-3">
<a href="/assets/blog/tokyo/IMG_0318.jpg" class="thumbnail">
<img src="/assets/blog/tokyo/IMG_0318-300x216.jpg" alt="Tab Atkins, Jr.">
</a>
<p class="caption"><a href="https://twitter.com/tabatkins">Tab Atkins, Jr.</a>, Google: CSS Flexbox</p>
</div>
<div class="col-lg-3">
<a href="/assets/blog/tokyo/IMG_0351.jpg" class="thumbnail">
<img src="/assets/blog/tokyo/IMG_0351-300x216.jpg" alt="Leif Storset">
</a>
<p class="caption"><a href="https://twitter.com/lastorset">Leif Storset</a>, Opera: CSS Fonts</p>
</div>
<div class="col-lg-3">
<a href="/assets/blog/tokyo/IMG_0382.jpg" class="thumbnail">
<img src="/assets/blog/tokyo/IMG_0382-300x216.jpg" alt="Mike [tm] Smith">
</a>
<p class="caption"><a href="https://twitter.com/sideshowbarker">Mike [tm] Smith</a>, W3C: HTML5 &amp; APIs</p>
</div>
<div class="col-lg-3">
<a href="/assets/blog/tokyo/IMG_0355.jpg" class="thumbnail">
<img src="/assets/blog/tokyo/IMG_0355-300x216.jpg" alt="Glenn Adams">
</a>
<p class="caption"><a href="https://twitter.com/gasubic">Glenn Adams</a>, Cox: CSSOM</p>
</div>
</div>
<div class="row">
<div class="col-lg-3">