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
2008-08-10 Dan Bernstein <mitz@apple.com>
Reviewed by Darin Adler.
- test for <rdar://problem/6074587> REGRESSION (34722): Unable to view AT&T wireless bill - window title contains markup, window is empty
* fast/tokenizer/ampersand-in-special-tag-expected.txt: Added.
* fast/tokenizer/ampersand-in-special-tag.html: Added.
2008-08-08 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Oliver.
Test for bug 20330: JSCore crash loading any filehurricane media page
<https://bugs.webkit.org/show_bug.cgi?id=20330>
* fast/js/resources/unexpected-constant-crash.js: Added.
* fast/js/unexpected-constant-crash-expected.txt: Added.
* fast/js/unexpected-constant-crash.html: Added.
2008-08-08 Maxime Britto <britto@apple.com>
Reviewed by Adele.
https://bugs.webkit.org/show_bug.cgi?id=20270
This test is automatic and can also be run manually.
* fast/events/scroll-to-anchor-in-overflow-hidden-expected.txt: Added.
* fast/events/scroll-to-anchor-in-overflow-hidden.html: Added.
2008-08-05 David D. Kilzer <ddkilzer@apple.com>
Bug 20038: REGRESSION (r35151): Can't post comments on flickr.com
<https://bugs.webkit.org/show_bug.cgi?id=20038>
<rdar://problem/6092270>
Reviewed by Eric Seidel.
* fast/forms/submit-to-url-fragment-expected.txt: Added.
* fast/forms/submit-to-url-fragment.html: Added.
2008-07-02 David Kilzer <ddkilzer@apple.com>
Images using QT plugin do not display correctly
<https://bugs.webkit.org/show_bug.cgi?id=9214>
<rdar://problem/5683413>
Reviewed by Darin.
Test images rendered by both embed and object elements.
* fast/images/embed-image.html: Added.
* fast/images/object-image.html: Added.
* platform/mac/fast/images/embed-image-expected.checksum: Added.
* platform/mac/fast/images/embed-image-expected.png: Added.
* platform/mac/fast/images/embed-image-expected.txt: Added.
* platform/mac/fast/images/object-image-expected.checksum: Added.
* platform/mac/fast/images/object-image-expected.png: Added.
* platform/mac/fast/images/object-image-expected.txt: Added.
2008-08-06 chris fleizach <cfleizach@apple.com>
Reviewed by Beth Dakin
Fix AX layout test for multi-platform
* accessibility/bounds-for-range-expected.txt:
2008-08-06 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Maciej.
Add tests for bug 20286: Load constants all at once instead of using op_load
<https://bugs.webkit.org/show_bug.cgi?id=20286>
Add a test for the edge cases of the new constant counting in the
parser, and change the limit in the deep recursion test to account for
the slightly larger stack frames.
* fast/js/constant-count-expected.txt: Added.
* fast/js/constant-count.html: Added.
* fast/js/deep-recursion-test.html:
* fast/js/resources/constant-count.js: Added.
2008-08-05 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Darin.
Test for bug 20293: Crash in JavaScript codegen for eval("const a;")
<https://bugs.webkit.org/show_bug.cgi?id=20293>
* fast/js/const-expected.txt:
* fast/js/resources/const.js:
2008-08-05 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Oliver.
Add tests for optimizations of the modulo operator in JavaScript.
* fast/js/mod-crash-expected.txt: Added.
* fast/js/mod-crash.html: Added.
* fast/js/resources/mod-crash.js: Added.
2008-08-04 Bernhard Krpl <kruepl@dbai.tuwien.ac.at>
Reviewed by Dave Hyatt.
Fix for https://bugs.webkit.org/show_bug.cgi?id=19094
Tests for offsetTop of table cells updated so that they don't include borderExtraTop
* fast/dom/Element/offsetTop-table-cell-expected.txt:
* fast/dom/Element/offsetTop-table-cell.html:
2008-08-04 Sam Weinig <sam@webkit.org>
Rubber-stamped by Dan Bernstein.
Fix typo in Skipped lists.
* platform/mac-tiger/Skipped:
* platform/win/Skipped:
2008-08-04 Dean Jackson <dino@apple.com>
Reviewed by Dave Hyatt
Update expected computed style results for the following bug
Improve AnimationController
https://bugs.webkit.org/show_bug.cgi?id=19938
* fast/css/computed-style-expected.txt:
* fast/css/computed-style-without-renderer-expected.txt:
* svg/css/getComputedStyle-basic-expected.txt:
2008-08-04 Sam Weinig <sam@webkit.org>
Reviewed by Dan Bernstein.
Update skipped lists for renamed tests.
* platform/mac-tiger/Skipped:
* platform/win/Skipped:
2008-08-04 Sam Weinig <sam@webkit.org>
Reviewed by Dan Bernstein.
Tests for the Access-control for Cross Site requests
preflight cache.
* ChangeLog:
* http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-expected.txt: Added.
* http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-header-expected.txt: Added.
* http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-header.html: Added.
* http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-method-expected.txt: Added.
* http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-method.html: Added.
* http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-timeout-expected.txt: Added.
* http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-timeout.html: Added.
* http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache.html: Added.
* http/tests/xmlhttprequest/resources/access-control-basic-preflight-cache-invalidation.php: Added.
* http/tests/xmlhttprequest/resources/access-control-basic-preflight-cache-timeout.php: Added.
* http/tests/xmlhttprequest/resources/access-control-basic-preflight-cache.php: Added.
* http/tests/xmlhttprequest/resources/portabilityLayer.php: Added.
* http/tests/xmlhttprequest/resources/reset-temp-file.php: Added.
2008-08-03 David D. Kilzer <ddkilzer@apple.com>
Future-proof fast/cookies/local-file-can-set-cookies.html
Reviewed by Anders Carlsson.
* fast/cookies/local-file-can-set-cookies.html: Set cookie
expiration date 60 seconds into the future instead of a
hard-coded date.
2008-07-31 Oliver Hunt <oliver@apple.com>
Reviewed by Cameron Zwarich.
Add tests to cover behaviour of "this" when calling named function
expressions and functions thrown as exceptions.
* fast/js/resources/static-scope-object.js: Added.
* fast/js/static-scope-object-expected.txt: Added.
* fast/js/static-scope-object.html: Added.
2008-07-31 David Kilzer <ddkilzer@apple.com>
Updated test results for DumpRenderTree fix in r35497
* svg/custom/image-with-prefix-in-webarchive-expected.webarchive:
Contents of the main resource are now displayed instead of encoded
data.
* svg/webarchive/svg-cursor-subresources-expected.webarchive: Ditto.
* svg/webarchive/svg-feimage-subresources-expected.webarchive: Ditto.
* svg/webarchive/svg-script-subresouces-expected.webarchive: Ditto.
Also updated MIME types for JavaScript source now that we don't
mangle application/x-javascript into text/javascript.
2008-07-31 David D. Kilzer <ddkilzer@webkit.org>
Fix layout test results for webarchive/test-xml-stylesheet.xml
Reviewed by Darin.
* platform/mac/webarchive/test-xml-stylesheet-expected.txt:
Removed unused test results.
* webarchive/test-duplicate-resources-expected.webarchive: Updated
results now that we don't mangle application/x-javascript into
text/javascript.
* webarchive/test-script-src-expected.webarchive: Ditto.
* webarchive/test-xml-stylesheet-expected.webarchive: Updated
results now that we handle application/xml correctly.
2008-07-31 chris fleizach <cfleizach@apple.com>
Reviewed by Alice Liu
<rdar://problem/3563671> VO doesn't highlight characters when interacting when static text in web areas
* accessibility/bounds-for-range-expected.txt: Added.
* accessibility/bounds-for-range.html: Added.
2008-07-29 Sam Weinig <sam@webkit.org>
Reviewed by Darin Adler.
Update Cross-site XMLHttpRequests using Access control to
the latest spec. (Editor's Draft 8 July 2008)
- Update syntax in tests a remove tests for removed features.
* http/tests/xmlhttprequest/access-control-basic-allow-async.html:
* http/tests/xmlhttprequest/access-control-basic-blacklist-request-headers-expected.txt: Removed.
* http/tests/xmlhttprequest/access-control-basic-blacklist-request-headers.html: Removed.
* http/tests/xmlhttprequest/access-control-basic-exclude.html: Removed.
* http/tests/xmlhttprequest/access-control-basic-non-simple-allow-async-expected.txt: Copied from LayoutTests/http/tests/xmlhttprequest/access-control-basic-not-get-allow-async-expected.txt.
* http/tests/xmlhttprequest/access-control-basic-non-simple-allow-async.html: Copied from LayoutTests/http/tests/xmlhttprequest/access-control-basic-not-get-allow-async.html.
* http/tests/xmlhttprequest/access-control-basic-non-simple-allow-expected.txt: Copied from LayoutTests/http/tests/xmlhttprequest/access-control-basic-not-get-allow-expected.txt.
* http/tests/xmlhttprequest/access-control-basic-non-simple-allow.html: Copied from LayoutTests/http/tests/xmlhttprequest/access-control-basic-not-get-allow.html.
* http/tests/xmlhttprequest/access-control-basic-not-get-allow-async-expected.txt: Removed.
* http/tests/xmlhttprequest/access-control-basic-not-get-allow-async.html: Removed.
* http/tests/xmlhttprequest/access-control-basic-not-get-allow-expected.txt: Removed.
* http/tests/xmlhttprequest/access-control-basic-not-get-allow.html: Removed.
* http/tests/xmlhttprequest/resources/access-control-basic-allow-access-control-origin-header.cgi:
* http/tests/xmlhttprequest/resources/access-control-basic-allow-print-headers.cgi:
* http/tests/xmlhttprequest/resources/access-control-basic-allow-star.cgi:
* http/tests/xmlhttprequest/resources/access-control-basic-allow.cgi:
* http/tests/xmlhttprequest/resources/access-control-basic-exclude.cgi: Removed.
* http/tests/xmlhttprequest/resources/access-control-basic-get-fail-non-simple.cgi:
* http/tests/xmlhttprequest/resources/access-control-basic-non-get-allow.cgi:
* http/tests/xmlhttprequest/resources/access-control-basic-whitelist-response-headers.cgi:
2008-07-29 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
<rdar://problem/6084585> Investigate upload progress events
* fast/dom/Window/window-properties-expected.txt:
* http/tests/xmlhttprequest/upload-onload-event-expected.txt: Added.
* http/tests/xmlhttprequest/upload-onload-event.html: Added.
* http/tests/xmlhttprequest/upload-onloadstart-event-expected.txt: Added.
* http/tests/xmlhttprequest/upload-onloadstart-event.html: Added.
* http/tests/xmlhttprequest/upload-onprogress-event-expected.txt: Added.
* http/tests/xmlhttprequest/upload-onprogress-event.html: Added.
* http/tests/xmlhttprequest/upload-progress-events-expected.txt: Added.
* http/tests/xmlhttprequest/upload-progress-events.html: Added.
* platform/win/Skipped: Skip new tests on windows where the feature is not
implemented yet.
2008-07-29 Maxime Britto <britto@apple.com>
Reviewed by adele.
This test verifies that the autoscroll works within textfields.
* fast/events/autoscroll-in-textfield-expected.txt: Added.
* fast/events/autoscroll-in-textfield.html: Added.
2008-07-29 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Mark Rowe.
- update results for console.group and console.groupEnd
* fast/dom/Window/window-properties-expected.txt:
2008-07-29 Adele Peterson <adele@apple.com>
Reviewed by Sammy Weinig.
Test for <rdar://problem/6103024>
When a QT movie is loaded directly in the browser, I can't pause it by single-clicking on the video
* media/video-click-dlbclick-standalone-expected.txt: Added.
* media/video-click-dlbclick-standalone.html: Added.
2008-07-29 Dan Bernstein <mitz@apple.com>
Reviewed by Dave Hyatt.
- test, updated test and results for <rdar://problem/6059648> Some content not visible when the window is short at courtneyalbright.com
* fast/overflow/float-in-relpositioned.html: Added.
* fast/repaint/containing-block-position-change.html: Changed to avoid
a full repaint due to a scroll bar appearing.
* platform/mac/fast/clip/015-expected.txt:
* platform/mac/fast/overflow/float-in-relpositioned-expected.checksum: Added.
* platform/mac/fast/overflow/float-in-relpositioned-expected.png: Added.
* platform/mac/fast/overflow/float-in-relpositioned-expected.txt: Added.
* platform/mac/fast/repaint/clipped-relative-expected.txt:
2008-07-29 Dan Bernstein <mitz@apple.com>
Reviewed by Dave Hyatt.
- repaint test for <rdar://problem/6048566> Repaint original element's position, not its offset position
* fast/repaint/layout-state-relative.html: Added.
* platform/mac/fast/repaint/layout-state-relative-expected.checksum: Added.
* platform/mac/fast/repaint/layout-state-relative-expected.png: Added.
* platform/mac/fast/repaint/layout-state-relative-expected.txt: Added.
2008-07-29 David Hyatt <hyatt@apple.com>
Add a layout test for using multiple variable declaration blocks in a single style rule.
* fast/css/variables/alternate-syntax/multiple-blocks-test.html: Added.
* fast/css/variables/multiple-blocks-test.html: Added.
* platform/mac/fast/css/variables/multiple-blocks-test-expected.checksum: Added.
* platform/mac/fast/css/variables/multiple-blocks-test-expected.png: Added.
* platform/mac/fast/css/variables/multiple-blocks-test-expected.txt: Added.
2008-07-28 Brady Eidson <beidson@apple.com>
Reviewed by Sam Weinig
<rdar://problem/6093281> - autocomplete="off" should work when going back
* security/autocomplete-cleared-on-back-expected.txt: Added.
* security/autocomplete-cleared-on-back.html: Added.
* security/resources: Added.
* security/resources/autocomplete-cleared-on-back2.html: Added.
2008-07-28 Anders Carlsson <andersca@apple.com>
Reviewed by Sam.
<rdar://problem/6098335>
https://bugs.webkit.org/show_bug.cgi?id=20150
Add tests.
* http/tests/xmlhttprequest/resources/forbidden.txt: Added.
* http/tests/xmlhttprequest/resources/redirect.php: Added.
* http/tests/xmlhttprequest/xmlhttprequest-unsafe-redirect-expected.txt: Added.
* http/tests/xmlhttprequest/xmlhttprequest-unsafe-redirect.html: Added.
2008-07-27 Sam Weinig <sam@webkit.org>
Reviewed by Oliver Hunt.
Tests for https://bugs.webkit.org/show_bug.cgi?id=20176
querySelectorAll id optimization no longer working
* fast/dom/SelectorAPI/caseID-almost-strict-expected.txt: Added.
* fast/dom/SelectorAPI/caseID-almost-strict.html: Added.
* fast/dom/SelectorAPI/caseID-expected.txt: Added.
* fast/dom/SelectorAPI/caseID-strict-expected.txt: Added.
* fast/dom/SelectorAPI/caseID-strict.html: Added.
* fast/dom/SelectorAPI/caseID.html: Added.
2008-07-27 Anatoli Papirovski <apapirovski@mac.com>
Reviewed by Dave Hyatt.
Updated layout CSS2.1 test suite tests related to css parsing:
https://bugs.webkit.org/show_bug.cgi?id=14346
* platform/mac/css2.1/t040105-import-01-b-expected.checksum:
* platform/mac/css2.1/t040105-import-01-b-expected.png:
* platform/mac/css2.1/t040105-import-01-b-expected.txt:
* platform/mac/css2.1/t0402-syntax-05-f-expected.checksum:
* platform/mac/css2.1/t0402-syntax-05-f-expected.png:
* platform/mac/css2.1/t0402-syntax-05-f-expected.txt:
* platform/mac/css2.1/t0402-syntax-06-f-expected.checksum:
* platform/mac/css2.1/t0402-syntax-06-f-expected.png:
* platform/mac/css2.1/t0402-syntax-06-f-expected.txt:
2008-07-26 Mark Rowe <mrowe@apple.com>
Update some layout test results.
* fast/dom/Window/window-properties-expected.txt:
* fast/dom/domListEnumeration-expected.txt:
2008-07-26 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Sam Weinig.
- update test and expected results for attributes added to
HTMLFormElement and HTMLSelectElement.
* fast/dom/domListEnumeration-expected.txt:
* fast/dom/resources/domListEnumeration.js:
2008-07-26 Michelangelo De Simone <m.des@mac.com>
Reviewed by Adele Petersen.
Test suite for the willValidate form controls attribute.
* fast/forms/willvalidate-000-expected.txt: Added.
* fast/forms/willvalidate-000.html: Added.
* fast/forms/willvalidate-001-expected.txt: Added.
* fast/forms/willvalidate-001.html: Added.
* fast/forms/willvalidate-002-expected.txt: Added.
* fast/forms/willvalidate-002.html: Added.
* fast/forms/willvalidate-003-expected.txt: Added.
* fast/forms/willvalidate-003.html: Added.
* fast/forms/willvalidate-004-expected.txt: Added.
* fast/forms/willvalidate-004.html: Added.
* fast/forms/willvalidate-005-expected.txt: Added.
* fast/forms/willvalidate-005.html: Added.
* fast/forms/willvalidate-006-expected.txt: Added.
* fast/forms/willvalidate-006.html: Added.
* fast/forms/willvalidate-007-expected.txt: Added.
* fast/forms/willvalidate-007.html: Added.
* fast/forms/willvalidate-008-expected.txt: Added.
* fast/forms/willvalidate-008.html: Added.
* fast/forms/willvalidate-009-expected.txt: Added.
* fast/forms/willvalidate-009.html: Added.
2008-07-26 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Mark Rowe.
* platform/win/Skipped: Added fast/text/international/bidi-AN-after-empty-run.html
(<rdar://problem/5075790>) and svg/custom/stroke-width-click.svg
(<rdar://problem/5539822>).
* platform/win/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt:
Updated results for the new way path data is dumped after
<http://trac.webkit.org/changeset/34117>.
2008-07-26 Sam Weinig <sam@webkit.org>
Reviewed by Dan Bernstein.
Fix https://bugs.webkit.org/show_bug.cgi?id=20122
<rdar://problem/6089522>
REGRESSION (r35075-r35110): Cannot enlarge images at Apple Store product page
- Additionally, fix some errors introduced in old tests.
* fast/dom/SelectorAPI/dumpNodeList-almost-strict-expected.txt: Added.
* fast/dom/SelectorAPI/dumpNodeList-almost-strict.html: Added.
* fast/dom/SelectorAPI/dumpNodeList-expected.txt:
* fast/dom/SelectorAPI/dumpNodeList.html:
* fast/dom/SelectorAPI/id-fastpath-almost-strict-expected.txt: Added.
* fast/dom/SelectorAPI/id-fastpath-almost-strict.html: Added.
* fast/dom/SelectorAPI/id-fastpath-strict-expected.txt: Added.
* fast/dom/SelectorAPI/id-fastpath-strict.html: Added.
* fast/dom/SelectorAPI/resources/id-fastpath-almost-strict.js: Added.
* fast/dom/SelectorAPI/resources/id-fastpath-strict.js: Added.
* fast/dom/SelectorAPI/resources/id-fastpath.js:
2008-07-26 Dan Bernstein <mitz@apple.com>
- move Leopard-only expected failure results back to mac-leopard; these
are covered by <rdar://problem/5539818> and <rdar://problem/5539820>.
* platform/mac-leopard/http: Added.
* platform/mac-leopard/http/tests: Added.
* platform/mac-leopard/http/tests/security: Copied from platform/mac/http/tests/security.
* platform/mac-leopard/security: Copied from platform/mac/security.
* platform/mac/http/tests/security: Removed.
* platform/mac/http/tests/security/dataURL: Removed.
* platform/mac/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-uppercase-expected.txt: Removed.
* platform/mac/security: Removed.
* platform/mac/security/block-test-expected.txt: Removed.
2008-07-26 Dan Bernstein <mitz@apple.com>
Reviewed by Oliver Hunt.
- clean up expected layout test results
* fast/encoding/idn-security-expected.txt: Replaced with LayoutTests/platform/mac/fast/encoding/idn-security-expected.txt,
which is the version of the results for platforms that have "newer ICU".
* platform/mac-leopard/Skipped: Added svg/custom/stroke-width-click.svg.
* platform/mac-tiger/fast/encoding: Added.
* platform/mac-tiger/fast/encoding/idn-security-expected.txt: Copied from LayoutTests/fast/encoding/idn-security-expected.txt,
as Tiger still needs the "older ICU" version of the results.
* platform/mac/fast/encoding/idn-security-expected.txt: Removed.
* platform/mac/svg/custom/stroke-width-click-expected.checksum: Removed
pixel results for a text-only test.
* platform/mac/svg/custom/stroke-width-click-expected.png: Ditto.
* platform/mac/svg/custom/stroke-width-click-expected.txt: Removed
platform-specific results for a text-only test.
2008-07-26 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Nikolas Zimmermann.
- move platform-independent results back to the generic location
* platform/mac/svg/dom/SVGRectElement/rect-modify-rx-expected.txt: Removed.
* svg/dom/SVGRectElement/rect-modify-rx-expected.txt: Copied from LayoutTests/platform/mac/svg/dom/SVGRectElement/rect-modify-rx-expected.txt.
2008-07-25 Oliver Hunt <oliver@apple.com>
Reviewed by Cameron Zwarich.
Layout test covering assignment to read only properties
across scope boundaries.
* fast/js/const-expected.txt:
* fast/js/resources/const.js:
2008-07-25 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Sam Weinig.
- moved expected results from platform/mac-leopard to platform/mac.
Where the mac baseline differed from the Leopard results, moved the
results from mac to mac-tiger.
2008-07-25 Brady Eidson <beidson@apple.com>
Reviewed by Sam
Test for autocomplete attribute cleanup
* platform/win/Skipped:
* security/set-form-autocomplete-attribute-expected.txt: Added.
* security/set-form-autocomplete-attribute.html: Added.
2008-07-25 Anders Carlsson <andersca@apple.com>
Reviewed by Mitz.
Make the willCacheResponse test more robust.
* http/tests/misc/resources/willCacheResponse-success.html: Added.
* http/tests/misc/willCacheResponse-delegate-callback-expected.txt:
* http/tests/misc/willCacheResponse-delegate-callback.html:
2008-07-25 Dan Bernstein <mitz@apple.com>
Reviewed by Anders Carlsson.
* http/tests/misc/acid3.html: Updated test 77 from acidtests.org. Added
alert()ing the log when the score is less than 100.
2008-07-25 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Brady Eidson.
- add missing pixel results and move the render tree results under the platform directory
* platform/mac/svg/dom/SVGRectElement: Added.
* platform/mac/svg/dom/SVGRectElement/rect-modify-rx-expected.checksum: Added.
* platform/mac/svg/dom/SVGRectElement/rect-modify-rx-expected.png: Added.
* platform/mac/svg/dom/SVGRectElement/rect-modify-rx-expected.txt: Added.
* platform/mac/webarchive: Added.
* platform/mac/webarchive/loading: Added.
* platform/mac/webarchive/loading/cache-expired-subresource-expected.checksum: Added.
* platform/mac/webarchive/loading/cache-expired-subresource-expected.png: Added.
* platform/mac/webarchive/loading/cache-expired-subresource-expected.txt: Added.
* svg/dom/SVGRectElement/rect-modify-rx-expected.txt: Removed.
* webarchive/loading/cache-expired-subresource-expected.txt: Removed.
2008-07-25 chris fleizach <cfleizach@apple.com>
Reviewed by Beth Dakin
<rdar://problem/6084806> AX: REGRESSION: returned line number from TextArea is incorrect
* accessibility/textarea-insertion-point-line-number-expected.txt: Added.
* accessibility/textarea-insertion-point-line-number.html: Added.
* accessibility/textarea-line-for-index-expected.txt: Added.
* accessibility/textarea-line-for-index.html: Added.
2008-07-25 Jacob Refstrup <jacob.refstrup@hp.com>
Reviewed by mitz.
- added test case for float being added in trailing whitespace
of an already full line (with pre-wrap or after-white-space set).
<rdar://problem/5805741> https://bugs.webkit.org/show_bug.cgi?id=17906
* fast/block/float/editable-text-overlapping-float.html: Added.
* platform/mac/fast/block/float/editable-text-overlapping-float-expected.checksum: Added.
* platform/mac/fast/block/float/editable-text-overlapping-float-expected.png: Added.
* platform/mac/fast/block/float/editable-text-overlapping-float-expected.txt: Added.
* platform/qt/fast/block/float/editable-text-overlapping-float-expected.txt: Added.
2008-07-24 David Hyatt <hyatt@apple.com>
Add support for an alternate proposed syntax for CSS variables. This alternate syntax will allow
testers on www-style to try out both versions of the syntax (to help make a decision regarding
which one should be used).
Reviewed by Dan
* fast/css/variables/alternate-syntax: Added.
* fast/css/variables/alternate-syntax/color-hex-test.html: Added.
* fast/css/variables/alternate-syntax/colors-test.html: Added.
* fast/css/variables/alternate-syntax/font-test.html: Added.
* fast/css/variables/alternate-syntax/image-test.html: Added.
* fast/css/variables/alternate-syntax/import-test.html: Added.
* fast/css/variables/alternate-syntax/inline-style-test.html: Added.
* fast/css/variables/alternate-syntax/invalid-variable-test.html: Added.
* fast/css/variables/alternate-syntax/margin-test.html: Added.
* fast/css/variables/alternate-syntax/misplaced-import-test.html: Added.
* fast/css/variables/alternate-syntax/misplaced-variables-test.html: Added.
* fast/css/variables/alternate-syntax/multiple-term-test.html: Added.
* fast/css/variables/alternate-syntax/override-test.html: Added.
* fast/css/variables/alternate-syntax/print-test.html: Added.
* fast/css/variables/alternate-syntax/remove-variable-test.html: Added.
* fast/css/variables/alternate-syntax/resources: Added.
* fast/css/variables/alternate-syntax/resources/bad.css: Added.
* fast/css/variables/alternate-syntax/resources/good.css: Added.
* fast/css/variables/alternate-syntax/resources/listmark.gif: Added.
* fast/css/variables/alternate-syntax/set-variable-test.html: Added.
* fast/css/variables/alternate-syntax/shorthand-test.html: Added.
* fast/css/variables/alternate-syntax/variable-iteration-test.html: Added.
2008-07-24 Oliver Hunt <oliver@apple.com>
Reviewed by Alexey Proskuryakov.
Test cases for regex starting with /=
* fast/js/regexp-divequal-expected.txt: Added.
* fast/js/regexp-divequal.html: Added.
* fast/js/resources/regexp-divequal.js: Added.
2008-07-23 Julien Chaffraix <jchaffraix@webkit.org>
Reviewed by Eric.
Test for bug 19588: CRASH doing open() on destroyed window
https://bugs.webkit.org/show_bug.cgi?id=19588
Test case from Eric Roman.
* fast/frames/crash-removed-iframe-expected.txt: Added.
* fast/frames/crash-removed-iframe.html: Added.
2008-07-23 Dan Bernstein <mitz@apple.com>
Reviewed by Alexey Proskuryakov.
- updated test to cover serializing variable values which are colors in
hex notation
* fast/css/variables/color-hex-test.html:
2008-07-23 Beth Dakin <bdakin@apple.com>
Reviewed by Dan Bernstein.
Tests for <rdar://problem/5997215> display: table-row-group
for :before content causes a crash
* fast/css-generated-content/table-row-group-to-inline.html: Added.
* fast/css-generated-content/table-row-group-with-before.html: Added.
* fast/css-generated-content/table-row-with-before.html: Added.
* fast/css-generated-content/table-with-before.html: Added.
* platform/mac/fast/css-generated-content/table-row-group-to-inline-expected.checksum: Added.
* platform/mac/fast/css-generated-content/table-row-group-to-inline-expected.png: Added.
* platform/mac/fast/css-generated-content/table-row-group-to-inline-expected.txt: Added.
* platform/mac/fast/css-generated-content/table-row-group-with-before-expected.checksum: Added.
* platform/mac/fast/css-generated-content/table-row-group-with-before-expected.png: Added.
* platform/mac/fast/css-generated-content/table-row-group-with-before-expected.txt: Added.
* platform/mac/fast/css-generated-content/table-row-with-before-expected.checksum: Added.
* platform/mac/fast/css-generated-content/table-row-with-before-expected.png: Added.
* platform/mac/fast/css-generated-content/table-row-with-before-expected.txt: Added.
* platform/mac/fast/css-generated-content/table-with-before-expected.checksum: Added.
* platform/mac/fast/css-generated-content/table-with-before-expected.png: Added.
* platform/mac/fast/css-generated-content/table-with-before-expected.txt: Added.
2008-07-23 Oliver Hunt <oliver@apple.com>
Reviewed by Geoff Garen.
Test cases to cover the behaviour of switch statements, to make sure our
fast switch paths have not broken things.
* fast/js/resources/switch-behaviour.js: Added.
* fast/js/switch-behaviour-expected.txt: Added.
* fast/js/switch-behaviour.html: Added.
2008-07-23 Dean Jackson <dino@apple.com>
Reviewed by Dan Bernstein.
Update computed style test for transform to reflect that
we return "none" rather than identity matrix.
* svg/css/getComputedStyle-basic-expected.txt:
2008-07-23 Sam Weinig <sam@webkit.org>
Reviewed by Dan Bernstein.
Remove tiger specific result for toDataURL-supportedTypes.html as it should have the
same results on all platforms.
* platform/mac-tiger/fast/canvas: Removed.
* platform/mac-tiger/fast/canvas/toDataURL-supportedTypes-expected.txt: Removed.
2008-07-22 Sam Weinig <sam@webkit.org>
Reviewed by Mark Rowe.
<rdar://problem/5788451> toDataURL not implemented for Windows (need mapping of MIME type to UTI)
Add additional support for JPEG and GIF for toDataURL encoding canvases.
- Turn on and simplify toDataURL-supportedTypes.html to only test for support of mimeTypes and not
fail due to differences in image encoders.
* fast/canvas/toDataURL-supportedTypes-expected.txt:
* fast/canvas/toDataURL-supportedTypes.html: Copied from fast/canvas/toDataURL-supportedTypes.html-disabled.
* fast/canvas/toDataURL-supportedTypes.html-disabled: Removed.
2008-07-22 Chris Fleizach <cfleizach@apple.com>
Reviewed by Dave Hyatt
<rdar://problem/6004877> internal anchors on this page are not showing up in the AXLinkedUIElements
* accessibility/internal-link-anchors2-expected.txt: Added.
* accessibility/internal-link-anchors2.html: Added.
2008-07-22 Alexey Proskuryakov <ap@webkit.org>
Reviewed by Adam Roben.
<rdar://problem/5955602> WebKit should support charset name x-windows-949
* fast/encoding/char-decoding.html:
* fast/encoding/char-decoding-expected.txt:
Added a test for this name.
2008-07-21 Alexey Proskuryakov <ap@webkit.org>
Reviewed by Dan Bernstein.
https://bugs.webkit.org/show_bug.cgi?id=20117
setBaseAndExtent fails to reverse the current selection
* editing/selection/setBaseAndExtent-revert-selection-expected.txt: Added.
* editing/selection/setBaseAndExtent-revert-selection.html: Added.
2008-07-21 Anders Carlsson <andersca@apple.com>
Reviewed by Geoff.
<rdar://problem/5820667>
CrashTracer: [USER] 3759 crashes in Safari at FrameLoader::activeDocumentLoader const + 6 while canceling plug-in load
* http/tests/plugins/geturlnotify-from-npp-destroystream-expected.txt: Added.
* http/tests/plugins/geturlnotify-from-npp-destroystream.html: Added.
2008-07-21 Rob Buis <buis@kde.org>
Reviewed by Mitz.
Testcase for:
https://bugs.webkit.org/show_bug.cgi?id=19966
CSS variables crash when using hex notation for colors
* fast/css/variables/color-hex-test-expected.txt: Added.
* fast/css/variables/color-hex-test.html: Added.
2008-07-20 Oliver Hunt <oliver@apple.com>
RS=Dan Bernstein.
Whoops, forgot to commit expected output for this test.
* fast/js/exception-expression-offset-expected.txt: Added.
2008-07-20 Nikolas Zimmermann <zimmermann@kde.org>
Reviewed by Oliver.
Fixes: https://bugs.webkit.org/show_bug.cgi?id=12171
Remove manual SVG property <-> XML attribute synchronization in SVGPolyElement.
Added svg/custom/poly-points-attribute-changes.svg (testcase from Rob)
* platform/mac-leopard/svg/custom/poly-points-attribute-changes-expected.checksum: Added.
* platform/mac-leopard/svg/custom/poly-points-attribute-changes-expected.png: Added.
* svg/custom/poly-points-attribute-changes-expected.txt: Added.
* svg/custom/poly-points-attribute-changes.svg: Added.
2008-07-20 Oliver Hunt <oliver@apple.com>
Reviewed by Mark Rowe.
Add layout test to check correctly handling of exceptions in callback by WebCore.
Update existing test results for higher fidelity output.
* fast/dom/NamedNodeMap-setNamedItem-crash-expected.txt:
* fast/js/exceptions-thrown-in-callbacks-expected.txt: Added.
* fast/js/exceptions-thrown-in-callbacks.html: Added.
* fast/xpath/nsresolver-exception-expected.txt:
* fast/xsl/transform-xhr-doc-expected.txt:
* http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write-expected.txt:
* http/tests/security/aboutBlank/xss-DENIED-navigate-opener-javascript-url-expected.txt:
* http/tests/security/aboutBlank/xss-DENIED-set-opener-expected.txt:
* platform/mac/fast/dynamic/015-expected.txt:
* platform/mac/fast/events/updateLayoutForHitTest-expected.txt:
* platform/mac/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt:
* platform/mac/tables/mozilla_expected_failures/dom/appendCells1-expected.txt:
* platform/mac/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt:
* platform/mac/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt:
* platform/mac/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt:
* storage/transaction_callback_exception_crash-expected.txt:
2008-07-19 Oliver Hunt <oliver@apple.com>
Reviewed by Cameron Zwarich.
Update a few tests i filed to correct in the last patch, and add tests for
assignment error position.
* fast/css/font-face-descriptor-multiple-values-parsing-expected.txt:
* fast/js/resources/exception-expression-offset.js:
* http/tests/security/cross-frame-access-call-expected.txt:
* http/tests/security/cross-frame-access-call.html:
* platform/mac/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt:
2008-07-18 Oliver Hunt <oliver@apple.com>
Reviewed by Cameron Zwarich.
Update layout tests for new exception text, and add additional test covering the
expression ranges provided.
* fast/css/resources/font-face-descriptor-multiple-values-parsing.js:
* fast/dom/SelectorAPI/dumpNodeList-expected.txt:
* fast/forms/select-namedItem-expected.txt:
* fast/js/exception-expression-offset.html: Added.
* fast/js/resources/exception-expression-offset.js: Added.
New test covering the offset positions given for exceptions
* fast/xsl/transform-xhr-doc-expected.txt:
* http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write-expected.txt:
* http/tests/security/aboutBlank/xss-DENIED-navigate-opener-javascript-url-expected.txt:
* http/tests/security/aboutBlank/xss-DENIED-set-opener-expected.txt:
* http/tests/security/cross-frame-access-call.html:
* platform/mac/fast/events/updateLayoutForHitTest-expected.txt:
* platform/mac/svg/custom/createelement-expected.txt:
* platform/mac/tables/mozilla/bugs/bug53690-1-expected.txt:
* platform/mac/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt:
2008-07-18 Adele Peterson & Maxime Britto <britto@apple.com>
Reviewed by Adele.
Test for <rdar://problem/6049803> Autoscroll triggered on no scrolling iframes
* ChangeLog:
* fast/events/autoscroll-with-non-scrollable-parent-expected.txt: Added.
* fast/events/autoscroll-with-non-scrollable-parent.html: Added.
* fast/events/resources/big-page-with-input.html: Added.
2008-07-18 Simon Fraser <simon.fraser@apple.com>
Reviewed by Dave Hyatt
getComputedStyle() for -webkit-transform should return
'none' for elements with no renderer, or those with no
transform.
https://bugs.webkit.org/show_bug.cgi?id=20008
* fast/css/computed-style-expected.txt:
* fast/css/computed-style-without-renderer-expected.txt:
2008-07-18 Alexey Proskuryakov <ap@webkit.org>
Update expected results for a recently added test to what is seen when running the
full test suite.
* fast/forms/form-and-frame-interaction-retains-values-expected.txt:
2008-07-17 Geoffrey Garen <ggaren@apple.com>
Reviewed by David Kilzer.
Test for https://bugs.webkit.org/show_bug.cgi?id=20067
Support function.name (Firefox extension)
* fast/js/function-name-expected.txt: Added.
* fast/js/function-name.html: Added.
* fast/js/resources/function-name.js: Added.
2008-07-17 Geoffrey Garen <ggaren@apple.com>
Reviewed by Oliver Hunt.
Test for <rdar://problem/6081636> Functions calls use more temporary
registers than necessary
* fast/js/function-call-register-allocation.html: Added.
* fast/js/function-call-register-allocation-expected.txt: Added.
* fast/js/resources/function-call-register-allocation.js: Added.
2008-07-17 Jacob Refstrup <jacob.refstrup@hp.com>
Reviewed by rwlbuis@gmail.com
- added test case that tests that '@mediall' gets safely skipped
* ChangeLog:
* css2.1/atrule_longest_match-expected.txt: Added.
* css2.1/atrule_longest_match.html: Added.
2008-07-16 Simon Fraser <simon.fraser@apple.com>
Reviewed by Hyatt.
Testcases for opacity transition.
https://bugs.webkit.org/show_bug.cgi?id=20047
* transitions/opacity-transition-zindex-expected.txt: Added.
* transitions/opacity-transition-zindex.html: Added.
2008-07-16 Nikolas Zimmermann <zimmermann@kde.org>
Rubber stamped by Eric.
Update pixel test results for two tests that have been changed.
* platform/mac-leopard/svg/custom/acid3-test-77-expected.checksum:
* platform/mac-leopard/svg/custom/acid3-test-77-expected.png:
* platform/mac-leopard/svg/custom/getSubStringLength-expected.checksum:
* platform/mac-leopard/svg/custom/getSubStringLength-expected.png:
2008-07-16 Nikolas Zimmermann <zimmermann@kde.org>
Reviewed by Anders Carlsson.
Add missing layout test results.
* platform/mac-leopard/svg/custom/selectSubString-expected.checksum: Added.
* platform/mac-leopard/svg/custom/selectSubString-expected.png: Added.
2008-07-15 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Update for refactored accessibility testing code.
* accessibility/aria-describedby-on-input.html:
* accessibility/aria-labelledby-on-input.html:
* accessibility/aria-range-value.html:
* accessibility/aria-range.html:
* accessibility/aria-roles.html:
* accessibility/aria-slider.html:
* accessibility/aria-spinbutton.html:
* accessibility/document-attributes.html:
* accessibility/image-map1.html:
* accessibility/image-map2.html:
* accessibility/internal-link-anchors.html:
* accessibility/radio-button-checkbox-size.html:
* accessibility/radio-button-group-members.html:
2008-07-15 Kevin McCullough <kmccullough@apple.com>
Reviewed by Dan.
<rdar://problem/5620273> REGRESSION: Apparent caching between form
submits twice (on Maconomy) (18401)
* fast/forms/form-and-frame-interaction-retains-values-expected.txt: Added.
* fast/forms/form-and-frame-interaction-retains-values.html: Added.
* fast/forms/resources/form-and-frame-interaction-retains-values-main.html: Added.
* fast/forms/resources/form-and-frame-interaction-retains-values-submit.html: Added.
2008-07-15 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Sam Weinig.
- update results for the addition of the compareDocumentPosition-related constants
* fast/dom/domListEnumeration-expected.txt:
2008-07-15 Dan Bernstein <mitz@apple.com>
Reviewed by Dave Hyatt.
- test for https://bugs.webkit.org/show_bug.cgi?id=19525