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
2007-10-13 Oliver Hunt <oliver@apple.com>
RS=Maciej.
Adding Leopard results for a few SVG tests
* platform/mac-leopard/svg/batik/text/smallFonts-expected.txt: Added.
* platform/mac-leopard/svg/batik/text/textBiDi-expected.txt: Added.
* platform/mac-leopard/svg/hixie/text/003-expected.txt:
* platform/mac-leopard/svg/hixie/text/003a-expected.txt:
* platform/mac-leopard/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt: Added.
* platform/mac-leopard/svg/hixie/viewbox/preserveAspectRatio/002-expected.txt:
* platform/mac-leopard/svg/text/text-path-01-b-expected.txt: Added.
2007-10-13 Oliver Hunt <oliver@apple.com>
RS=Eric
Make svg/batik/text/textDecoration2.svg use Lucida Grande
This test case used to use Lucida Sans which is apparently available on some
systems, but not all. Switching to Lucida Grande results in a slight change
but we'll be testing with a font that everyone has.
* svg/batik/text/textDecoration2-expected.checksum:
* svg/batik/text/textDecoration2-expected.png:
* svg/batik/text/textDecoration2-expected.txt:
* svg/batik/text/textDecoration2.svg:
2007-10-12 Sam Weinig <sam@webkit.org>
Reviewed by Darin.
* platform/mac/editing/pasteboard/paste-RTFD-expected.txt: Update results to reflect current
tree. Reopening <rdar://problem/5483567> (see below) to note the potential bug.
2007-10-12 Darin Adler <darin@apple.com>
Reviewed by Oliver Hunt.
- change test that was accidentally detecting changes in frame load delegate
calls to run in a directory where we do not log frame load delegate calls
At some point we may want to test them (and so re-add the test that is
currently intermittently giving different results), but this test is about
the DOMContentLoaded event and we want to test just that.
* http/tests/loading/DOMContentLoaded-event-expected.txt: Removed.
* http/tests/loading/DOMContentLoaded-event.html: Removed.
* http/tests/misc/DOMContentLoaded-event-expected.txt: Copied from http/tests/loading/DOMContentLoaded-event-expected.txt.
* http/tests/misc/DOMContentLoaded-event.html: Copied from http/tests/loading/DOMContentLoaded-event.html.
2007-10-12 Darin Adler <darin@apple.com>
Reviewed by Stephanie and Oliver.
* platform/mac/fast/forms/select-change-listbox-to-popup-expected.txt:
Update result to reflect current behavior. This is a bug and we wrote
a bug report in Radar, <rdar://problem/5538793>.
2007-10-12 Justin Garcia <justin.garcia@apple.com>
Reviewed by Harrison.
<rdar://problem/5483370> GoogleDocs: Deleting cell text in a table row also removes any empty rows beneath the row being edited
<rdar://problem/5482524> GoogleDocs: A hang occurs when applying list to selected table
* editing/deleting/5483370.html: Added.
* editing/pasteboard/5483567.html-disabled: Removed.
* editing/execCommand/5482524.html: Added.
* platform/mac/editing/deleting/5483370-expected.checksum: Added.
* platform/mac/editing/deleting/5483370-expected.png: Added.
* platform/mac/editing/deleting/5483370-expected.txt: Added.
* platform/mac/editing/execCommand/5482524-expected.checksum: Added.
* platform/mac/editing/execCommand/5482524-expected.png: Added.
* platform/mac/editing/execCommand/5482524-expected.txt: Added.
2007-10-12 Darin Adler <darin@apple.com>
Reviewed by Oliver Hunt.
- more work toward getting layout tests passing
* fast/images/svg-background-crash-on-refresh.html: Removed.
* fast/images/svg-background-crash-on-refresh.html-disabled: Copied from fast/images/svg-background-crash-on-refresh.html.
Needed to disable this test because it causes a hang; not necessarily right after
this test, sometimes quite a few tests later.
* platform/mac-leopard/Skipped: Re-enabled a test that's fixed.
2007-10-12 Darin Adler <darin@apple.com>
* fast/css/computed-style-expected.txt: Again, but right this time.
2007-10-12 Darin Adler <darin@apple.com>
Reviewed by Oliver Hunt.
* fast/css/computed-style-expected.txt: Added SVG CSS properties.
* fast/css/computed-style-without-renderer-expected.txt: Ditto.
2007-10-12 Oliver Hunt <oliver@apple.com>
RS=Alexey
Move dom/xhtml/level2/html/HTMLBaseElement0[12].xhtml expected output to
cross platform directory, remove unnecessary pixel results.
* dom/xhtml/level2/html/HTMLBaseElement01-expected.txt: Added.
* dom/xhtml/level2/html/HTMLBaseElement02-expected.txt: Added.
* platform/mac/dom/xhtml/level2/html/HTMLBaseElement01-expected.checksum: Removed.
* platform/mac/dom/xhtml/level2/html/HTMLBaseElement01-expected.png: Removed.
* platform/mac/dom/xhtml/level2/html/HTMLBaseElement01-expected.txt: Removed.
* platform/mac/dom/xhtml/level2/html/HTMLBaseElement02-expected.checksum: Removed.
* platform/mac/dom/xhtml/level2/html/HTMLBaseElement02-expected.png: Removed.
* platform/mac/dom/xhtml/level2/html/HTMLBaseElement02-expected.txt: Removed.
2007-10-12 Oliver Hunt <oliver@apple.com>
RS=Eric.
Correct expected output of a few test cases
* platform/mac/dom/xhtml/level2/html/HTMLBaseElement01-expected.txt:
* platform/mac/dom/xhtml/level2/html/HTMLBaseElement02-expected.txt:
* platform/mac/fast/dom/dom-parse-serialize-expected.txt:
=== Start merge of feature-branch 2007-10-12 ===
2007-10-11 Oliver Hunt <oliver@apple.com>
Reviewed by Sam.
Bug 15469: feature branch has 100's of implicit double -> float conversions
Correct minor layout test change following double to float replacement
* svg/batik/paints/gradientLimit-expected.txt:
2007-10-11 Nikolas Zimmermann <zimmermann@kde.org>
Reviewed by Oliver.
Update SVG baseline after the textLength addition & string bound fixes.
* platform/mac/svg/W3C-SVG-1.1/animate-elem-28-t-expected.checksum:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-28-t-expected.png:
* platform/mac/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.checksum:
* platform/mac/svg/W3C-SVG-1.1/filters-felem-01-b-expected.checksum:
* platform/mac/svg/W3C-SVG-1.1/filters-felem-01-b-expected.png:
* platform/mac/svg/W3C-SVG-1.1/filters-tile-01-b-expected.checksum:
* platform/mac/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.checksum:
* platform/mac/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.png:
* platform/mac/svg/W3C-SVG-1.1/text-text-01-b-expected.checksum:
* platform/mac/svg/W3C-SVG-1.1/text-text-01-b-expected.png:
* platform/mac/svg/W3C-SVG-1.1/text-text-01-b-expected.txt:
* platform/mac/svg/custom/use-infinite-recursion-expected.checksum: Added. (was missing in SVN)
* svg/batik/text/textLayout-expected.checksum:
* svg/batik/text/textLayout-expected.png:
* svg/batik/text/textLayout-expected.txt:
* svg/batik/text/textLength-expected.checksum:
* svg/batik/text/textLength-expected.png:
* svg/batik/text/textLength-expected.txt:
* svg/batik/text/textOnPathSpaces-expected.checksum:
* svg/batik/text/textOnPathSpaces-expected.png:
* svg/batik/text/textOnPathSpaces-expected.txt:
* svg/text/text-text-01-b-expected.checksum:
* svg/text/text-text-01-b-expected.png:
* svg/text/text-text-01-b-expected.txt:
2007-10-11 Oliver Hunt <oliver@apple.com>
Reviewed by Niko.
Fix for Bug 15468: Parsing of numbers and lists is too lenient in SVG
Updating layout test results for more strict parsing of SVGNumber and
SVGLengthList
* platform/mac/svg/custom/path-bad-data-expected.txt:
* svg/dom/length-list-parser-expected.txt:
2007-10-11 Allan Sandfeld Jensen <sandfeld@kde.org>
Reviewed by Maciej and Eric.
Test for nondeterministic matching of CSS selectors, see http://bugs.webkit.org/show_bug.cgi?id=3428
* fast/selectors/nondeterministic-combinators.html: Added.
* platform/mac/fast/selectors/nondeterministic-combinators-expected.checksum
* platform/mac/fast/selectors/nondeterministic-combinators-expected.png
* platform/mac/fast/selectors/nondeterministic-combinators-expected.txt
2007-10-10 Eric Seidel <eric@webkit.org>
Reviewed by Nikolas Zimmermann.
Test for:
http://bugs.webkit.org/show_bug.cgi?id=14150
* svg/dom/animated-tearoff-equality-expected.txt: Added.
* svg/dom/animated-tearoff-equality.xhtml: Added.
* svg/dom/animated-tearoff-lifespan-expected.txt: Added.
* svg/dom/animated-tearoff-lifespan.xhtml: Added.
2007-10-10 Oliver Hunt <oliver@apple.com>
RS = Eric
Correcting expected output of svg/batik/text/textOnPathSpaces
* svg/batik/text/textOnPathSpaces-expected.txt:
2007-10-10 Eric Seidel <eric@webkit.org>
Reviewed by Oliver.
Updated results for:
http://bugs.webkit.org/show_bug.cgi?id=15458
* platform/mac/svg/custom/focus-ring-expected.checksum: Added.
* platform/mac/svg/custom/focus-ring-expected.png: Added.
* platform/mac/svg/custom/focus-ring-expected.txt: Added.
2007-10-09 Alexey Proskuryakov <ap@webkit.org>
Reviewed by Anders.
http://bugs.webkit.org/show_bug.cgi?id=15436
Wrong node order for XPath reverse axes
* fast/xpath/reverse-axes-expected.txt: Added.
* fast/xpath/reverse-axes.html: Added.
2007-10-09 Alexey Proskuryakov <ap@webkit.org>
Reviewed by Mitz.
http://bugs.webkit.org/show_bug.cgi?id=15437
XPath substring-after function is broken
* fast/xpath/substring-after-expected.txt: Added.
* fast/xpath/substring-after.html: Added.
* fast/xpath/4XPath/Core/test_core_functions-expected.txt:
* fast/xpath/4XPath/Core/test_core_functions.html:
Fixed an incorrect test (not sure what made me think that it was right).
2007-10-09 Nikolas Zimmermann <zimmermann@kde.org>
Not reviewed.
Regenerate the SVG test baseline, they have been generated with _trunk_ instead of feature-branch.
Not sure who committed it, but it's wrong - so I'm fixing.
* platform/mac/svg/W3C-SVG-1.1/animate-elem-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-05-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-06-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-07-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-09-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-10-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-11-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-12-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-15-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-16-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-17-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-19-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-22-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-23-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-25-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-26-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-27-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-28-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-30-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-32-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-33-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-34-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-37-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-41-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-44-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-52-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-60-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-61-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-62-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-63-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-64-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-65-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-66-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-67-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-68-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-69-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-70-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-78-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-80-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-81-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-82-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-84-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/animate-elem-85-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/color-prof-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/color-prop-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/color-prop-02-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/color-prop-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-coord-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-coord-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-trans-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-trans-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-trans-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-trans-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-trans-05-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-trans-06-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-units-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-units-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-blend-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-color-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-conv-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-displace-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-example-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-felem-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-image-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-light-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-offset-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-specular-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-tile-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/filters-turb-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/interact-dom-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/interact-events-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/interact-order-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/interact-order-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/interact-order-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/linking-a-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/linking-a-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/linking-a-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/linking-a-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/linking-a-07-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/linking-uri-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/masking-intro-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/masking-path-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/masking-path-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/masking-path-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/masking-path-04-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-fill-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-fill-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-fill-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-fill-05-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-marker-01-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-marker-02-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-render-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-03-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-05-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-06-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-07-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-08-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-09-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-10-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-13-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-14-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/paths-data-15-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/render-elems-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/render-elems-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/render-elems-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/script-handle-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/script-handle-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/script-handle-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/script-handle-04-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-line-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-cond-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-cond-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-cond-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-defs-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-dom-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-dom-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-dom-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-dom-04-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-dom-05-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-dom-06-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-frag-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-frag-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-frag-05-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-group-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-group-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-group-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-05-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-06-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-07-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-08-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-09-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-image-10-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-use-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-use-03-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/styling-css-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/styling-css-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/styling-css-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/styling-css-04-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/styling-css-05-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/styling-css-06-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/styling-pres-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-align-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-align-02-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-align-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-align-04-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-align-05-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-align-06-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-deco-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-fonts-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-intro-05-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-path-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-spacing-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-text-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-text-03-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-text-04-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-text-06-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-text-07-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-text-08-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-tref-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-tselect-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-tselect-02-f-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-ws-01-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/text-ws-02-t-expected.txt:
* platform/mac/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.txt:
* platform/mac/svg/carto.net/button-expected.txt:
* platform/mac/svg/carto.net/colourpicker-expected.txt:
* platform/mac/svg/carto.net/combobox-expected.txt:
* platform/mac/svg/carto.net/scrollbar-expected.txt:
* platform/mac/svg/carto.net/selectionlist-expected.txt:
* platform/mac/svg/carto.net/slider-expected.txt:
* platform/mac/svg/carto.net/tabgroup-expected.txt:
* platform/mac/svg/carto.net/textbox-expected.txt:
* platform/mac/svg/carto.net/window-expected.txt:
* platform/mac/svg/custom/SVGNumber-interface-expected.txt:
* platform/mac/svg/custom/SVGPoint-interface-expected.txt:
* platform/mac/svg/custom/SVGPoint-matrixTransform-expected.txt:
* platform/mac/svg/custom/SVGRect-interface-expected.txt:
* platform/mac/svg/custom/attribute-namespace-check-expected.txt:
* platform/mac/svg/custom/baseval-animval-equality-expected.txt:
* platform/mac/svg/custom/circular-marker-reference-1-expected.txt:
* platform/mac/svg/custom/circular-marker-reference-2-expected.txt:
* platform/mac/svg/custom/circular-marker-reference-3-expected.txt:
* platform/mac/svg/custom/circular-marker-reference-4-expected.txt:
* platform/mac/svg/custom/class-selector-expected.txt:
* platform/mac/svg/custom/clip-path-child-changes-expected.txt:
* platform/mac/svg/custom/clip-path-href-changes-expected.txt:
* platform/mac/svg/custom/clip-path-units-changes-expected.txt:
* platform/mac/svg/custom/clip-path-with-transform-expected.txt:
* platform/mac/svg/custom/conditional-processing-outside-switch-expected.txt:
* platform/mac/svg/custom/control-points-for-S-and-T-expected.txt:
* platform/mac/svg/custom/coords-relative-units-transforms-expected.txt:
* platform/mac/svg/custom/create-metadata-element-expected.txt:
* platform/mac/svg/custom/createelement-expected.txt:
* platform/mac/svg/custom/css-pixels-dpi-expected.txt:
* platform/mac/svg/custom/dasharrayOrigin-expected.txt:
* platform/mac/svg/custom/deep-dynamic-updates-expected.txt:
* platform/mac/svg/custom/display-none-expected.txt:
* platform/mac/svg/custom/dynamic-empty-path-expected.txt:
* platform/mac/svg/custom/dynamic-svg-document-creation-expected.txt:
* platform/mac/svg/custom/dynamic-viewBox-expected.txt:
* platform/mac/svg/custom/empty-merge-expected.txt:
* platform/mac/svg/custom/evt-onload-expected.txt:
* platform/mac/svg/custom/feComponentTransfer-Discrete-expected.txt:
* platform/mac/svg/custom/feComponentTransfer-Gamma-expected.txt:
* platform/mac/svg/custom/feComponentTransfer-Linear-expected.txt:
* platform/mac/svg/custom/feComponentTransfer-Table-expected.txt:
* platform/mac/svg/custom/feDisplacementMap-01-expected.txt:
* platform/mac/svg/custom/fill-update-expected.txt:
* platform/mac/svg/custom/filter-source-alpha-expected.txt:
* platform/mac/svg/custom/foreign-object-skew-expected.txt:
* platform/mac/svg/custom/fractional-rects-expected.txt:
* platform/mac/svg/custom/getTransformToElement-expected.txt:
* platform/mac/svg/custom/getscreenctm-in-mixed-content-expected.txt:
* platform/mac/svg/custom/getsvgdocument-expected.txt:
* platform/mac/svg/custom/gradient-add-stops-expected.txt:
* platform/mac/svg/custom/gradient-attr-update-expected.txt:
* platform/mac/svg/custom/gradient-cycle-detection-expected.txt:
* platform/mac/svg/custom/gradient-deep-referencing-expected.txt:
* platform/mac/svg/custom/gradient-stop-corner-cases-expected.txt:
* platform/mac/svg/custom/gradient-stop-style-change-expected.txt:
* platform/mac/svg/custom/gradient-stroke-width-expected.txt:
* platform/mac/svg/custom/grayscale-gradient-mask-expected.txt:
* platform/mac/svg/custom/hover-default-fill-expected.txt:
* platform/mac/svg/custom/image-clipped-hit-expected.txt:
* platform/mac/svg/custom/image-with-transform-clip-filter-expected.txt:
* platform/mac/svg/custom/inner-percent-expected.txt:
* platform/mac/svg/custom/inner-svg-hit-test-expected.txt:
* platform/mac/svg/custom/invalid-css-expected.txt:
* platform/mac/svg/custom/invalid-fill-expected.txt:
* platform/mac/svg/custom/invalid-fill-hex-expected.txt:
* platform/mac/svg/custom/invalid-transforms-expected.txt:
* platform/mac/svg/custom/invisible-text-after-scrolling-expected.txt:
* platform/mac/svg/custom/js-late-clipPath-and-object-creation-expected.txt:
* platform/mac/svg/custom/js-late-clipPath-creation-expected.txt:
* platform/mac/svg/custom/js-late-gradient-and-object-creation-expected.txt:
* platform/mac/svg/custom/js-late-gradient-creation-expected.txt:
* platform/mac/svg/custom/js-late-marker-and-object-creation-expected.txt:
* platform/mac/svg/custom/js-late-marker-creation-expected.txt:
* platform/mac/svg/custom/js-late-mask-and-object-creation-expected.txt:
* platform/mac/svg/custom/js-late-mask-creation-expected.txt:
* platform/mac/svg/custom/js-late-pattern-and-object-creation-expected.txt:
* platform/mac/svg/custom/js-late-pattern-creation-expected.txt:
* platform/mac/svg/custom/js-update-bounce-expected.txt:
* platform/mac/svg/custom/js-update-container-expected.txt:
* platform/mac/svg/custom/js-update-container2-expected.txt:
* platform/mac/svg/custom/js-update-gradient-expected.txt:
* platform/mac/svg/custom/js-update-path-changes-expected.txt:
* platform/mac/svg/custom/js-update-path-removal-expected.txt:
* platform/mac/svg/custom/js-update-pattern-child-expected.txt:
* platform/mac/svg/custom/js-update-pattern-expected.txt:
* platform/mac/svg/custom/js-update-polygon-changes-expected.txt:
* platform/mac/svg/custom/js-update-polygon-removal-expected.txt:
* platform/mac/svg/custom/js-update-stop-expected.txt:
* platform/mac/svg/custom/js-update-style-expected.txt:
* platform/mac/svg/custom/junk-data-expected.txt:
* platform/mac/svg/custom/large-bounding-box-percents-expected.txt:
* platform/mac/svg/custom/marker-changes-expected.txt:
* platform/mac/svg/custom/marker-child-changes-expected.txt:
* platform/mac/svg/custom/marker-default-width-height-expected.txt:
* platform/mac/svg/custom/marker-overflow-clip-expected.txt:
* platform/mac/svg/custom/marker-viewBox-changes-expected.txt:
* platform/mac/svg/custom/mask-changes-expected.txt:
* platform/mac/svg/custom/mask-child-changes-expected.txt:
* platform/mac/svg/custom/mask-excessive-malloc-expected.txt:
* platform/mac/svg/custom/mask-inside-defs-expected.txt:
* platform/mac/svg/custom/missing-xlink-expected.txt:
* platform/mac/svg/custom/non-circular-marker-reference-expected.txt:
* platform/mac/svg/custom/non-opaque-filters-expected.txt:
* platform/mac/svg/custom/path-bad-data-expected.txt:
* platform/mac/svg/custom/path-textPath-simulation-expected.txt:
* platform/mac/svg/custom/path-update-expected.txt:
* platform/mac/svg/custom/pattern-cycle-detection-expected.txt:
* platform/mac/svg/custom/pattern-deep-referencing-expected.txt:
* platform/mac/svg/custom/pattern-in-defs-expected.txt:
* platform/mac/svg/custom/pattern-y-offset-expected.txt:
* platform/mac/svg/custom/percentage-rect-expected.txt:
* platform/mac/svg/custom/percentage-rect2-expected.txt:
* platform/mac/svg/custom/pointer-events-image-expected.txt:
* platform/mac/svg/custom/pointer-events-path-expected.txt:
* platform/mac/svg/custom/pointer-events-text-expected.txt:
* platform/mac/svg/custom/poly-identify-expected.txt:
* platform/mac/svg/custom/polyline-hittest-expected.txt:
* platform/mac/svg/custom/polyline-invalid-points-expected.txt:
* platform/mac/svg/custom/polyline-setattribute-points-null-expected.txt:
* platform/mac/svg/custom/preserve-aspect-ratio-syntax-expected.txt:
* platform/mac/svg/custom/prevent-default-expected.txt:
* platform/mac/svg/custom/recursive-clippath-expected.txt:
* platform/mac/svg/custom/rgbcolor-syntax-expected.txt:
* platform/mac/svg/custom/rootelement-expected.txt:
* platform/mac/svg/custom/rootmost-svg-xy-attrs-expected.txt:
* platform/mac/svg/custom/rounded-rects-expected.txt:
* platform/mac/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt:
* platform/mac/svg/custom/second-inline-text-expected.txt:
* platform/mac/svg/custom/shapes-supporting-markers-expected.txt:
* platform/mac/svg/custom/sheet-title-expected.txt:
* platform/mac/svg/custom/simpleCDF-expected.txt:
* platform/mac/svg/custom/struct-use-09-b-expected.txt:
* platform/mac/svg/custom/svg-absolute-children-expected.txt:
* platform/mac/svg/custom/svg-float-border-padding-expected.txt:
* platform/mac/svg/custom/svg-overflow-types-expected.txt:
* platform/mac/svg/custom/svgpolyparser-extra-space-expected.txt:
* platform/mac/svg/custom/text-clip-expected.txt:
* platform/mac/svg/custom/text-ctm-expected.txt:
* platform/mac/svg/custom/text-filter-expected.txt:
* platform/mac/svg/custom/text-gradient-no-content-expected.txt:
* platform/mac/svg/custom/text-hit-test-expected.txt:
* platform/mac/svg/custom/text-image-opacity-expected.txt:
* platform/mac/svg/custom/text-repaint-including-stroke-expected.txt:
* platform/mac/svg/custom/text-whitespace-handling-expected.txt:
* platform/mac/svg/custom/transform-ignore-after-invalid-expected.txt:
* platform/mac/svg/custom/transform-invalid-expected.txt:
* platform/mac/svg/custom/transform-scale-parse-expected.txt:
* platform/mac/svg/custom/transform-with-ending-space-expected.txt:
* platform/mac/svg/custom/tref-update-expected.txt:
* platform/mac/svg/custom/use-clipped-hit-expected.txt:
* platform/mac/svg/custom/use-css-events-expected.txt:
* platform/mac/svg/custom/use-elementInstance-event-target-expected.txt:
* platform/mac/svg/custom/use-elementInstance-methods-expected.txt:
* platform/mac/svg/custom/use-empty-reference-expected.txt:
* platform/mac/svg/custom/use-event-handler-on-referenced-element-expected.txt:
* platform/mac/svg/custom/use-event-handler-on-use-element-expected.txt:
* platform/mac/svg/custom/use-events-crash-expected.txt:
* platform/mac/svg/custom/use-forward-refs-expected.txt:
* platform/mac/svg/custom/use-instanceRoot-modifications-expected.txt:
* platform/mac/svg/custom/use-modify-container-in-target-expected.txt:
* platform/mac/svg/custom/use-modify-target-container-expected.txt:
* platform/mac/svg/custom/use-modify-target-symbol-expected.txt:
* platform/mac/svg/custom/use-nested-transform-expected.txt:
* platform/mac/svg/custom/use-on-g-containing-use-expected.txt:
* platform/mac/svg/custom/use-on-g-expected.txt:
* platform/mac/svg/custom/use-on-rect-expected.txt:
* platform/mac/svg/custom/use-on-symbol-expected.txt:
* platform/mac/svg/custom/use-on-symbol-inside-pattern-expected.txt:
* platform/mac/svg/custom/use-on-text-expected.txt:
* platform/mac/svg/custom/use-on-use-expected.txt:
* platform/mac/svg/custom/use-property-changes-through-dom-expected.txt:
* platform/mac/svg/custom/use-property-changes-through-svg-dom-expected.txt:
* platform/mac/svg/custom/use-recalcStyle-crash-expected.txt:
* platform/mac/svg/custom/use-recursion-1-expected.txt:
* platform/mac/svg/custom/use-recursion-2-expected.txt:
* platform/mac/svg/custom/use-recursion-3-expected.txt:
* platform/mac/svg/custom/use-recursion-4-expected.txt:
* platform/mac/svg/custom/use-referencing-nonexisting-symbol-expected.txt:
* platform/mac/svg/custom/use-symbol-overflow-expected.txt:
* platform/mac/svg/custom/use-transform-expected.txt:
* platform/mac/svg/custom/viewBox-hit-expected.txt:
* platform/mac/svg/custom/viewbox-syntax-expected.txt:
* platform/mac/svg/custom/viewport-clip-expected.txt:
* platform/mac/svg/custom/viewport-em-expected.txt:
* platform/mac/svg/custom/viewport-no-width-height-expected.txt:
* platform/mac/svg/custom/viewport-update-expected.txt:
* platform/mac/svg/custom/viewport-update2-expected.txt:
* platform/mac/svg/custom/visibility-override-clip-expected.txt:
* platform/mac/svg/custom/visibility-override-expected.txt:
* platform/mac/svg/custom/visibility-override-filter-expected.txt:
* platform/mac/svg/custom/visibility-override-mask-expected.txt:
* platform/mac/svg/custom/width-full-percentage-expected.txt:
* platform/mac/svg/custom/xml-stylesheet-expected.txt:
* platform/mac/svg/hixie/cascade/001-broken-expected.txt:
* platform/mac/svg/hixie/cascade/002-expected.txt:
* platform/mac/svg/hixie/data-types/001-expected.txt:
* platform/mac/svg/hixie/data-types/002-expected.txt:
* platform/mac/svg/hixie/dynamic/002-expected.txt:
* platform/mac/svg/hixie/dynamic/003-expected.txt:
* platform/mac/svg/hixie/dynamic/004-expected.txt:
* platform/mac/svg/hixie/dynamic/005-broken-expected.txt:
* platform/mac/svg/hixie/dynamic/006-expected.txt:
* platform/mac/svg/hixie/error/001-expected.txt:
* platform/mac/svg/hixie/error/002-expected.txt:
* platform/mac/svg/hixie/error/003-expected.txt:
* platform/mac/svg/hixie/error/007-expected.txt:
* platform/mac/svg/hixie/error/008-expected.txt:
* platform/mac/svg/hixie/error/009-expected.txt:
* platform/mac/svg/hixie/error/010-expected.txt:
* platform/mac/svg/hixie/error/011-expected.txt:
* platform/mac/svg/hixie/error/012-expected.txt:
* platform/mac/svg/hixie/error/014-expected.txt:
* platform/mac/svg/hixie/error/014-test-expected.txt:
* platform/mac/svg/hixie/error/015-expected.txt:
* platform/mac/svg/hixie/error/016-expected.txt:
* platform/mac/svg/hixie/error/017-expected.txt:
* platform/mac/svg/hixie/links/001-expected.txt:
* platform/mac/svg/hixie/links/002-expected.txt:
* platform/mac/svg/hixie/links/003-broken-expected.txt:
* platform/mac/svg/hixie/mixed/003-expected.txt:
* platform/mac/svg/hixie/mixed/004-expected.txt:
* platform/mac/svg/hixie/mixed/005-expected.txt:
* platform/mac/svg/hixie/mixed/006-expected.txt:
* platform/mac/svg/hixie/mixed/007-expected.txt:
* platform/mac/svg/hixie/mixed/008-expected.txt:
* platform/mac/svg/hixie/mixed/009-expected.txt:
* platform/mac/svg/hixie/mixed/010-expected.txt:
* platform/mac/svg/hixie/mixed/011-expected.txt:
* platform/mac/svg/hixie/painting/001-expected.txt:
* platform/mac/svg/hixie/perf/001-expected.txt:
* platform/mac/svg/hixie/perf/002-expected.txt:
* platform/mac/svg/hixie/perf/003-expected.txt:
* platform/mac/svg/hixie/perf/004-expected.txt:
* platform/mac/svg/hixie/perf/005-expected.txt:
* platform/mac/svg/hixie/perf/006-expected.txt:
* platform/mac/svg/hixie/perf/007-expected.txt:
* platform/mac/svg/hixie/processing-model/005-expected.txt:
* platform/mac/svg/hixie/rendering-model/001-expected.txt:
* platform/mac/svg/hixie/rendering-model/002-expected.txt:
* platform/mac/svg/hixie/rendering-model/003-expected.txt:
* platform/mac/svg/hixie/rendering-model/003a-expected.txt:
* platform/mac/svg/hixie/rendering-model/004-expected.txt:
* platform/mac/svg/hixie/shapes/path/001-expected.txt:
* platform/mac/svg/hixie/text/001-broken-expected.txt:
* platform/mac/svg/hixie/text/002-expected.txt:
* platform/mac/svg/hixie/text/003-expected.txt:
* platform/mac/svg/hixie/text/003a-expected.txt:
* platform/mac/svg/hixie/text/003b-expected.txt:
* platform/mac/svg/hixie/transform/001-expected.txt:
* platform/mac/svg/hixie/use/001-expected.txt:
* platform/mac/svg/hixie/use/002-expected.txt:
* platform/mac/svg/hixie/use/002-test-expected.txt:
* platform/mac/svg/hixie/viewbox/001-expected.txt:
* platform/mac/svg/hixie/viewbox/002-expected.txt:
* platform/mac/svg/hixie/viewbox/003-expected.txt:
* platform/mac/svg/hixie/viewbox/004-expected.txt:
* platform/mac/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt:
* platform/mac/svg/hixie/viewbox/preserveAspectRatio/002-expected.txt:
* svg/batik/text/textOnPathSpaces-expected.txt:
* svg/webarchive/svg-script-subresouces-expected.txt:
2007-10-09 Rob Buis <buis@kde.org>
Reviewed by Eric.
Testcase for:
http://bugs.webkit.org/show_bug.cgi?id=15080
<use> element not refresh after adding objects by script in referrer
* svg/custom/use-dynamic-append-expected.checksum: Added.
* svg/custom/use-dynamic-append-expected.png: Added.
* svg/custom/use-dynamic-append-expected.txt: Added.
* svg/custom/use-dynamic-append.svg: Added.
2007-10-09 Rob Buis <buis@kde.org>
Reviewed by Maciej.
Testcase for:
http://bugs.webkit.org/show_bug.cgi?id=15088
HTMLOptionElement.selected returns false when parent HTMLSelectElement is "display: none" until parent's .selectedIndex is accessed
* fast/forms/HTMLOptionElement_selected-expected.txt: Added.
* fast/forms/HTMLOptionElement_selected.html: Added.
2007-10-08 Eric Seidel <eric@webkit.org>
Reviewed by hyatt.
* svg/css: Added.
* svg/css/getComputedStyle-basic-expected.txt: Added.
* svg/css/getComputedStyle-basic.xhtml: Added.
2007-10-08 Sam Weinig <sam@webkit.org>
Reviewed by Steve Falkenburg.
Test for <rdar://problem/5519698> CrashTracer: [USER] 47 crashes in Safari at com.apple.WebCore: WebCore::XMLTokenizer::lineNumber const + 9
* fast/innerHTML/innerHTML-script-tag-crash-expected.txt: Added.
* fast/innerHTML/innerHTML-script-tag-crash.xhtml: Added.
2007-10-08 Nikolas Zimmermann <zimmermann@kde.org>
Not reviewed.
Forgot to land some result test changes in my last commit.
* svg/W3C-SVG-1.1/text-align-04-b-expected.checksum:
* svg/W3C-SVG-1.1/text-align-04-b-expected.png:
* svg/W3C-SVG-1.1/text-align-04-b-expected.txt:
* svg/W3C-SVG-1.1/text-path-01-b-expected.checksum:
* svg/W3C-SVG-1.1/text-path-01-b-expected.png:
* svg/W3C-SVG-1.1/text-path-01-b-expected.txt:
* svg/text/text-align-04-b-expected.checksum:
* svg/text/text-align-04-b-expected.png:
* svg/text/text-align-04-b-expected.txt:
* svg/text/text-path-01-b-expected.checksum:
* svg/text/text-path-01-b-expected.png:
* svg/text/text-path-01-b-expected.txt:
2007-10-07 Nikolas Zimmermann <zimmermann@kde.org>
Reviewed by Eric.
Update results after the rotation & baseline-shift fixes.
* svg/W3C-SVG-1.1/text-align-04-b-expected.checksum:
* svg/W3C-SVG-1.1/text-align-04-b-expected.png:
* svg/W3C-SVG-1.1/text-align-04-b-expected.txt:
* svg/W3C-SVG-1.1/text-path-01-b-expected.checksum:
* svg/W3C-SVG-1.1/text-path-01-b-expected.png:
* svg/W3C-SVG-1.1/text-path-01-b-expected.txt:
* svg/batik/text/longTextOnPath-expected.checksum:
* svg/batik/text/longTextOnPath-expected.png:
* svg/batik/text/longTextOnPath-expected.txt:
* svg/batik/text/smallFonts-expected.txt:
* svg/batik/text/textEffect3-expected.checksum:
* svg/batik/text/textEffect3-expected.png:
* svg/batik/text/textEffect3-expected.txt:
* svg/batik/text/textGlyphOrientationHorizontal-expected.checksum:
* svg/batik/text/textGlyphOrientationHorizontal-expected.png:
* svg/batik/text/textGlyphOrientationHorizontal-expected.txt:
* svg/batik/text/textLayout2-expected.checksum:
* svg/batik/text/textLayout2-expected.png:
* svg/batik/text/textLayout2-expected.txt:
* svg/batik/text/textOnPath-expected.checksum:
* svg/batik/text/textOnPath-expected.png:
* svg/batik/text/textOnPath-expected.txt:
* svg/batik/text/textOnPath2-expected.checksum:
* svg/batik/text/textOnPath2-expected.png:
* svg/batik/text/textOnPath2-expected.txt:
* svg/batik/text/textOnPath3-expected.checksum:
* svg/batik/text/textOnPath3-expected.png:
* svg/batik/text/textOnPath3-expected.txt:
* svg/batik/text/textOnPathSpaces-expected.checksum:
* svg/batik/text/textOnPathSpaces-expected.png:
* svg/batik/text/textOnPathSpaces-expected.txt:
* svg/batik/text/verticalText-expected.txt:
* svg/batik/text/verticalTextOnPath-expected.checksum:
* svg/batik/text/verticalTextOnPath-expected.png:
* svg/batik/text/verticalTextOnPath-expected.txt:
* svg/text/text-align-04-b-expected.checksum:
* svg/text/text-align-04-b-expected.png:
* svg/text/text-align-04-b-expected.txt:
* svg/text/text-path-01-b-expected.checksum:
* svg/text/text-path-01-b-expected.png:
* svg/text/text-path-01-b-expected.txt:
2007-10-07 Mark Rowe <mrowe@apple.com>
Reviewed by Maciej.
Test for Bug 5122: Need an equivalent of Mozilla's DOMContentLoaded event
http://bugs.webkit.org/show_bug.cgi?id=5122
* http/tests/loading/DOMContentLoaded-event-expected.txt: Added.
* http/tests/loading/DOMContentLoaded-event.html: Added.
2007-10-07 Nikolas Zimmermann <zimmermann@kde.org>
Reviewed by Mark.
Fix textLength.svg testcase - missed xmlns.
* svg/batik/text/textLength-expected.checksum:
* svg/batik/text/textLength-expected.png:
* svg/batik/text/textLength-expected.txt:
* svg/batik/text/textLength.svg:
2007-10-07 Alexey Proskuryakov <ap@webkit.org>
Reviewed by Eric Seidel.
http://bugs.webkit.org/show_bug.cgi?id=15368
xsl:import fails when preceded by comment
* fast/xsl/import-after-comment-expected.txt: Added.
* fast/xsl/import-after-comment.xml: Added.
* fast/xsl/resources/import-after-comment-stylesheet.xsl: Added.
* fast/xsl/resources/import-after-comment-transform.xsl: Added.
2007-10-07 Vincent Ricard <magic@magicninja.org>
Reviewed by Maciej. Landed by eseidel.
add tests for http://bugs.webkit.org/show_bug.cgi?id=15062
Implement document.compatMode
* fast/dom/compatMode-AlmostStrict-expected.txt: Added.
* fast/dom/compatMode-AlmostStrict.html: Added.
* fast/dom/compatMode-Compat-expected.txt: Added.
* fast/dom/compatMode-Compat.html: Added.
* fast/dom/compatMode-Strict-expected.txt: Added.
* fast/dom/compatMode-Strict.html: Added.
2007-10-07 Sam Weinig <sam@webkit.org>
Reviewed by Darin and Nikolas. Landed by eseidel.
Update test for http://bugs.webkit.org/show_bug.cgi?id=14455
Autogenerate the JS bindings for the StyleSheetList
* fast/dom/Window/window-properties-expected.txt: Changed for new constructor.
2007-10-06 Nikolas Zimmermann <zimmermann@kde.org>
Reviewed by Mark.
Remove useless onload/onunload handlers from js-update-container.svg,
causing a console message saying these handlers don't exist.
* svg/custom/js-update-container-expected.txt:
* svg/custom/js-update-container.svg:
2007-10-06 Nikolas Zimmermann <zimmermann@kde.org>
Rubberstamped by Oliver.
Update SVG baseline with Tiger. No regressions.
* svg/W3C-SVG-1.1/animate-elem-02-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-03-t-expected.checksum:
* svg/W3C-SVG-1.1/animate-elem-03-t-expected.png:
* svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-04-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-05-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-06-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-07-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-08-t-expected.checksum:
* svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-11-t-expected.checksum:
* svg/W3C-SVG-1.1/animate-elem-11-t-expected.png:
* svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-15-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-16-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-17-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-19-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-29-b-expected.checksum:
* svg/W3C-SVG-1.1/animate-elem-29-b-expected.png:
* svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt:
* svg/W3C-SVG-1.1/animate-elem-30-t-expected.checksum:
* svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
* svg/W3C-SVG-1.1/animate-elem-31-t-expected.checksum:
* svg/W3C-SVG-1.1/animate-elem-31-t-expected.png:
* svg/W3C-SVG-1.1/animate-elem-33-t-expected.checksum:
* svg/W3C-SVG-1.1/animate-elem-33-t-expected.png: