Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2010-01-29 Victor Wang <victorw@chromium.org>
Reviewed by darin@apple.com.
Fix the issue that both main frome and iframe are
focused if window.onblur calls window.focus.
https://bugs.webkit.org/show_bug.cgi?id=31692
The problem is caused by the focused frame in FocusController
is messed up if window.onblur calls window.focus:
When user clicks iframe to switch focus from main frame to iframe,
FocusController::setFocusedFrame fires onblur event, which calls
window.focus and then calls setFocusedFrame again to switch back.
This messes up the old focused frame and new focused frame and
leaves the FocusController confused. As a result, controlls
in both main frame and iframe look like get focused.
To fix it, add a flag to FocusController and do no switch the focused
frame when FocusController is in the middle of changing the focused frame.
* fast/events/change-frame-focus-expected.txt: Added.
* fast/events/change-frame-focus.html: Added.
2010-01-28 Jon Honeycutt <jhoneycutt@apple.com>
MSAA: Crash when posting a notification for a detached object
https://bugs.webkit.org/show_bug.cgi?id=34309
<rdar://problem/7409759>
Reviewed by Darin Adler.
* platform/win/accessibility/detached-object-notification-crash-expected.txt: Added.
* platform/win/accessibility/detached-object-notification-crash.html: Added.
2010-01-29 Darin Fisher <darin@chromium.org>
Okayed by Oliver Hunt.
Rollout r53949, r53951 and r54013 due to a Chromium regression that it
causes. Somehow this code change is triggering an endless repaint loop.
https://bugs.webkit.org/show_bug.cgi?id=33808
* platform/mac/fast/backgrounds/size/backgroundSize16-expected.checksum:
* platform/mac/fast/backgrounds/size/backgroundSize16-expected.png:
2010-01-29 Philippe Normand <pnormand@igalia.com>
Unreviewed, build fix.
http/tests/media/video-referer.html fails on mac
https://bugs.webkit.org/show_bug.cgi?id=34331
Skipping the failing test. Requires further investigation.
* platform/mac-leopard/Skipped:
* platform/mac-snowleopard/Skipped:
* platform/mac-tiger/Skipped:
* platform/mac/Skipped:
2010-01-29 Philippe Normand <pnormand@igalia.com>
Reviewed by Gustavo Noronha Silva.
[Gtk] Vimeo HTML5 player doesn't work
https://bugs.webkit.org/show_bug.cgi?id=34327
Test for HTTP Referer checking when playing remote media.
* http/tests/media/resources/setCookieAndReferer.cgi: Added.
* http/tests/media/resources/video-referer-check-referer.php: Added.
* http/tests/media/video-referer-expected.txt: Added.
* http/tests/media/video-referer.html: Added.
2010-01-29 Andras Becsi <abecsi@webkit.org>
Unreviewed.
[Qt] Remove disabled tests from Skiplist. The tests were disabled in r53701.
* platform/qt/Skipped:
-css2.1/t1204-increment-00-c-o.html
-css2.1/t1204-increment-01-c-o.html
-css2.1/t1204-increment-02-c-o.html
-css2.1/t1204-reset-00-c-o.html
-css2.1/t1204-reset-01-c-o.html
-css2.1/t1204-reset-02-c-o.html
2010-01-29 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Timothy Hatcher.
Web Inspector: migrate to tokenizer-based highlighting in the Elements panel.
https://bugs.webkit.org/show_bug.cgi?id=34273
* inspector/syntax-highlight-css-expected.txt:
* inspector/syntax-highlight-css.html:
* inspector/syntax-highlight-javascript-expected.txt:
* inspector/syntax-highlight-javascript.html:
* inspector/syntax-highlight.js:
(frontend_dumpSyntaxHighlight):
2010-01-28 Oliver Hunt <oliver@apple.com>
Reviewed by Gavin Barraclough.
MessageEvent.data should not be repeated deserialised
https://bugs.webkit.org/show_bug.cgi?id=34311
Add test to ensure we get the same value back when accessing event.data multiple times
* fast/dom/Window/window-postmessage-clone.html:
2010-01-28 Hayato Ito <hayato@chromium.org>
Reviewed by Darin Adler.
Change CSS 'page-break-inside' property from inherited one to non-inherited one because CSS specification defines so.
Note: Currently, the 'page-break-inside' property is used only when parsing the CSS. That property is not used when rendering.
https://bugs.webkit.org/show_bug.cgi?id=34195
* fast/css/getComputedStyle/computed-style-page-break-inside-expected.txt: Added.
* fast/css/getComputedStyle/computed-style-page-break-inside.html: Added.
* fast/css/getComputedStyle/script-tests/computed-style-page-break-inside.js: Added.
2010-01-28 Michael Nordman <michaeln@google.com>
Reviewed by Alexey Proskuryakov.
ApplicationCache events should be deferred until after Document onload has fired.
https://bugs.webkit.org/show_bug.cgi?id=29690
* http/tests/appcache/deferred-events-expected.txt: Added.
* http/tests/appcache/deferred-events.html: Added.
* http/tests/appcache/deferred-events-delete-while-raising-expected.txt: Added.
* http/tests/appcache/deferred-events-delete-while-raising.html: Added.
2010-01-28 Alex Milowski <alex@milowski.com>
Reviewed by Eric Seidel.
Updates from CSS change for mathml.css
* platform/mac/mathml/presentation/sub-expected.txt:
* platform/mac/mathml/presentation/sup-expected.txt:
* platform/mac/mathml/presentation/tables-expected.checksum:
* platform/mac/mathml/presentation/tables-expected.png:
* platform/mac/mathml/presentation/tables-expected.txt:
2010-01-28 Gustavo Noronha Silva <gns@gnome.org>
Reviewed by Eric Carlson.
[GTK] Pass cookies to GStreamer
https://bugs.webkit.org/show_bug.cgi?id=34003
Test that cookie is being sent by the media player.
* http/tests/media/resources/setCookie.cgi: Added.
* http/tests/media/resources/video-cookie-check-cookie.php: Added.
* http/tests/media/video-cookie-expected.txt: Added.
* http/tests/media/video-cookie.html: Added.
2010-01-28 Csaba Osztrogonác <ossy@webkit.org>
[Qt] Incorrect small caps vs. normal text handling
https://bugs.webkit.org/show_bug.cgi?id=34286
* platform/qt/Skipped: css2.1/t1505-c524-font-var-00-b.html skipped
2010-01-27 Evan Martin <evan@chromium.org>
Reviewed by David Levin.
[chromium] hebrew vowel marks incorrectly positioned
https://bugs.webkit.org/show_bug.cgi?id=34234
Add a layout test containing some Hebrew vowels.
* fast/text/international/hebrew-vowels.html: Added.
2010-01-28 Dimitri Glazkov <dglazkov@chromium.org>
Unreviewed, trivial baseline update.
Update baseline for "Animated scaling of background-image is too slow"
https://bugs.webkit.org/show_bug.cgi?id=33808
* platform/mac/fast/backgrounds/size/backgroundSize16-expected.checksum:
* platform/mac/fast/backgrounds/size/backgroundSize16-expected.png:
2010-01-28 Adam Barth <abarth@webkit.org>
Reviewed by David Levin.
Remove XSSAuditor false positive for Google Translate
https://bugs.webkit.org/show_bug.cgi?id=34242
Add a test that we allow attackers to inject directly into the href
property of the base tag.
* http/tests/security/xssAuditor/base-href-direct-expected.txt: Added.
* http/tests/security/xssAuditor/base-href-direct.html: Added.
* http/tests/security/xssAuditor/resources/echo-head-base-href-direct.pl: Added.
2010-01-28 Simon Fraser <simon.fraser@apple.com>
Reviewed by Dan Bernstein.
Video can overlap position:fixed element when scrolling
https://bugs.webkit.org/show_bug.cgi?id=32180
Testcase for video overlapping a fixed position element on scroll.
* compositing/geometry/video-fixed-scrolling.html: Added.
* platform/mac/compositing/geometry/video-fixed-scrolling-expected.checksum: Added.
* platform/mac/compositing/geometry/video-fixed-scrolling-expected.png: Added.
* platform/mac/compositing/geometry/video-fixed-scrolling-expected.txt: Added.
2010-01-28 Anton Muhin <antonm@google.com>
Reviewed by Alexey Proskuryakov.
Add layout tests to verify assignment to items of NodeList
https://bugs.webkit.org/show_bug.cgi?id=34213
* fast/dom/NodeList/nodelist-item-assignment-expected.txt: Added.
* fast/dom/NodeList/nodelist-item-assignment.html: Added.
2010-01-28 Ben Murdoch <benm@google.com>
Reviewed by Simon Hausmann.
[Android] [Qt] Touch event page co-ordinates are incorrect when touch is received in an iframe.
https://bugs.webkit.org/show_bug.cgi?id=34162
Update the existing iframe touch event test to also examine the page co-ordinates of the touch that is received.
* fast/events/touch/resources/touch-inside-iframe2.html:
* fast/events/touch/touch-inside-iframe-expected.txt:
* fast/events/touch/touch-inside-iframe.html:
2010-01-28 Xan Lopez <xlopez@igalia.com>
[GTK] Can DnD files to our filechooser widget (<input type="file">)
https://bugs.webkit.org/show_bug.cgi?id=34246
Skip failing test because of this missing feature.
* platform/gtk/Skipped:
2010-01-28 Kent Tamura <tkent@chromium.org>
Reviewed by Darin Fisher.
Remove tests for dates later than 275760-09-13T00:00Z.
https://bugs.webkit.org/show_bug.cgi?id=34240
Date.UTC() of V8 doesn't support such dates though Date.UTC() of
JavaScriptCore does.
* fast/forms/input-valueasnumber-date-expected.txt:
* fast/forms/input-valueasnumber-datetime-expected.txt:
* fast/forms/input-valueasnumber-datetimelocal-expected.txt:
* fast/forms/input-valueasnumber-month-expected.txt:
* fast/forms/script-tests/input-valueasnumber-date.js:
* fast/forms/script-tests/input-valueasnumber-datetime.js:
* fast/forms/script-tests/input-valueasnumber-datetimelocal.js:
* fast/forms/script-tests/input-valueasnumber-month.js:
* platform/win/fast/forms/input-valueasnumber-datetime-expected.txt: Removed.
2010-01-27 Kent Tamura <tkent@chromium.org>
Reviewed by Darin Adler.
rangeOverflow/rangeUnderflow support for type=date
https://bugs.webkit.org/show_bug.cgi?id=34209
* fast/forms/ValidityState-rangeOverflow-date-expected.txt: Added.
* fast/forms/ValidityState-rangeOverflow-date.html: Added.
* fast/forms/ValidityState-rangeUnderflow-date-expected.txt: Added.
* fast/forms/ValidityState-rangeUnderflow-date.html: Added.
* fast/forms/script-tests/ValidityState-rangeOverflow-date.js: Added.
* fast/forms/script-tests/ValidityState-rangeUnderflow-date.js: Added.
2010-01-27 Csaba Osztrogonác <ossy@webkit.org>
[Qt] Skip test introduced in r53972 because of missing eventSender.beginDragWithFiles()
* platform/qt/Skipped: fast/dom/Window/window-postmessage-clone-frames.html skipped.
2010-01-27 Oliver Hunt <oliver@apple.com>
Reviewed by Maciej Stachowiak.
MessageEvent.data should deserialize in the context of the MessageEvent's global object
https://bugs.webkit.org/show_bug.cgi?id=34227
Test that the object returned from postMessage.data is created in the correct context
* fast/dom/Window/resources/window-postmessage-clone-frames-frame.html: Added.
* fast/dom/Window/window-postmessage-clone-frames-expected.txt: Added.
* fast/dom/Window/window-postmessage-clone-frames.html: Added.
2010-01-27 John Abd-El-Malek <jam@chromium.org>
Reviewed by Dimitri Glazkov.
Tests that when a page removes an iframe that sleeps in its unload handler and
terminates its JS execution, the outer page's JS continues running.
https://bugs.webkit.org/show_bug.cgi?id=34226
* fast/dom/Window/slow-unload-handler-expected.txt: Copied from LayoutTests/fast/dom/Window/slow_unload_handler-expected.txt.
* fast/dom/Window/slow-unload-handler-only-frame-is-stopped.html: Added.
* fast/dom/Window/slow-unload-handler-only-frame-is-stopped-expected.txt: Added.
* fast/dom/Window/slow-unload-handler.html: Copied from LayoutTests/fast/dom/Window/slow_unload_handler.html.
* fast/dom/Window/slow_unload_handler-expected.txt: Removed.
* fast/dom/Window/slow_unload_handler.html: Removed.
* platform/gtk/Skipped:
* platform/mac/Skipped:
* platform/qt/Skipped:
* platform/win/Skipped:
2010-01-27 Kent Tamura <tkent@chromium.org>
Reviewed by Darin Adler.
Add valueAsNumber support for type=datetime-local.
https://bugs.webkit.org/show_bug.cgi?id=34200
The test data is equivalent to input-valueasnumber-datetime.html.
The expectation contains two FAIL lines because they check
unimplemented features.
* fast/forms/input-valueasnumber-datetimelocal-expected.txt: Added.
* fast/forms/input-valueasnumber-datetimelocal.html: Added.
* fast/forms/script-tests/input-valueasnumber-datetimelocal.js: Added.
2010-01-27 Brian Weinstein <bweinstein@apple.com>
Rubber-stamped by Adam Roben.
Add platform specific failing Windows results for two recently
added tests. I will comment on their originating bugs saying that
failing results were landed for Windows.
<https://bugs.webkit.org/show_bug.cgi?id=29564>
<https://bugs.webkit.org/show_bug.cgi?id=32696>
* platform/win/fast/css/button-height-expected.txt: Added.
* platform/win/fast/forms/input-valueasnumber-datetime-expected.txt: Added.
2010-01-27 Diego Gonzalez <diego.gonzalez@openbossa.org>
Reviewed by Kenneth Rohde Christiansen.
[Qt] DRT Provide worker thread ability to track counters
https://bugs.webkit.org/show_bug.cgi?id=34221
Implement workerThreadCount() in LayoutTestController of Qt DRT
Tests:
fast/workers/dedicated-worker-lifecycle.html
fast/workers/shared-worker-frame-lifecycle.html
fast/workers/shared-worker-lifecycle.html
fast/workers/worker-lifecycle.html
* platform/qt/Skipped:
2010-01-26 Darin Fisher <darin@chromium.org>
Reviewed by Brady Eidson and David Levin.
Chains of history items representing same-document navigation need to
always remember that association
https://bugs.webkit.org/show_bug.cgi?id=33224
* fast/dom/location-hash-expected.txt:
* fast/dom/location-hash.html: Revert changes from r43274 since
history.back to a reference fragment is now synchronous.
* fast/history/back-forward-is-asynchronous-expected.txt: Removed.
* fast/history/back-forward-is-asynchronous.html: Removed.
This test is no longer valid (revert r43274).
* fast/loader/stateobjects/document-destroyed-navigate-back-expected.txt:
* fast/loader/stateobjects/document-destroyed-navigate-back.html: Revised
test results to match corrected behavior. Also removed the redundant
history.back() call, which helps make the test a bit easier to understand.
2010-01-27 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Laszlo Gombos.
[Qt] Enable websockets support in QtWebKit
https://bugs.webkit.org/show_bug.cgi?id=34180
Remove websockets tests from skiplist.
* platform/qt/Skipped:
2010-01-27 Mads Ager <ager@chromium.org>
Reviewed by Dimitri Glazkov.
[V8] Support getting integer-named properties using indexing notation on document object
https://bugs.webkit.org/show_bug.cgi?id=34211
* fast/dom/HTMLDocument/get-iframe-with-integer-name-expected.txt: Added.
* fast/dom/HTMLDocument/get-iframe-with-integer-name.html: Added.
2010-01-27 Kinuko Yasuda <kinuko@chromium.org>
Reviewed by Eric Seidel.
Remove fast/events/keydown-numpad-keys.html from gtk's Skipped list.
https://bugs.webkit.org/show_bug.cgi?id=28247
* platform/gtk/Skipped:
2010-01-27 Tony Chang <tony@chromium.org>
Reviewed by Eric Seidel.
Fix a crash when trying to indent a block element that was contained
in a list. This was happening because enclosingBlock() in
htmlediting.cpp can return the current the same Node when a block
element (like an <hr> or a <table>) is passed in. This causes
the indent command to think that it is not in a list item.
Work around this by checking to see if enclosingBlock returned the
same Node.
https://bugs.webkit.org/show_bug.cgi?id=32390
* editing/execCommand/indent-block-in-list-expected.txt: Added.
* editing/execCommand/indent-block-in-list.html: Added.
2010-01-27 Csaba Osztrogonác <ossy@webkit.org>
[Qt] Qt port doesn't need platform dependent expected file anymore
for editing/pasteboard/paste-noscript-xhtml.html from r53873.
* platform/qt/editing/pasteboard/paste-noscript-xhtml-expected.txt: Removed.
2010-01-27 Csaba Osztrogonác <ossy@webkit.org>
[Qt] fast/backgrounds/animated-svg-as-background.html make fast/backgrounds/svg-as-background-5.html crash.
https://bugs.webkit.org/show_bug.cgi?id=34202
* platform/qt/Skipped: fast/backgrounds/animated-svg-as-background.html enabled because bug rolled out by r53912.
2010-01-27 Matt Perry <mpcomplete@chromium.org>
Reviewed by Eric Seidel.
Fix a bug where dispatchDocumentElementAvailable was fired for fragment parsing on XML documents.
https://bugs.webkit.org/show_bug.cgi?id=33920
* userscripts/resources: Added.
* userscripts/resources/blank.xhtml: Added.
* userscripts/script-not-run-for-fragments-expected.txt: Added.
* userscripts/script-not-run-for-fragments.html: Added.
* userscripts/script-run-at-start-expected.txt: Added.
* userscripts/script-run-at-start.html: Added.
2010-01-27 Csaba Osztrogonác <ossy@webkit.org>
[Qt] fast/backgrounds/animated-svg-as-background.html make fast/backgrounds/svg-as-background-5.html crash.
https://bugs.webkit.org/show_bug.cgi?id=34202
* platform/qt/Skipped: fast/backgrounds/animated-svg-as-background.html skipped until fix.
2010-01-25 Philippe Normand <pnormand@igalia.com>
Reviewed by Eric Seidel.
[Gtk] media/video-reverse-play-duration.html fails on and off on Gtk buildbots
https://bugs.webkit.org/show_bug.cgi?id=34086
* platform/gtk/Skipped: Unskip fixed test.
2010-01-26 Daniel Bates <dbates@webkit.org>
Unreviewed. Made a minor typo when I added the test case fast/css/button-height.html
to the GTK Skipped file. In changeset 53900, I added test "fast/css/button-height.htm"
to the GTK Skipped file instead of "fast/css/button-height.html". See bug #33936
for more details.
* platform/gtk/Skipped:
2010-01-26 Csaba Osztrogonác <ossy@webkit.org>
[Qt] Failing tests after r53895 skipped.
https://bugs.webkit.org/show_bug.cgi?id=34167
* platform/qt/Skipped:
- http/tests/history/redirect-301.pl
- http/tests/history/redirect-302.pl
- http/tests/history/redirect-303.pl
- http/tests/history/redirect-307.pl
2010-01-26 Csaba Osztrogonác <ossy@webkit.org>
Unreviewed trivial fix.
* platform/qt/editing/pasteboard/paste-noscript-xhtml-expected.txt: updated after r53873.
2010-01-26 Daniel Bates <dbates@webkit.org>
Unreviewed. Updated expected failing results for table-percent-height.html
to reflect one pixel difference between the results generated by the Qt bot
and my machine. Added failing test fast/css/button-height.html to GTK Skipped
file as we need to look into this. See bug #33936 for more details.
* platform/gtk/Skipped: Added failing test fast/css/button-height.html.
* platform/qt/fast/replaced/table-percent-height-expected.txt: Updated result.
2010-01-26 Daniel Bates <dbates@webkit.org>
Reviewed by Tor Arne Vestbø.
https://bugs.webkit.org/show_bug.cgi?id=29564
Tests that the user-specified height for <button>- and <input type="button">-
elements are honored, if appropriate for the platform and context.
* fast/css/button-height-expected.txt: Added.
* fast/css/button-height.html: Added.
* fast/replaced/table-percent-height-expected.txt: Added notice about failing tests
in Windows ports.
* fast/replaced/table-percent-height.html: Ditto.
* platform/qt/fast/replaced/table-percent-height-expected.txt: Added.
2010-01-26 Diego Gonzalez <diego.gonzalez@openbossa.org>
Reviewed by Kenneth Rohde Christiansen.
[Qt] DRT WebHistory support
https://bugs.webkit.org/show_bug.cgi?id=34167
* platform/qt/Skipped:
2010-01-26 Kent Tamura <tkent@chromium.org>
Reviewed by Darin Adler.
HTMLInputElement::valueAsNumber support except type=datetime-local.
https://bugs.webkit.org/show_bug.cgi?id=32696
input-valueasnumber-datetime-expected.txt and
input-valueasnumber-time-expected.txt have FAIL lines because they
test unimplemented features.
* fast/forms/input-valueasnumber-date-expected.txt: Added.
* fast/forms/input-valueasnumber-date.html: Added.
* fast/forms/input-valueasnumber-datetime-expected.txt: Added.
* fast/forms/input-valueasnumber-datetime.html: Added.
* fast/forms/input-valueasnumber-month-expected.txt: Added.
* fast/forms/input-valueasnumber-month.html: Added.
* fast/forms/input-valueasnumber-number-expected.txt: Added.
* fast/forms/input-valueasnumber-number.html: Added.
* fast/forms/input-valueasnumber-range-expected.txt: Added.
* fast/forms/input-valueasnumber-range.html: Added.
* fast/forms/input-valueasnumber-time-expected.txt: Added.
* fast/forms/input-valueasnumber-time.html: Added.
* fast/forms/input-valueasnumber-unsupported-expected.txt: Added.
* fast/forms/input-valueasnumber-unsupported.html: Added.
* fast/forms/input-valueasnumber-week-expected.txt: Added.
* fast/forms/input-valueasnumber-week.html: Added.
* fast/forms/script-tests/input-valueasnumber-date.js: Added.
* fast/forms/script-tests/input-valueasnumber-datetime.js: Added.
* fast/forms/script-tests/input-valueasnumber-month.js: Added.
* fast/forms/script-tests/input-valueasnumber-number.js: Added.
* fast/forms/script-tests/input-valueasnumber-range.js: Added.
* fast/forms/script-tests/input-valueasnumber-time.js: Added.
* fast/forms/script-tests/input-valueasnumber-unsupported.js: Added.
* fast/forms/script-tests/input-valueasnumber-week.js: Added.
2010-01-26 Kent Tamura <tkent@chromium.org>
Reviewed by Eric Seidel.
[Win] Add modifiers parameter support to Windows DumpRenderTree
https://bugs.webkit.org/show_bug.cgi?id=34068
Remove listbox-deselect-scroll.html and listbox-selectio-2.html
from Skipped. We improved their portability and Windows DRT now
havs modifiers parameter of eventSender.mouseDown() and
eventSender.mouseUp().
* platform/win/Skipped:
2010-01-26 Adele Peterson <adele@apple.com>
Reviewed by Darin Adler.
Test for <rdar://problem/7169464> REGRESSION (r47444): PLT is 1% slower due to implementation of :valid and :invalid CSS selectors
https://bugs.webkit.org/show_bug.cgi?id=34029
* fast/css/pseudo-valid-dynamic-expected.txt: Added.
* fast/css/pseudo-valid-dynamic.html: Added.
2010-01-26 Fumitoshi Ukai <ukai@chromium.org>
Reviewed by Alexey Proskuryakov.
Fix url used in websocket-event-target.html
https://bugs.webkit.org/show_bug.cgi?id=34066
* websocket/tests/script-tests/websocket-event-target.js:
2010-01-26 Enrica Casucci <enrica@apple.com>
Reviewed by Jon Honeycutt.
Fixing for failing test on qt.
https://bugs.webkit.org/show_bug.cgi?id=34148
Changed url in anchor tag to avoid the additional trailing slash.
* editing/pasteboard/paste-noscript-xhtml-expected.txt:
* editing/resources/htmlcontent.html:
2010-01-26 Dmitry Titov <dimich@chromium.org>
Reviewed by David Levin.
Avoid reloading iframe on re-parenting between documents.
https://bugs.webkit.org/show_bug.cgi?id=32848
* fast/frames/iframe-reparenting-expected.txt: Added.
* fast/frames/iframe-reparenting.html: Added.
* fast/frames/resources/iframe-reparenting-frame1.html: Added.
* fast/frames/resources/iframe-reparenting-frame2.html: Added.
* fast/frames/resources/iframe-reparenting-iframe-content.html: Added.
2010-01-26 Adam Roben <aroben@apple.com>
No review, rolling out r53861.
http://trac.webkit.org/changeset/53861
https://bugs.webkit.org/show_bug.cgi?id=33224
Caused 2 regression tests to fail.
* fast/loader/stateobjects/document-destroyed-navigate-back-expected.txt:
* fast/loader/stateobjects/document-destroyed-navigate-back.html:
2010-01-26 Dan Bernstein <mitz@apple.com>
Reviewed by Beth Dakin.
<rdar://problem/7576663> Crash caused by anonymous list item
https://bugs.webkit.org/show_bug.cgi?id=34183
* fast/lists/anonymous-items.html: Added.
* platform/mac/fast/lists/anonymous-items-expected.checksum: Added.
* platform/mac/fast/lists/anonymous-items-expected.png: Added.
* platform/mac/fast/lists/anonymous-items-expected.txt: Added.
2010-01-26 Chris Fleizach <cfleizach@apple.com>
Another attempt to get this test to pass for GTK.
Add ability for image maps to be focused via tabbing
https://bugs.webkit.org/show_bug.cgi?id=17513
* fast/events/tab-imagemap-expected.txt:
* fast/events/tab-imagemap.html:
2010-01-25 Darin Fisher <darin@chromium.org>
Reviewed by Brady Eidson.
Chains of history items representing same-document navigation need to
always remember that association
https://bugs.webkit.org/show_bug.cgi?id=33224
* fast/loader/stateobjects/document-destroyed-navigate-back-expected.txt:
* fast/loader/stateobjects/document-destroyed-navigate-back.html: Revised
test results to match corrected behavior. Also removed the redundant
history.back() call, which helps make the test a bit easier to understand.
2010-01-26 Chris Fleizach <cfleizach@apple.com>
One more attempt to get GTK version to pass.
Add ability for image maps to be focused via tabbing
https://bugs.webkit.org/show_bug.cgi?id=17513
* fast/events/tab-imagemap-expected.txt:
* fast/events/tab-imagemap.html:
2010-01-26 Chris Fleizach <cfleizach@apple.com>
Unreviewed.
Attempt to make this test pass on GTK.
Add ability for image maps to be focused via tabbing
https://bugs.webkit.org/show_bug.cgi?id=17513
* fast/events/tab-imagemap.html:
2010-01-26 Chris Fleizach <cfleizach@apple.com>
Reviewed by Darin Adler.
Add ability for image maps to be focused via tabbing
https://bugs.webkit.org/show_bug.cgi?id=17513
* fast/events/resources/tabindex-focus-blur-all.js:
(test):
(testProgrammaticFocus):
* fast/events/tab-imagemap-expected.txt: Added.
* fast/events/tab-imagemap.html: Added.
* fast/events/tabindex-focus-blur-all-expected.txt:
2010-01-26 Simon Hausmann <simon.hausmann@nokia.com>
Reviewed by Holger Freyther.
REGRESSION(r53835): Fix editing/pasteboard/paste-noscript-xhtml.xhtml
https://bugs.webkit.org/show_bug.cgi?id=34157
Add Qt specific result for this test that differs from the cross-platform
result in only one character: In htmlcontent.html the href attribute value
is http://www.cnn.com, which somehow becomes http://www.cnn.com/ in the cross
platform result. With the Qt xml parser that attribute is somehow preserved
and so our result does not have the trailing slash.
* platform/qt/editing/pasteboard/paste-noscript-xhtml-expected.txt: Added.
2010-01-26 Kent Tamura <tkent@chromium.org>
Reviewed by Shinichiro Hamaji.
Convert textarea-rows-cols.html to dumpAsText()
https://bugs.webkit.org/show_bug.cgi?id=34074
* fast/forms/script-tests/textarea-rows-cols.js: Added.
* fast/forms/textarea-rows-cols-expected.txt: Added.
* fast/forms/textarea-rows-cols.html:
* platform/mac/fast/forms/textarea-rows-cols-expected.checksum: Removed.
* platform/mac/fast/forms/textarea-rows-cols-expected.png: Removed.
* platform/mac/fast/forms/textarea-rows-cols-expected.txt: Removed.
* platform/qt/fast/forms/textarea-rows-cols-expected.txt: Removed.
* platform/win/fast/forms/textarea-rows-cols-expected.txt: Removed.
2010-01-22 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Darin Adler.
Make storage events match the spec.
https://bugs.webkit.org/show_bug.cgi?id=30546
This meat of the patch I just posted is very simple. It's just making events
asynchronous, not posting them to the frame that generated them, passing a null
for the key when issuing a clear storage event, and making the events
non-cancelable/non-bubbleable...all of which are clearly stated in the spec.
The asynchronous and not posting to the frame that generated them forced me to
re-write all the layout tests that dealt with storage events. There's a lot of
code there, but I tried to be fairly careful to ensure that test coverage did
not shrink in any area.
* storage/domstorage/complex-values-expected.txt:
* storage/domstorage/documentURI-expected.txt: Removed.
* storage/domstorage/documentURI.html: Removed.
* storage/domstorage/events: Added.
* storage/domstorage/events/basic-body-attribute-expected.txt: Added.
* storage/domstorage/events/basic-body-attribute.html: Added.
* storage/domstorage/events/basic-expected.txt: Added.
* storage/domstorage/events/basic-setattribute-expected.txt: Added.
* storage/domstorage/events/basic-setattribute.html: Added.
* storage/domstorage/events/basic.html: Added.
* storage/domstorage/events/case-sensitive-expected.txt: Added.
* storage/domstorage/events/case-sensitive.html: Added.
* storage/domstorage/events/documentURI-expected.txt: Added.
* storage/domstorage/events/documentURI.html: Added.
* storage/domstorage/events/resources: Added.
* storage/domstorage/events/resources/body-event-handler.html: Added.
* storage/domstorage/events/resources/eventTestHarness.js: Added.
* storage/domstorage/events/resources/setattribute-event-handler.html: Added.
* storage/domstorage/events/script-tests: Added.
* storage/domstorage/events/script-tests/TEMPLATE.html: Copied from LayoutTests/storage/domstorage/script-tests/TEMPLATE.html.
* storage/domstorage/events/script-tests/basic-body-attribute.js: Added.
* storage/domstorage/events/script-tests/basic-setattribute.js: Added.
* storage/domstorage/events/script-tests/basic.js: Added.
* storage/domstorage/events/script-tests/case-sensitive.js: Added.
* storage/domstorage/events/script-tests/documentURI.js: Added.
* storage/domstorage/localstorage/iframe-events-expected.txt: Removed.
* storage/domstorage/localstorage/iframe-events.html: Removed.
* storage/domstorage/localstorage/index-get-and-set-expected.txt:
* storage/domstorage/localstorage/index-get-and-set.html:
* storage/domstorage/localstorage/onstorage-attribute-markup-expected.txt: Removed.
* storage/domstorage/localstorage/onstorage-attribute-markup.html: Removed.
* storage/domstorage/localstorage/onstorage-attribute-setattribute-expected.txt: Removed.
* storage/domstorage/localstorage/onstorage-attribute-setattribute.html: Removed.
* storage/domstorage/localstorage/onstorage-attribute-setwindow-expected.txt: Removed.
* storage/domstorage/localstorage/onstorage-attribute-setwindow.html: Removed.
* storage/domstorage/localstorage/simple-events-expected.txt: Removed.
* storage/domstorage/localstorage/simple-events.html: Removed.
* storage/domstorage/script-tests/complex-values.js:
* storage/domstorage/script-tests/documentURI.js: Removed.
* storage/domstorage/sessionstorage/iframe-events-expected.txt: Removed.
* storage/domstorage/sessionstorage/iframe-events.html: Removed.
* storage/domstorage/sessionstorage/index-get-and-set-expected.txt:
* storage/domstorage/sessionstorage/index-get-and-set.html:
* storage/domstorage/sessionstorage/onstorage-attribute-markup-expected.txt: Removed.
* storage/domstorage/sessionstorage/onstorage-attribute-markup.html: Removed.
* storage/domstorage/sessionstorage/onstorage-attribute-setattribute-expected.txt: Removed.
* storage/domstorage/sessionstorage/onstorage-attribute-setattribute.html: Removed.
* storage/domstorage/sessionstorage/onstorage-attribute-setwindow-expected.txt: Removed.
* storage/domstorage/sessionstorage/onstorage-attribute-setwindow.html: Removed.
* storage/domstorage/sessionstorage/simple-events-expected.txt: Removed.
* storage/domstorage/sessionstorage/simple-events.html: Removed.
* storage/domstorage/window-attributes-exist-expected.txt:
* storage/domstorage/window-attributes-exist.html:
2010-01-25 Dan Bernstein <mitz@apple.com>
Reviewed by Darin Adler.
<rdar://problem/7573493> Error with line break inside ?» pair of characters.
https://bugs.webkit.org/show_bug.cgi?id=17475
* fast/text/line-break-after-question-mark-expected.txt: Added.
* fast/text/line-break-after-question-mark.html: Added.
* fast/text/script-tests/line-break-after-question-mark.js: Added.
():
* platform/mac/tables/mozilla/bugs/bug6674-expected.checksum: Updated.
* platform/mac/tables/mozilla/bugs/bug6674-expected.png: Updated.
* platform/mac/tables/mozilla/bugs/bug6674-expected.txt: Updated.
2010-01-25 Peter Kasting <pkasting@google.com>
Reviewed by Dan Bernstein.
Rebaseline pixel tests affected by changes in scrollbar thumb size.
https://bugs.webkit.org/show_bug.cgi?id=34049
* platform/mac/compositing/overflow/overflow-scroll-expected.checksum:
* platform/mac/compositing/overflow/overflow-scroll-expected.png:
* platform/mac/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.checksum:
* platform/mac/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png:
* platform/mac/fast/body-propagation/overflow/002-expected.checksum:
* platform/mac/fast/body-propagation/overflow/002-expected.png:
* platform/mac/fast/body-propagation/overflow/002-xhtml-expected.checksum:
* platform/mac/fast/body-propagation/overflow/002-xhtml-expected.png:
* platform/mac/fast/body-propagation/overflow/003-declarative-expected.checksum:
* platform/mac/fast/body-propagation/overflow/003-declarative-expected.png:
* platform/mac/fast/body-propagation/overflow/003-expected.checksum:
* platform/mac/fast/body-propagation/overflow/003-expected.png:
* platform/mac/fast/body-propagation/overflow/003-xhtml-expected.checksum:
* platform/mac/fast/body-propagation/overflow/003-xhtml-expected.png:
* platform/mac/fast/body-propagation/overflow/004-declarative-expected.checksum:
* platform/mac/fast/body-propagation/overflow/004-declarative-expected.png:
* platform/mac/fast/body-propagation/overflow/004-expected.checksum:
* platform/mac/fast/body-propagation/overflow/004-expected.png:
* platform/mac/fast/body-propagation/overflow/004-xhtml-expected.checksum:
* platform/mac/fast/body-propagation/overflow/004-xhtml-expected.png:
* platform/mac/fast/body-propagation/overflow/007-declarative-expected.checksum:
* platform/mac/fast/body-propagation/overflow/007-declarative-expected.png:
* platform/mac/fast/body-propagation/overflow/007-expected.checksum:
* platform/mac/fast/body-propagation/overflow/007-expected.png:
* platform/mac/fast/body-propagation/overflow/007-xhtml-expected.checksum:
* platform/mac/fast/body-propagation/overflow/007-xhtml-expected.png:
* platform/mac/fast/clip/014-expected.checksum:
* platform/mac/fast/clip/014-expected.png:
* platform/mac/fast/forms/basic-textareas-expected.checksum:
* platform/mac/fast/forms/basic-textareas-expected.png:
* platform/mac/fast/forms/form-element-geometry-expected.checksum:
* platform/mac/fast/forms/form-element-geometry-expected.png:
* platform/mac/fast/forms/listbox-hit-test-zoomed-expected.checksum:
* platform/mac/fast/forms/listbox-hit-test-zoomed-expected.png:
* platform/mac/fast/forms/textarea-scroll-height-expected.checksum:
* platform/mac/fast/forms/textarea-scroll-height-expected.png:
* platform/mac/fast/inline-block/tricky-baseline-expected.checksum:
* platform/mac/fast/inline-block/tricky-baseline-expected.png:
* platform/mac/fast/layers/scroll-rect-to-visible-expected.checksum:
* platform/mac/fast/layers/scroll-rect-to-visible-expected.png:
* platform/mac/fast/overflow/002-expected.checksum:
* platform/mac/fast/overflow/002-expected.png:
* platform/mac/fast/overflow/003-expected.checksum:
* platform/mac/fast/overflow/003-expected.png:
* platform/mac/fast/overflow/005-expected.checksum:
* platform/mac/fast/overflow/005-expected.png:
* platform/mac/fast/overflow/007-expected.checksum:
* platform/mac/fast/overflow/007-expected.png:
* platform/mac/fast/overflow/008-expected.checksum:
* platform/mac/fast/overflow/008-expected.png:
* platform/mac/fast/overflow/childFocusRingClip-expected.checksum:
* platform/mac/fast/overflow/childFocusRingClip-expected.png:
* platform/mac/fast/overflow/float-in-relpositioned-expected.checksum:
* platform/mac/fast/overflow/float-in-relpositioned-expected.png:
* platform/mac/fast/overflow/image-selection-highlight-expected.checksum:
* platform/mac/fast/overflow/image-selection-highlight-expected.png:
* platform/mac/fast/overflow/overflow-auto-position-absolute-expected.checksum:
* platform/mac/fast/overflow/overflow-auto-position-absolute-expected.png:
* platform/mac/fast/overflow/overflow-rtl-expected.checksum:
* platform/mac/fast/overflow/overflow-rtl-expected.png:
* platform/mac/fast/overflow/overflow-stacking-expected.checksum:
* platform/mac/fast/overflow/overflow-stacking-expected.png:
* platform/mac/fast/overflow/overflow-text-hit-testing-expected.checksum:
* platform/mac/fast/overflow/overflow-text-hit-testing-expected.png:
* platform/mac/fast/overflow/overflow-with-local-background-attachment-expected.checksum:
* platform/mac/fast/overflow/overflow-with-local-background-attachment-expected.png:
* platform/mac/fast/overflow/overflow-x-y-expected.checksum:
* platform/mac/fast/overflow/overflow-x-y-expected.png:
* platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.checksum:
* platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png:
* platform/mac/fast/overflow/scrollbar-position-update-expected.checksum:
* platform/mac/fast/overflow/scrollbar-position-update-expected.png:
* platform/mac/fast/overflow/table-overflow-float-expected.checksum:
* platform/mac/fast/overflow/table-overflow-float-expected.png:
* platform/mac/fast/repaint/block-selection-gap-stale-cache-2-expected.checksum:
* platform/mac/fast/repaint/block-selection-gap-stale-cache-2-expected.png:
* platform/mac/fast/repaint/layout-state-only-positioned-expected.checksum:
* platform/mac/fast/repaint/layout-state-only-positioned-expected.png:
* platform/mac/fast/repaint/selection-gap-overflow-scroll-expected.checksum:
* platform/mac/fast/repaint/selection-gap-overflow-scroll-expected.png:
* platform/mac/fast/table/edge-offsets-expected.checksum:
* platform/mac/fast/table/edge-offsets-expected.png:
* platform/mac/scrollbars/key-window-not-first-responder-expected.checksum:
* platform/mac/scrollbars/key-window-not-first-responder-expected.png:
* platform/mac/svg/custom/invisible-text-after-scrolling-expected.checksum:
* platform/mac/svg/custom/invisible-text-after-scrolling-expected.png:
* platform/mac/tables/mozilla/bugs/bug149275-1-expected.checksum:
* platform/mac/tables/mozilla/bugs/bug149275-1-expected.png:
2010-01-25 Enrica Casucci <enrica@apple.com>
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=34148
* editing/pasteboard/paste-noscript-xhtml-expected.txt: Added.
* editing/pasteboard/paste-noscript-xhtml.xhtml: Added.
* editing/resources/htmlcontent.html: Added.
2010-01-25 Kent Tamura <tkent@chromium.org>
Reviewed by Darin Adler.
Improve portability of select-item-background-clip.html
https://bugs.webkit.org/show_bug.cgi?id=34072
* fast/forms/select-item-background-clip.html:
Calculate the pixel height at runtime.
2010-01-25 Dimitri Glazkov <dglazkov@chromium.org>
Unreviewed, trivial baseline updates.
-webkit-gradient slows down scrolling when page has horizontal scrollbar
https://bugs.webkit.org/show_bug.cgi?id=19650
Update pixel baselines. They changed slightly after http://trac.webkit.org/changeset/53318/
landed.
* platform/mac/fast/gradients/border-image-gradient-expected.checksum:
* platform/mac/fast/gradients/border-image-gradient-expected.png:
* platform/mac/fast/gradients/border-image-gradient-sides-and-corners-expected.checksum:
* platform/mac/fast/gradients/border-image-gradient-sides-and-corners-expected.png:
* platform/mac/fast/gradients/simple-gradients-expected.checksum:
* platform/mac/fast/gradients/simple-gradients-expected.png:
2010-01-25 Alexey Proskuryakov <ap@apple.com>
Reviewed by Geoffrey Garen.
https://bugs.webkit.org/show_bug.cgi?id=34076
An image remains accessible via form.property syntax after being removed from document.
* fast/forms/removed-image-as-property-expected.txt: Added.
* fast/forms/removed-image-as-property.html: Added.
* fast/forms/reparented-image-as-property-expected.txt: Added.
* fast/forms/reparented-image-as-property.html: Added.
2010-01-25 Yury Semikhatsky <yurys@chromium.org>
Unreviewed. Add new inspector test added in r53807 to skip
list on qt platform.
* platform/qt/Skipped:
2010-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Timothy Hatcher.
Test that Web Inspector doesn't change methods declared by the inspected
page.