Newer
Older
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
2010-05-18 Jaime Yap <jaimeyap@google.com>
Reviewed by Pavel Feldman.
Test expectations changed due to new stackTrace field on timeline
records.
https://bugs.webkit.org/show_bug.cgi?id=37502
* inspector/timeline-test.js:
* platform/chromium-win/inspector/timeline-event-dispatch-expected.txt:
* platform/chromium-win/inspector/timeline-mark-timeline-expected.txt:
* platform/chromium-win/inspector/timeline-network-resource-expected.txt:
* platform/chromium-win/inspector/timeline-paint-expected.txt:
* platform/chromium-win/inspector/timeline-parse-html-expected.txt:
2010-05-24 Eric Seidel <eric@webkit.org>
Reviewed by Adam Barth.
Add a temporary script for testing the html5 parser until it can run more layout tests
https://bugs.webkit.org/show_bug.cgi?id=39611
* html5lib/webkit-runner-expected-html5.txt: Added.
2010-05-24 Shinichiro Hamaji <hamaji@chromium.org>
Unreviewed broken Qt test fix.
0x5C of EUC-JP is not Yen Sign but U+005C
https://bugs.webkit.org/show_bug.cgi?id=24906
* platform/qt/fast/text/backslash-to-yen-sign-dynamic-expected.txt:
* platform/qt/fast/text/backslash-to-yen-sign-expected.txt:
2010-05-24 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r60068.
http://trac.webkit.org/changeset/60068
https://bugs.webkit.org/show_bug.cgi?id=39600
"Causes fast/repaint/search-field-cancel to fail." (Requested
by jparent on #webkit).
* fast/forms/script-tests/textarea-percentage-dimensions.js: Removed.
* fast/forms/textarea-percentage-dimensions-expected.txt: Removed.
* fast/forms/textarea-percentage-dimensions.html: Removed.
2010-05-24 Chang Shu <chang.shu@nokia.com>
Unreviewed.
Move Philip's canvas tests from fast/canvas to canvas, as suggested
by James Robinson.
https://bugs.webkit.org/show_bug.cgi?id=20553
* canvas: Added.
* canvas/philip: Copied from LayoutTests/fast/canvas/philip.
* fast/canvas/philip: Removed.
* fast/canvas/philip/fonts: Removed.
* fast/canvas/philip/fonts/CanvasTest.sfd: Removed.
* fast/canvas/philip/fonts/CanvasTest.ttf: Removed.
* fast/canvas/philip/images: Removed.
* fast/canvas/philip/images/anim-gr.gif: Removed.
* fast/canvas/philip/images/anim-gr.png: Removed.
* fast/canvas/philip/images/anim-poster-gr.png: Removed.
* fast/canvas/philip/images/background.png: Removed.
* fast/canvas/philip/images/broken.png: Removed.
* fast/canvas/philip/images/ggrr-256x256.png: Removed.
* fast/canvas/philip/images/green-16x16.png: Removed.
* fast/canvas/philip/images/green-1x1.png: Removed.
* fast/canvas/philip/images/green-256x256.png: Removed.
* fast/canvas/philip/images/green-2x2.png: Removed.
* fast/canvas/philip/images/green.png: Removed.
* fast/canvas/philip/images/grgr-256x256.png: Removed.
* fast/canvas/philip/images/red-16x16.png: Removed.
* fast/canvas/philip/images/red.png: Removed.
* fast/canvas/philip/images/redtransparent.png: Removed.
* fast/canvas/philip/images/rgrg-256x256.png: Removed.
* fast/canvas/philip/images/rrgg-256x256.png: Removed.
* fast/canvas/philip/images/transparent.png: Removed.
* fast/canvas/philip/images/transparent50.png: Removed.
* fast/canvas/philip/images/yellow.png: Removed.
* fast/canvas/philip/images/yellow75.png: Removed.
* fast/canvas/philip/tests: Removed.
* fast/canvas/philip/tests.css: Removed.
* fast/canvas/philip/tests.js: Removed.
* fast/canvas/philip/tests/.reportgen.html.swp: Removed.
* fast/canvas/philip/tests/.reportgen.js.swp: Removed.
* fast/canvas/philip/tests/2d.canvas.readonly.html: Removed.
* fast/canvas/philip/tests/2d.canvas.reference.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.basic.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.clip.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.globalalpha.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.globalcomposite.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.negative.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.path.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.shadow.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.transform.html: Removed.
* fast/canvas/philip/tests/2d.clearRect.zero.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.copy.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.copy.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.destination-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.destination-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.destination-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.destination-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.destination-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.destination-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.destination-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.destination-over.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.lighter.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.lighter.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.source-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.source-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.source-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.source-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.source-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.source-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.source-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.source-over.png: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.xor.html: Removed.
* fast/canvas/philip/tests/2d.composite.canvas.xor.png: Removed.
* fast/canvas/philip/tests/2d.composite.clip.copy.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.destination-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.destination-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.destination-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.destination-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.lighter.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.source-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.source-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.source-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.source-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.clip.xor.html: Removed.
* fast/canvas/philip/tests/2d.composite.globalAlpha.canvas.html: Removed.
* fast/canvas/philip/tests/2d.composite.globalAlpha.canvaspattern.html: Removed.
* fast/canvas/philip/tests/2d.composite.globalAlpha.default.html: Removed.
* fast/canvas/philip/tests/2d.composite.globalAlpha.fill.html: Removed.
* fast/canvas/philip/tests/2d.composite.globalAlpha.image.html: Removed.
* fast/canvas/philip/tests/2d.composite.globalAlpha.imagepattern.html: Removed.
* fast/canvas/philip/tests/2d.composite.globalAlpha.invalid.html: Removed.
* fast/canvas/philip/tests/2d.composite.globalAlpha.range.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.copy.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.copy.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.destination-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.destination-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.destination-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.destination-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.destination-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.destination-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.destination-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.destination-over.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.lighter.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.lighter.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.source-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.source-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.source-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.source-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.source-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.source-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.source-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.source-over.png: Removed.
* fast/canvas/philip/tests/2d.composite.image.xor.html: Removed.
* fast/canvas/philip/tests/2d.composite.image.xor.png: Removed.
* fast/canvas/philip/tests/2d.composite.operation.casesensitive.html: Removed.
* fast/canvas/philip/tests/2d.composite.operation.clear.html: Removed.
* fast/canvas/philip/tests/2d.composite.operation.darker.html: Removed.
* fast/canvas/philip/tests/2d.composite.operation.default.html: Removed.
* fast/canvas/philip/tests/2d.composite.operation.get.html: Removed.
* fast/canvas/philip/tests/2d.composite.operation.highlight.html: Removed.
* fast/canvas/philip/tests/2d.composite.operation.nullsuffix.html: Removed.
* fast/canvas/philip/tests/2d.composite.operation.over.html: Removed.
* fast/canvas/philip/tests/2d.composite.operation.unrecognised.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.copy.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.copy.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.destination-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.destination-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.destination-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.destination-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.destination-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.destination-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.destination-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.destination-over.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.lighter.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.lighter.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.source-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.source-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.source-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.source-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.source-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.source-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.source-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.source-over.png: Removed.
* fast/canvas/philip/tests/2d.composite.solid.xor.html: Removed.
* fast/canvas/philip/tests/2d.composite.solid.xor.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.copy.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.copy.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.destination-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.destination-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.destination-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.destination-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.destination-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.destination-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.destination-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.destination-over.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.lighter.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.lighter.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.source-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.source-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.source-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.source-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.source-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.source-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.source-over.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.source-over.png: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.xor.html: Removed.
* fast/canvas/philip/tests/2d.composite.transparent.xor.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.copy.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.copy.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.source-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.source-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.source-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.fill.source-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.copy.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.copy.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.destination-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.destination-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.destination-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.destination-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.source-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.source-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.source-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.image.source-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.copy.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.copy.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-out.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.copy.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.copy.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-in.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-in.png: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-out.html: Removed.
* fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-out.png: Removed.
* fast/canvas/philip/tests/2d.coordinatespace.html: Removed.
* fast/canvas/philip/tests/2d.coordinatespace.png: Removed.
* fast/canvas/philip/tests/2d.drawImage.3arg.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.5arg.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.9arg.basic.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.9arg.destpos.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.9arg.destsize.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.9arg.sourcepos.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.9arg.sourcesize.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.alpha.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.animated.apng.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.animated.gif.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.animated.poster.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.broken.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.canvas.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.clip.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.composite.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.floatsource.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.incomplete.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.negativedest.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.negativedir.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.negativesource.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.nowrap.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.null.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.outsidesource.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.path.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.self.1.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.self.2.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.transform.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.wrongtype.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.zerocanvas.html: Removed.
* fast/canvas/philip/tests/2d.drawImage.zerosource.html: Removed.
* fast/canvas/philip/tests/2d.fillRect.basic.html: Removed.
* fast/canvas/philip/tests/2d.fillRect.clip.html: Removed.
* fast/canvas/philip/tests/2d.fillRect.negative.html: Removed.
* fast/canvas/philip/tests/2d.fillRect.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.fillRect.path.html: Removed.
* fast/canvas/philip/tests/2d.fillRect.shadow.html: Removed.
* fast/canvas/philip/tests/2d.fillRect.transform.html: Removed.
* fast/canvas/philip/tests/2d.fillRect.zero.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.default.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.get.semitransparent.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.get.solid.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.get.transparent.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.invalidstring.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.invalidtype.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.current.basic.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.current.changed.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.current.removed.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.current.removed.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hex3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hex3.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hex6.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hex6.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-2.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-3.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-4.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-4.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-5.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-5.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-2.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-3.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-4.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-4.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-2.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-2.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-3.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-4.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-4.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-5.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-5.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-6.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-6.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.html4.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.html4.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex5.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex6.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex7.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex8.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-4.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-5.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsla-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsla-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.name-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.name-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.name-3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-4.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-5.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-6.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-7.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-4.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-5.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-2.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-3.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-3.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-4.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-4.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-5.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-5.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-num.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-num.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-percent.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgb-percent.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-2.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-2.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-percent.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-percent.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-2.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.svg-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.svg-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.svg-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.svg-2.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.system.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.transparent-1.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.transparent-1.png: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.transparent-2.html: Removed.
* fast/canvas/philip/tests/2d.fillStyle.parse.transparent-2.png: Removed.
* fast/canvas/philip/tests/2d.getcontext.exists.html: Removed.
* fast/canvas/philip/tests/2d.getcontext.shared.html: Removed.
* fast/canvas/philip/tests/2d.getcontext.unique.html: Removed.
* fast/canvas/philip/tests/2d.gradient.empty.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.alpha.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.alpha.png: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.colour.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.colour.png: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.colouralpha.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.colouralpha.png: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.multiple.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.multiple.png: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.outside.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.overlap.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.overlap.png: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.overlap2.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.solid.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.vertical.html: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.vertical.png: Removed.
* fast/canvas/philip/tests/2d.gradient.interpolate.zerosize.html: Removed.
* fast/canvas/philip/tests/2d.gradient.linear.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.gradient.linear.transform.1.html: Removed.
* fast/canvas/philip/tests/2d.gradient.linear.transform.2.html: Removed.
* fast/canvas/philip/tests/2d.gradient.linear.transform.3.html: Removed.
* fast/canvas/philip/tests/2d.gradient.object.compare.html: Removed.
* fast/canvas/philip/tests/2d.gradient.object.crosscanvas.html: Removed.
* fast/canvas/philip/tests/2d.gradient.object.invalidcolour.html: Removed.
* fast/canvas/philip/tests/2d.gradient.object.invalidoffset.html: Removed.
* fast/canvas/philip/tests/2d.gradient.object.return.html: Removed.
* fast/canvas/philip/tests/2d.gradient.object.update.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.cone.behind.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.cone.beside.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.cone.bottom.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.cone.cylinder.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.cone.front.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.cone.shape1.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.cone.shape2.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.cone.top.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.equal.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.inside1.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.inside2.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.inside3.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.negative.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.outside1.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.outside2.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.outside3.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.touch1.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.touch2.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.touch3.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.transform.1.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.transform.2.html: Removed.
* fast/canvas/philip/tests/2d.gradient.radial.transform.3.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create1.basic.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create1.initial.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create1.type.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create1.zero.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create2.basic.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create2.initial.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create2.large.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create2.negative.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create2.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create2.round.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create2.tiny.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create2.type.html: Removed.
* fast/canvas/philip/tests/2d.imageData.create2.zero.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.basic.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.clamp.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.length.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.nonpremul.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.order.alpha.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.order.cols.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.order.rgb.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.order.rows.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.range.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.source.negative.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.source.outside.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.source.size.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.tiny.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.type.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.unaffected.html: Removed.
* fast/canvas/philip/tests/2d.imageData.get.zero.html: Removed.
* fast/canvas/philip/tests/2d.imageData.object.ctor.html: Removed.
* fast/canvas/philip/tests/2d.imageData.object.nan.html: Removed.
* fast/canvas/philip/tests/2d.imageData.object.properties.html: Removed.
* fast/canvas/philip/tests/2d.imageData.object.readonly.html: Removed.
* fast/canvas/philip/tests/2d.imageData.object.round.html: Removed.
* fast/canvas/philip/tests/2d.imageData.object.set.html: Removed.
* fast/canvas/philip/tests/2d.imageData.object.string.html: Removed.
* fast/canvas/philip/tests/2d.imageData.object.undefined.html: Removed.
* fast/canvas/philip/tests/2d.imageData.object.wrap.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.alpha.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.alpha.png: Removed.
* fast/canvas/philip/tests/2d.imageData.put.basic.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.clip.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.created.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.cross.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.dirty.negative.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.dirty.outside.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.dirty.rect1.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.dirty.rect2.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.dirty.zero.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.modified.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.null.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.path.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.unaffected.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.unchanged.html: Removed.
* fast/canvas/philip/tests/2d.imageData.put.wrongtype.html: Removed.
* fast/canvas/philip/tests/2d.line.cap.butt.html: Removed.
* fast/canvas/philip/tests/2d.line.cap.closed.html: Removed.
* fast/canvas/philip/tests/2d.line.cap.invalid.html: Removed.
* fast/canvas/philip/tests/2d.line.cap.open.html: Removed.
* fast/canvas/philip/tests/2d.line.cap.round.html: Removed.
* fast/canvas/philip/tests/2d.line.cap.square.html: Removed.
* fast/canvas/philip/tests/2d.line.cap.valid.html: Removed.
* fast/canvas/philip/tests/2d.line.cross.html: Removed.
* fast/canvas/philip/tests/2d.line.defaults.html: Removed.
* fast/canvas/philip/tests/2d.line.join.bevel.html: Removed.
* fast/canvas/philip/tests/2d.line.join.closed.html: Removed.
* fast/canvas/philip/tests/2d.line.join.invalid.html: Removed.
* fast/canvas/philip/tests/2d.line.join.miter.html: Removed.
* fast/canvas/philip/tests/2d.line.join.open.html: Removed.
* fast/canvas/philip/tests/2d.line.join.parallel.html: Removed.
* fast/canvas/philip/tests/2d.line.join.round.html: Removed.
* fast/canvas/philip/tests/2d.line.join.valid.html: Removed.
* fast/canvas/philip/tests/2d.line.miter.acute.html: Removed.
* fast/canvas/philip/tests/2d.line.miter.exceeded.html: Removed.
* fast/canvas/philip/tests/2d.line.miter.invalid.html: Removed.
* fast/canvas/philip/tests/2d.line.miter.lineedge.html: Removed.
* fast/canvas/philip/tests/2d.line.miter.obtuse.html: Removed.
* fast/canvas/philip/tests/2d.line.miter.rightangle.html: Removed.
* fast/canvas/philip/tests/2d.line.miter.valid.html: Removed.
* fast/canvas/philip/tests/2d.line.miter.within.html: Removed.
* fast/canvas/philip/tests/2d.line.union.html: Removed.
* fast/canvas/philip/tests/2d.line.width.basic.html: Removed.
* fast/canvas/philip/tests/2d.line.width.invalid.html: Removed.
* fast/canvas/philip/tests/2d.line.width.scaledefault.html: Removed.
* fast/canvas/philip/tests/2d.line.width.transformed.html: Removed.
* fast/canvas/philip/tests/2d.line.width.valid.html: Removed.
* fast/canvas/philip/tests/2d.missingargs.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.angle.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.angle.2.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.angle.3.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.angle.4.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.angle.5.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.angle.6.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.empty.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.end.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.negative.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.nonempty.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.scale.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.scale.2.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.selfintersect.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.selfintersect.2.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.shape.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.shape.2.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.shape.3.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.shape.4.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.shape.5.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.twopie.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.twopie.2.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.twopie.3.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.twopie.4.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.zero.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.zero.2.html: Removed.
* fast/canvas/philip/tests/2d.path.arc.zeroradius.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.coincide.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.coincide.2.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.collinear.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.collinear.2.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.collinear.3.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.ensuresubpath.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.ensuresubpath.2.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.negative.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.scale.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.shape.curve1.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.shape.curve2.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.shape.end.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.shape.start.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.transformation.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.zero.1.html: Removed.
* fast/canvas/philip/tests/2d.path.arcTo.zero.2.html: Removed.
* fast/canvas/philip/tests/2d.path.beginPath.html: Removed.
* fast/canvas/philip/tests/2d.path.bezierCurveTo.basic.html: Removed.
* fast/canvas/philip/tests/2d.path.bezierCurveTo.ensuresubpath.1.html: Removed.
* fast/canvas/philip/tests/2d.path.bezierCurveTo.ensuresubpath.2.html: Removed.
* fast/canvas/philip/tests/2d.path.bezierCurveTo.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.path.bezierCurveTo.scaled.html: Removed.
* fast/canvas/philip/tests/2d.path.bezierCurveTo.shape.html: Removed.
* fast/canvas/philip/tests/2d.path.clip.basic.1.html: Removed.
* fast/canvas/philip/tests/2d.path.clip.basic.2.html: Removed.
* fast/canvas/philip/tests/2d.path.clip.empty.html: Removed.
* fast/canvas/philip/tests/2d.path.clip.intersect.html: Removed.
* fast/canvas/philip/tests/2d.path.clip.unaffected.html: Removed.
* fast/canvas/philip/tests/2d.path.clip.winding.1.html: Removed.
* fast/canvas/philip/tests/2d.path.clip.winding.2.html: Removed.
* fast/canvas/philip/tests/2d.path.closePath.empty.html: Removed.
* fast/canvas/philip/tests/2d.path.closePath.newline.html: Removed.
* fast/canvas/philip/tests/2d.path.closePath.nextpoint.html: Removed.
* fast/canvas/philip/tests/2d.path.fill.closed.basic.html: Removed.
* fast/canvas/philip/tests/2d.path.fill.closed.unaffected.html: Removed.
* fast/canvas/philip/tests/2d.path.fill.overlap.html: Removed.
* fast/canvas/philip/tests/2d.path.fill.overlap.png: Removed.
* fast/canvas/philip/tests/2d.path.fill.winding.add.html: Removed.
* fast/canvas/philip/tests/2d.path.fill.winding.subtract.1.html: Removed.
* fast/canvas/philip/tests/2d.path.fill.winding.subtract.2.html: Removed.
* fast/canvas/philip/tests/2d.path.fill.winding.subtract.3.html: Removed.
* fast/canvas/philip/tests/2d.path.initial.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.arc.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.basic.1.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.basic.2.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.bezier.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.bigarc.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.edge.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.empty.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.outside.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.subpath.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.transform.1.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.transform.2.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.transform.3.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.unclosed.html: Removed.
* fast/canvas/philip/tests/2d.path.isPointInPath.winding.html: Removed.
* fast/canvas/philip/tests/2d.path.lineTo.basic.html: Removed.
* fast/canvas/philip/tests/2d.path.lineTo.ensuresubpath.1.html: Removed.
* fast/canvas/philip/tests/2d.path.lineTo.ensuresubpath.2.html: Removed.
* fast/canvas/philip/tests/2d.path.lineTo.nextpoint.html: Removed.
* fast/canvas/philip/tests/2d.path.lineTo.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.path.moveTo.basic.html: Removed.
* fast/canvas/philip/tests/2d.path.moveTo.multiple.html: Removed.
* fast/canvas/philip/tests/2d.path.moveTo.newsubpath.html: Removed.
* fast/canvas/philip/tests/2d.path.moveTo.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.path.quadraticCurveTo.basic.html: Removed.
* fast/canvas/philip/tests/2d.path.quadraticCurveTo.ensuresubpath.1.html: Removed.
* fast/canvas/philip/tests/2d.path.quadraticCurveTo.ensuresubpath.2.html: Removed.
* fast/canvas/philip/tests/2d.path.quadraticCurveTo.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.path.quadraticCurveTo.scaled.html: Removed.
* fast/canvas/philip/tests/2d.path.quadraticCurveTo.shape.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.basic.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.closed.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.end.1.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.end.2.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.negative.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.newsubpath.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.selfintersect.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.winding.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.zero.1.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.zero.2.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.zero.3.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.zero.4.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.zero.5.html: Removed.
* fast/canvas/philip/tests/2d.path.rect.zero.6.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.empty.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.overlap.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.overlap.png: Removed.
* fast/canvas/philip/tests/2d.path.stroke.prune.arc.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.prune.closed.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.prune.corner.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.prune.curve.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.prune.line.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.prune.rect.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.scale1.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.scale2.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.skew.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.unaffected.html: Removed.
* fast/canvas/philip/tests/2d.path.stroke.union.html: Removed.
* fast/canvas/philip/tests/2d.path.transformation.basic.html: Removed.
* fast/canvas/philip/tests/2d.path.transformation.changing.html: Removed.
* fast/canvas/philip/tests/2d.path.transformation.multiple.html: Removed.
* fast/canvas/philip/tests/2d.pattern.animated.gif.html: Removed.
* fast/canvas/philip/tests/2d.pattern.basic.canvas.html: Removed.
* fast/canvas/philip/tests/2d.pattern.basic.image.html: Removed.
* fast/canvas/philip/tests/2d.pattern.basic.nocontext.html: Removed.
* fast/canvas/philip/tests/2d.pattern.basic.type.html: Removed.
* fast/canvas/philip/tests/2d.pattern.basic.zerocanvas.html: Removed.
* fast/canvas/philip/tests/2d.pattern.crosscanvas.html: Removed.
* fast/canvas/philip/tests/2d.pattern.image.broken.html: Removed.
* fast/canvas/philip/tests/2d.pattern.image.incomplete.html: Removed.
* fast/canvas/philip/tests/2d.pattern.image.null.html: Removed.
* fast/canvas/philip/tests/2d.pattern.image.string.html: Removed.
* fast/canvas/philip/tests/2d.pattern.image.undefined.html: Removed.
* fast/canvas/philip/tests/2d.pattern.modify.canvas1.html: Removed.
* fast/canvas/philip/tests/2d.pattern.modify.canvas2.html: Removed.
* fast/canvas/philip/tests/2d.pattern.modify.image1.html: Removed.
* fast/canvas/philip/tests/2d.pattern.modify.image2.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.norepeat.basic.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.norepeat.coord1.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.norepeat.coord2.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.norepeat.coord3.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.norepeat.outside.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.orientation.canvas.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.orientation.image.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeat.basic.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeat.coord1.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeat.coord2.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeat.coord3.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeat.outside.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeatx.basic.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeatx.coord1.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeatx.outside.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeaty.basic.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeaty.coord1.html: Removed.
* fast/canvas/philip/tests/2d.pattern.paint.repeaty.outside.html: Removed.
* fast/canvas/philip/tests/2d.pattern.repeat.case.html: Removed.
* fast/canvas/philip/tests/2d.pattern.repeat.empty.html: Removed.
* fast/canvas/philip/tests/2d.pattern.repeat.null.html: Removed.
* fast/canvas/philip/tests/2d.pattern.repeat.nullsuffix.html: Removed.
* fast/canvas/philip/tests/2d.pattern.repeat.undefined.html: Removed.
* fast/canvas/philip/tests/2d.pattern.repeat.unrecognised.html: Removed.
* fast/canvas/philip/tests/2d.scaled.html: Removed.
* fast/canvas/philip/tests/2d.scaled.png: Removed.
* fast/canvas/philip/tests/2d.shadow.alpha.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.alpha.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.alpha.2.png: Removed.
* fast/canvas/philip/tests/2d.shadow.alpha.3.html: Removed.
* fast/canvas/philip/tests/2d.shadow.alpha.3.png: Removed.
* fast/canvas/philip/tests/2d.shadow.alpha.4.html: Removed.
* fast/canvas/philip/tests/2d.shadow.alpha.4.png: Removed.
* fast/canvas/philip/tests/2d.shadow.alpha.5.html: Removed.
* fast/canvas/philip/tests/2d.shadow.alpha.5.png: Removed.
* fast/canvas/philip/tests/2d.shadow.attributes.shadowBlur.initial.html: Removed.
* fast/canvas/philip/tests/2d.shadow.attributes.shadowBlur.invalid.html: Removed.
* fast/canvas/philip/tests/2d.shadow.attributes.shadowBlur.valid.html: Removed.
* fast/canvas/philip/tests/2d.shadow.attributes.shadowColor.initial.html: Removed.
* fast/canvas/philip/tests/2d.shadow.attributes.shadowColor.invalid.html: Removed.
* fast/canvas/philip/tests/2d.shadow.attributes.shadowColor.valid.html: Removed.
* fast/canvas/philip/tests/2d.shadow.attributes.shadowOffset.initial.html: Removed.
* fast/canvas/philip/tests/2d.shadow.attributes.shadowOffset.invalid.html: Removed.
* fast/canvas/philip/tests/2d.shadow.attributes.shadowOffset.valid.html: Removed.
* fast/canvas/philip/tests/2d.shadow.blur.high.html: Removed.
* fast/canvas/philip/tests/2d.shadow.blur.high.png: Removed.
* fast/canvas/philip/tests/2d.shadow.blur.low.html: Removed.
* fast/canvas/philip/tests/2d.shadow.blur.low.png: Removed.
* fast/canvas/philip/tests/2d.shadow.canvas.alpha.html: Removed.
* fast/canvas/philip/tests/2d.shadow.canvas.alpha.png: Removed.
* fast/canvas/philip/tests/2d.shadow.canvas.basic.html: Removed.
* fast/canvas/philip/tests/2d.shadow.canvas.transparent.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.canvas.transparent.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.clip.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.clip.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.clip.3.html: Removed.
* fast/canvas/philip/tests/2d.shadow.composite.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.composite.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.composite.3.html: Removed.
* fast/canvas/philip/tests/2d.shadow.enable.blur.html: Removed.
* fast/canvas/philip/tests/2d.shadow.enable.off.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.enable.off.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.enable.x.html: Removed.
* fast/canvas/philip/tests/2d.shadow.enable.y.html: Removed.
* fast/canvas/philip/tests/2d.shadow.gradient.alpha.html: Removed.
* fast/canvas/philip/tests/2d.shadow.gradient.alpha.png: Removed.
* fast/canvas/philip/tests/2d.shadow.gradient.basic.html: Removed.
* fast/canvas/philip/tests/2d.shadow.gradient.transparent.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.gradient.transparent.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.image.alpha.html: Removed.
* fast/canvas/philip/tests/2d.shadow.image.alpha.png: Removed.
* fast/canvas/philip/tests/2d.shadow.image.basic.html: Removed.
* fast/canvas/philip/tests/2d.shadow.image.scale.html: Removed.
* fast/canvas/philip/tests/2d.shadow.image.section.html: Removed.
* fast/canvas/philip/tests/2d.shadow.image.transparent.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.image.transparent.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.offset.negativeX.html: Removed.
* fast/canvas/philip/tests/2d.shadow.offset.negativeY.html: Removed.
* fast/canvas/philip/tests/2d.shadow.offset.positiveX.html: Removed.
* fast/canvas/philip/tests/2d.shadow.offset.positiveY.html: Removed.
* fast/canvas/philip/tests/2d.shadow.outside.html: Removed.
* fast/canvas/philip/tests/2d.shadow.pattern.alpha.html: Removed.
* fast/canvas/philip/tests/2d.shadow.pattern.alpha.png: Removed.
* fast/canvas/philip/tests/2d.shadow.pattern.basic.html: Removed.
* fast/canvas/philip/tests/2d.shadow.pattern.transparent.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.pattern.transparent.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.stroke.basic.html: Removed.
* fast/canvas/philip/tests/2d.shadow.stroke.cap.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.stroke.cap.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.stroke.join.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.stroke.join.2.html: Removed.
* fast/canvas/philip/tests/2d.shadow.stroke.join.3.html: Removed.
* fast/canvas/philip/tests/2d.shadow.transform.1.html: Removed.
* fast/canvas/philip/tests/2d.shadow.transform.2.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.bitmap.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.clip.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.fillStyle.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.font.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.globalAlpha.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.globalCompositeOperation.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.lineCap.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.lineJoin.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.lineWidth.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.miterLimit.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.path.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.shadowBlur.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.shadowColor.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.shadowOffsetX.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.shadowOffsetY.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.stack.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.stackdepth.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.strokeStyle.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.textAlign.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.textBaseline.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.transformation.html: Removed.
* fast/canvas/philip/tests/2d.state.saverestore.underflow.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.basic.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.clip.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.globalalpha.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.globalcomposite.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.negative.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.path.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.shadow.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.transform.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.zero.1.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.zero.2.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.zero.3.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.zero.4.html: Removed.
* fast/canvas/philip/tests/2d.strokeRect.zero.5.html: Removed.
* fast/canvas/philip/tests/2d.strokeStyle.default.html: Removed.
* fast/canvas/philip/tests/2d.text.align.default.html: Removed.
* fast/canvas/philip/tests/2d.text.align.invalid.html: Removed.
* fast/canvas/philip/tests/2d.text.align.valid.html: Removed.
* fast/canvas/philip/tests/2d.text.baseline.default.html: Removed.
* fast/canvas/philip/tests/2d.text.baseline.invalid.html: Removed.
* fast/canvas/philip/tests/2d.text.baseline.valid.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.align.center.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.align.end.ltr.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.align.end.rtl.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.align.left.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.align.right.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.align.start.ltr.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.align.start.rtl.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.baseline.alphabetic.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.baseline.bottom.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.baseline.hanging.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.baseline.ideographic.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.baseline.middle.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.baseline.top.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.basic.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.basic.png: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.bound.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.fontface.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.large.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.large.png: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.small.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.zero.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.rtl.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.rtl.png: Removed.
* fast/canvas/philip/tests/2d.text.draw.fill.unaffected.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fontface.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fontface.notinpage.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.fontface.repeat.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.kern.consistent.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.space.basic.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.space.collapse.end.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.space.collapse.nonspace.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.space.collapse.other.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.space.collapse.space.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.space.collapse.start.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.stroke.basic.html: Removed.
* fast/canvas/philip/tests/2d.text.draw.stroke.basic.png: Removed.
* fast/canvas/philip/tests/2d.text.draw.stroke.unaffected.html: Removed.
* fast/canvas/philip/tests/2d.text.font.default.html: Removed.
* fast/canvas/philip/tests/2d.text.font.parse.basic.html: Removed.
* fast/canvas/philip/tests/2d.text.font.parse.complex.html: Removed.
* fast/canvas/philip/tests/2d.text.font.parse.invalid.html: Removed.
* fast/canvas/philip/tests/2d.text.font.parse.size.percentage.default.html: Removed.
* fast/canvas/philip/tests/2d.text.font.parse.size.percentage.html: Removed.
* fast/canvas/philip/tests/2d.text.font.parse.system.html: Removed.
* fast/canvas/philip/tests/2d.text.measure.width.basic.html: Removed.
* fast/canvas/philip/tests/2d.text.measure.width.empty.html: Removed.
* fast/canvas/philip/tests/2d.text.measure.width.space.html: Removed.
* fast/canvas/philip/tests/2d.transformation.order.html: Removed.
* fast/canvas/philip/tests/2d.transformation.rotate.direction.html: Removed.
* fast/canvas/philip/tests/2d.transformation.rotate.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.transformation.rotate.radians.html: Removed.
* fast/canvas/philip/tests/2d.transformation.rotate.wrap.html: Removed.
* fast/canvas/philip/tests/2d.transformation.rotate.wrapnegative.html: Removed.
* fast/canvas/philip/tests/2d.transformation.rotate.zero.html: Removed.
* fast/canvas/philip/tests/2d.transformation.scale.basic.html: Removed.
* fast/canvas/philip/tests/2d.transformation.scale.large.html: Removed.
* fast/canvas/philip/tests/2d.transformation.scale.multiple.html: Removed.
* fast/canvas/philip/tests/2d.transformation.scale.negative.html: Removed.
* fast/canvas/philip/tests/2d.transformation.scale.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.transformation.scale.zero.html: Removed.
* fast/canvas/philip/tests/2d.transformation.setTransform.multiple.html: Removed.
* fast/canvas/philip/tests/2d.transformation.setTransform.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.transformation.setTransform.skewed.html: Removed.
* fast/canvas/philip/tests/2d.transformation.transform.identity.html: Removed.
* fast/canvas/philip/tests/2d.transformation.transform.multiply.html: Removed.
* fast/canvas/philip/tests/2d.transformation.transform.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.transformation.transform.skewed.html: Removed.
* fast/canvas/philip/tests/2d.transformation.translate.basic.html: Removed.
* fast/canvas/philip/tests/2d.transformation.translate.nonfinite.html: Removed.
* fast/canvas/philip/tests/2d.voidreturn.html: Removed.
* fast/canvas/philip/tests/clear-100x50.png: Removed.
* fast/canvas/philip/tests/context.casesensitive.html: Removed.
* fast/canvas/philip/tests/context.emptystring.html: Removed.
* fast/canvas/philip/tests/context.unrecognised.badname.html: Removed.
* fast/canvas/philip/tests/context.unrecognised.badsuffix.html: Removed.
* fast/canvas/philip/tests/context.unrecognised.nullsuffix.html: Removed.
* fast/canvas/philip/tests/context.unrecognised.unicode.html: Removed.
* fast/canvas/philip/tests/fallback.basic.html: Removed.
* fast/canvas/philip/tests/fallback.multiple.html: Removed.
* fast/canvas/philip/tests/fallback.nested.html: Removed.
* fast/canvas/philip/tests/green-100x50.png: Removed.
* fast/canvas/philip/tests/initial.colour.html: Removed.
* fast/canvas/philip/tests/initial.colour.png: Removed.
* fast/canvas/philip/tests/initial.reset.2dstate.html: Removed.
* fast/canvas/philip/tests/initial.reset.clip.html: Removed.
* fast/canvas/philip/tests/initial.reset.different.html: Removed.
* fast/canvas/philip/tests/initial.reset.different.png: Removed.
* fast/canvas/philip/tests/initial.reset.gradient.html: Removed.
* fast/canvas/philip/tests/initial.reset.path.html: Removed.
* fast/canvas/philip/tests/initial.reset.path.png: Removed.
* fast/canvas/philip/tests/initial.reset.pattern.html: Removed.
* fast/canvas/philip/tests/initial.reset.same.html: Removed.
* fast/canvas/philip/tests/initial.reset.same.png: Removed.
* fast/canvas/philip/tests/initial.reset.transform.html: Removed.
* fast/canvas/philip/tests/security.dataURI.html: Removed.
* fast/canvas/philip/tests/security.drawImage.canvas.html: Removed.
* fast/canvas/philip/tests/security.drawImage.image.html: Removed.
* fast/canvas/philip/tests/security.pattern.canvas.fillStyle.html: Removed.
* fast/canvas/philip/tests/security.pattern.canvas.strokeStyle.html: Removed.
* fast/canvas/philip/tests/security.pattern.canvas.timing.html: Removed.
* fast/canvas/philip/tests/security.pattern.create.html: Removed.
* fast/canvas/philip/tests/security.pattern.cross.html: Removed.
* fast/canvas/philip/tests/security.pattern.image.fillStyle.html: Removed.
* fast/canvas/philip/tests/security.pattern.image.strokeStyle.html: Removed.
* fast/canvas/philip/tests/security.reset.html: Removed.
* fast/canvas/philip/tests/size.attributes.default.html: Removed.
* fast/canvas/philip/tests/size.attributes.default.png: Removed.
* fast/canvas/philip/tests/size.attributes.get.html: Removed.
* fast/canvas/philip/tests/size.attributes.get.png: Removed.
* fast/canvas/philip/tests/size.attributes.idl.html: Removed.
* fast/canvas/philip/tests/size.attributes.idl.set.zero.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.decimal.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.decimal.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.em.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.em.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.empty.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.empty.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.exp.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.exp.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.hex.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.junk.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.junk.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.minus.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.minus.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.octal.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.octal.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.onlyspace.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.onlyspace.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.percent.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.percent.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.plus.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.plus.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.space.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.space.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.trailingjunk.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.trailingjunk.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.whitespace.html: Removed.
* fast/canvas/philip/tests/size.attributes.parse.whitespace.png: Removed.
* fast/canvas/philip/tests/size.attributes.parse.zero.html: Removed.
* fast/canvas/philip/tests/size.attributes.reflect.setcontent.html: Removed.
* fast/canvas/philip/tests/size.attributes.reflect.setcontent.png: Removed.
* fast/canvas/philip/tests/size.attributes.reflect.setidl.html: Removed.
* fast/canvas/philip/tests/size.attributes.reflect.setidl.png: Removed.
* fast/canvas/philip/tests/size.attributes.reflect.setidlzero.html: Removed.
* fast/canvas/philip/tests/size.attributes.removed.html: Removed.
* fast/canvas/philip/tests/size.attributes.removed.png: Removed.
* fast/canvas/philip/tests/size.attributes.set.html: Removed.
* fast/canvas/philip/tests/size.attributes.set.png: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.decimal.html: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.decimal.png: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.em.html: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.em.png: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.empty.html: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.empty.png: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.exp.html: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.exp.png: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.hex.html: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.junk.html: Removed.
* fast/canvas/philip/tests/size.attributes.setAttribute.junk.png: Removed.