forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
9725 lines (5997 loc) · 323 KB
/
ChangeLog
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
2021-11-23 Adrian Perez de Castro <aperez@igalia.com>
[WPE][GTK] Allow enabling JPEG-XL support at build time
https://bugs.webkit.org/show_bug.cgi?id=233325
Reviewed by Michael Catanzaro.
Adds a new USE_JPEGXL build option, disabled by default for release builds and
enabled for developer builds.
* Source/cmake/OptionsGTK.cmake: Add USE_JPEGXL build option.
* Source/cmake/OptionsWPE.cmake: Ditto.
2021-11-22 Alejandro G. Castro <alex@igalia.com>
Add alexg's GitHub username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=233425
Unreviewed.
* metadata/contributors.json:
2021-11-19 Angelos Oikonomopoulos <angelos@igalia.com>
[JSC] Workaround for failing mips tests
https://bugs.webkit.org/show_bug.cgi?id=233359
Reviewed by Adrian Perez de Castro.
Add a compiler flag on GCC+mips to work around a code generation bug
resulting in SIGBUS. This only manifests when running 32-bit mips code
on mips64 hardware (which the buildbots do).
* Source/cmake/WebKitCompilerFlags.cmake:
2021-11-18 Yoshiaki Jitsukawa <yoshiaki.jitsukawa@sony.com>
Implement JPEG XL image decoder using libjxl
https://bugs.webkit.org/show_bug.cgi?id=233113
Reviewed by Michael Catanzaro.
This patch introduces the initial version of JPEG XL image decoder.
JPEG XL is a royalty-free raster-graphics file format that supports
both lossy and lossless compression and is experimentally supported by
Chrome, FireFox, and Edge.
The image decoder implemented by this patch uses libjxl, a reference
implementation of JPEG XL decoder (and encoder). JPEG XL animations
will be supported later.
* Source/cmake/FindJPEGXL.cmake: Added.
* Source/cmake/OptionsWinCairo.cmake: Enable JPEG XL support if
libjxl is available.
2021-11-17 Patrick Angle <pangle@apple.com>
Update my (Patrick Angle's) status to reviewer
https://bugs.webkit.org/show_bug.cgi?id=233270
Unreviewed.
Update my status to reviewer, as well as drive-by updates to set my github name and update the area of
expertise.
* metadata/contributors.json:
2021-11-17 Chris Lord <clord@igalia.com>
Add Chris Lord's GitHub username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=233254
Unreviewed
* metadata/contributors.json:
2021-11-16 Alex Atwater <alexandera_22@apple.com>
Add my GitHub username to contributors.json
Reviewed by Jonathan Bedard
* metadata/contributors.json:
2021-11-15 Nikolas Zimmermann <nzimmermann@igalia.com>
Add my GitHub username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=233122
Unreviewed.
* metadata/contributors.json:
2021-11-13 Myles C. Maxfield <mmaxfield@apple.com>
[WebGPU] Add WebGPU.xcodeproj to WebKit.xcworkspace
https://bugs.webkit.org/show_bug.cgi?id=233078
Reviewed by Dean Jackson.
Mechanical change. When building WebGPU becomes required,
people using this workspace will need it.
* WebKit.xcworkspace/contents.xcworkspacedata:
2021-11-12 Don Olmstead <don.olmstead@sony.com>
[WinCairo] Add Little-CMS support
https://bugs.webkit.org/show_bug.cgi?id=233024
Reviewed by Michael Catanzaro.
Search for LCMS2 and if its present turn it on for WinCairo.
* Source/cmake/OptionsWinCairo.cmake:
2021-11-11 Michael Catanzaro <mcatanzaro@gnome.org>
-Warray-bounds, -Wstringop-truncation, -Wstringop-overread warnings in Packed.h
https://bugs.webkit.org/show_bug.cgi?id=226557
<rdar://problem/79103658>
Reviewed by Darin Adler.
Suppress -Wstringop-overread for all of WebKit when building with GCC 11 or newer. This is
an unfortunate way to deal with false positives that we ought to be able to silence in just
a few places, but when warnings do not respect pragmas we have few alternatives, and trying
to remove derived sources from the unified build in order to build them with special flags
is just not worth the effort.
This is part of a larger trend of oversensitive warnings from GCC 11.
* Source/cmake/WebKitCompilerFlags.cmake:
2021-11-10 Kimmo Kinnunen <kkinnunen@apple.com>
Coding style for inner namespaces is should be simplified to not indented
https://bugs.webkit.org/show_bug.cgi?id=232073
Reviewed by Antti Koivisto.
* .clang-format:
Do not indent contents of inner namespaces, match current code.
2021-11-09 J Pascoe <j_pascoe@apple.com>
Add j_pascoe to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232904
<rdar://problem/85222703>
Unreviewed.
* metadata/contributors.json:
2021-11-08 Myles C. Maxfield <mmaxfield@apple.com>
Make WebGPU.xcodeproj and WebGPU.framework
https://bugs.webkit.org/show_bug.cgi?id=231661
Reviewed by Dean Jackson and Robin Morisset.
* Source/Makefile:
2021-11-08 Peng Liu <peng.liu6@apple.com>
Update Peng Liu's contributor status to reviewer
https://bugs.webkit.org/show_bug.cgi?id=232859
Unreviewed.
* metadata/contributors.json:
2021-11-08 Cameron McCormack <heycam@apple.com>
Update my status to reviewer
https://bugs.webkit.org/show_bug.cgi?id=232854
Unreviewed.
* metadata/contributors.json:
2021-11-04 Roy Reapor <rreapor@apple.com>
Update rreapor's status in contributors.json.
https://bugs.webkit.org/show_bug.cgi?id=232685
Reviewed by Aakash Jain.
* metadata/contributors.json:
2021-11-04 Diego Pino Garcia <dpino@igalia.com>
Disable MEDIA_SESSION_PLAYLIST in WebKitGTK and WPE
https://bugs.webkit.org/show_bug.cgi?id=232694
Reviewed by Žan Doberšek.
Since the feature depends on MEDIA_SESSION_COORDINATOR, whichs is
disabled, this feature should also be disabled and not experimental.
* Source/cmake/OptionsGTK.cmake:
* Source/cmake/OptionsWPE.cmake:
2021-11-03 Pablo Saavedra <psaavedra@igalia.com>
[cmake] Check "cortex" string in the CMAKE_SYSTEM_PROCESSOR for defining WTF_CPU_* vars
https://bugs.webkit.org/show_bug.cgi?id=232623
Reviewed by Carlos Alberto Lopez Perez.
* Source/cmake/WebKitCommon.cmake:
2021-11-01 Don Olmstead <don.olmstead@sony.com>
[Curl] Explicitly disable libcurl's internal cookie support
https://bugs.webkit.org/show_bug.cgi?id=232586
Reviewed by Ross Kirsling.
Setting CURLOPT_COOKIEFILE to NULL to disable the cookie engine was not added till 7.77.0
so require that version or later.
* Source/cmake/OptionsPlayStation.cmake:
* Source/cmake/OptionsWinCairo.cmake:
2021-11-01 David Kilzer <ddkilzer@apple.com>
Add ddkilzer's GitHub name to contributors.json
<https://webkit.org/b/232587>
Reviewed by Jonathan Bedard.
* metadata/contributors.json:
2021-11-01 Robert Jenner <Jenner@apple.com>
Add my GitHub name (robert-jenner) to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232581
Reviewed by Jonathan Bedard.
* metadata/contributors.json:
2021-11-01 Beth Dakin <bdakin@apple.com>
Add my GitHub name to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232495
Reviewed by Alexey Proskuryakov.
* metadata/contributors.json:
2021-11-01 BJ Burg <bburg@apple.com>
Add bburg's GitHub username to contributors.json.
Unreviewed.
* metadata/contributors.json:
Also, canonicalize a recent change.
2021-10-31 Fujii Hironori <Hironori.Fujii@sony.com>
[WinCairo] New GraphicsLayer for GPU process mode
https://bugs.webkit.org/show_bug.cgi?id=228308
Reviewed by Don Olmstead.
* Source/cmake/OptionsWinCairo.cmake:
2021-10-29 Oriol Brufau <obrufau@igalia.com>
Add Aakash's GitHub username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-29 Oriol Brufau <obrufau@igalia.com>
Add obrufau's GitHub username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-28 Myles C. Maxfield <mmaxfield@apple.com>
The space glyph in the Filicudi font is not substituted by shaping in the complex text codepath, thereby breaking the visual effect of the font
https://bugs.webkit.org/show_bug.cgi?id=232293
Reviewed by Darin Adler.
Big thanks to Ulrike Rausch and Frank Grießhammer for contributing the test font!!!
* metadata/contributors.json:
2021-10-28 Aditya Keerthi <akeerthi@apple.com>
Add Aditya Keerthi as a reviewer
https://bugs.webkit.org/show_bug.cgi?id=232450
Unreviewed.
* metadata/contributors.json:
Add myself as a reviewer, and add GitHub username.
2021-10-27 Roy Reapor <rreapor@apple.com>
Add rreapor's GitHub username to contributors.json.
https://bugs.webkit.org/show_bug.cgi?id=232385
Reviewed by Aakash Jain.
* metadata/contributors.json:
2021-10-26 Adrian Perez de Castro <aperez@igalia.com>
Unreviewed. [WPE] Bump version numbers
* Source/cmake/OptionsWPE.cmake:
2021-10-26 Adrian Perez de Castro <aperez@igalia.com>
Multiple build issues with ENABLE_VIDEO=OFF
https://bugs.webkit.org/show_bug.cgi?id=232264
Reviewed by Carlos Garcia Campos.
* Source/cmake/WebKitFeatures.cmake: Make ENABLE_MEDIA_SESSION depend on ENABLE_VIDEO.
2021-10-25 Jonathan Bedard <jbedard@apple.com>
Add GitHub usernames for bedison and darinadler
Unreviewed.
* metadata/contributors.json: Add beidson and darinadler.
2021-10-25 Zan Dobersek <zdobersek@igalia.com>
Add zdobersek's GitHub name to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232234
Unreviewed.
* metadata/contributors.json:
2021-10-25 Martin Robinson <mrobinson@webkit.org>
Add mrobinson's GitHub name to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232232
Unreviewed.
* metadata/contributors.json:
2021-10-24 Alexey Shvayka <ashvayka@apple.com>
Add my GitHub username to contributors.json and update credentials
Unreviewed.
* metadata/contributors.json:
2021-10-22 Guillaume Emont <guijemont@igalia.com>
Add Guillaume Emont's github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232144
Unreviewed.
* metadata/contributors.json:
2021-10-22 Pablo Correa Gómez <ablocorrea@hotmail.com>
Enable logging under non-systemd linux distros
https://bugs.webkit.org/show_bug.cgi?id=232080
Reviewed by Michael Catanzaro.
* Source/cmake/FindJournald.cmake: Renamed from Source/cmake/FindSystemd.cmake.
* Source/cmake/OptionsGTK.cmake: Replace USE_SYSTEMD for
ENABLE_JOURNALD_LOG
* Source/cmake/OptionsWPE.cmake: Replace USE_SYSTEMD for
ENABLE_JOURNALD_LOG
2021-10-21 Eric Carlson <eric.carlson@apple.com>
Add GitHub name to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=232131
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-21 Chris Lord <clord@igalia.com>
[WPE][GTK] Enable smooth scrolling by default
https://bugs.webkit.org/show_bug.cgi?id=220512
Reviewed by Carlos Garcia Campos.
Build smooth scrolling by default on WPE to match other platforms.
* Source/cmake/OptionsWPE.cmake:
2021-10-20 Kimmo Kinnunen <kkinnunen@apple.com>
Add ObjC as supported .clang-format language
https://bugs.webkit.org/show_bug.cgi?id=230401
Reviewed by Jonathan Bedard.
Add ObjC and change few properties useful
for ObjC formatting.
* .clang-format:
2021-10-20 Carlos Garcia Campos <cgarcia@igalia.com>
[WPE] Reenable -fvisibility=hidden and -fvisibility-inlines-hidden
https://bugs.webkit.org/show_bug.cgi?id=222860
Reviewed by Don Olmstead.
* Source/cmake/OptionsWPE.cmake:
2021-10-19 Ross Kirsling <ross.kirsling@sony.com>
[CMake] Align OptionsMac with Xcode build
https://bugs.webkit.org/show_bug.cgi?id=231982
Reviewed by Don Olmstead.
* Source/cmake/OptionsMac.cmake:
Ensure that the listed options (1) are not redundant with the defaults in WebKitFeatures.cmake and
(2) match the options for the Xcode build as closely as possible.
* Source/cmake/WebKitFeatures.cmake:
Remove an outdated feature, ENABLE_APPLE_PAY_SESSION_V9,
and let ENABLE_MAC_GESTURE_EVENTS be handled by PlatformEnable, since it depends on USE_APPLE_INTERNAL_SDK.
2021-10-19 Tyler Wilcock <tyler_w@apple.com>
Add AX team GitHub usernames to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231966
Reviewed by Chris Fleizach.
* metadata/contributors.json:
Add Chris Fleizach's and Andres Gonzalez's GitHub usernames. Add Tyler
Wilcock as a contributor. Run validate-committer-lists --canonicalize
to fix some style issues.
2021-10-19 Sergio Villar Senin <svillar@igalia.com>
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-18 Ms2ger <Ms2ger@igalia.com>
Add my github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231893
Unreviewed.
* metadata/contributors.json:
2021-10-18 Rob Buis <rbuis@igalia.com>
Add my github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231889
Reviewed by Manuel Rego Casasnovas.
* metadata/contributors.json:
2021-10-18 Xan Lopez <xan@igalia.com>
Add my github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231887
Unreviewed.
* metadata/contributors.json: add my github username.
2021-10-18 Miguel Gomez <magomez@igalia.com>
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-16 Tetsuharu Ohzeki <tetsuharu.ohzeki@gmail.com>
Add github username for tetsuharuohzeki to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231864
Reviewed by Fujii Hironori.
* metadata/contributors.json:
2021-10-16 Angelos Oikonomopoulos <angelos@igalia.com>
Add my github username to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231861
Unreviewed.
* metadata/contributors.json:
2021-10-16 Caitlin Potter <caitp@igalia.com>
Add github username for myself
https://bugs.webkit.org/show_bug.cgi?id=231857
Reviewed by Yusuke Suzuki.
* metadata/contributors.json:
2021-10-15 Basuke Suzuki <basuke.suzuki@sony.com>
Add flag to turn off Iso heap
https://bugs.webkit.org/show_bug.cgi?id=231823
Reviewed by Yusuke Suzuki.
Added USE_ISO_MALLOC feature flags which is on by default for most platforms.
* Source/cmake/OptionsPlayStation.cmake:
* Source/cmake/WebKitFeatures.cmake:
2021-10-15 Ross Kirsling <ross.kirsling@sony.com>
Realize Mac CMake build of WebCore and WebKit
https://bugs.webkit.org/show_bug.cgi?id=231749
Reviewed by Alex Christensen.
* Source/cmake/OptionsMac.cmake:
* Source/cmake/WebKitMacros.cmake:
2021-10-15 Jonathan Bedard <jbedard@apple.com>
Add github username for Dewei Zhu
Unreviewed.
* metadata/contributors.json:
2021-10-15 Andres Gonzalez <andresg_22@apple.com>
Change Andres Gonzalez status to reviewer.
https://bugs.webkit.org/show_bug.cgi?id=231738
Reviewed by Chris Fleizach.
* metadata/contributors.json:
2021-10-15 Carlos Garcia Campos <cgarcia@igalia.com>
Unreviewed. Fix GTK build with ubuntu 18.04
GLib version bump in r284152 was too high for ubuntu 18.04 even though it followed our dependencies policy.
* Source/cmake/OptionsGTK.cmake:
* Source/cmake/OptionsWPE.cmake:
2021-10-14 Ali Juma <ajuma@chromium.org>
Add my GitHub username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-14 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Add my GitHub username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-14 Commit Queue <commit-queue@webkit.org>
Unreviewed, reverting r283878.
https://bugs.webkit.org/show_bug.cgi?id=231735
It
Reverted changeset:
"[WPE] Reenable -fvisibility=hidden and -fvisibility-inlines-
hidden"
https://bugs.webkit.org/show_bug.cgi?id=222860
https://commits.webkit.org/r283878
2021-10-14 Carlos Garcia Campos <cgarcia@igalia.com>
[GTK][WPE] Bump GLib version to 2.58.3
https://bugs.webkit.org/show_bug.cgi?id=231726
Reviewed by Philippe Normand.
* Source/cmake/OptionsGTK.cmake:
* Source/cmake/OptionsWPE.cmake:
2021-10-14 Enrique Ocaña González <eocanha@igalia.com>
[contributors.json] Add eocanha github account and canonicalize
https://bugs.webkit.org/show_bug.cgi?id=231729
Unreviewed.
Added eocanha github user to contributors.json and canonicalize the file to make the style checker happy.
* metadata/contributors.json:
2021-10-13 Tim Horton <timothy_horton@apple.com>
Add my GitHub username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-13 Carlos Garcia Campos <cgarcia@igalia.com>
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-12 Alex Christensen <achristensen@webkit.org>
Add webpushd executable
https://bugs.webkit.org/show_bug.cgi?id=231650
Reviewed by Brady Eidson.
* WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2021-10-12 Basuke Suzuki <basuke.suzuki@sony.com>
[PlayStation] Enable RemoteInspector by default
https://bugs.webkit.org/show_bug.cgi?id=231599
Reviewed by Fujii Hironori.
It was treated as experimental feature but we've depended on this feature in various situation.
* Source/cmake/OptionsPlayStation.cmake:
2021-10-12 Philippe Normand <pnormand@igalia.com>
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-11 Patrick Griffis <pgriffis@igalia.com>
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-11 Sam Weinig <weinig@apple.com>
Add my github username and keep my expertise where it is because, while not up to date, it is fun
Unreviewed.
* metadata/contributors.json:
2021-10-11 Theresa O'Connor <hober@apple.com>
Various updates to my contributors.json entry.
Unreviewed.
* metadata/contributors.json:
2021-10-11 Devin Rousso <drousso@apple.com>
Add my github and update my expertise
Unreviewed.
* metadata/contributors.json:
2021-10-10 Noam Rosenthal <noam@webkit.org>
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-11 Emilio Cobos Álvarez <emilio@crisal.io>
Add my GitHub username to contributors.json.
https://bugs.webkit.org/show_bug.cgi?id=231507
Unreviewed.
* metadata/contributors.json:
2021-10-11 Claudio Saavedra <csaavedra@igalia.com>
Add my github username to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-11 Diego Pino Garcia <dpino@igalia.com>
Add GitHub username for Diego Pino Garcia
Unreviewed.
* metadata/contributors.json:
2021-10-10 Pablo Saavedra <psaavedra@igalia.com>
Add GitHub username for Pablo Saavedra
Unreviewed.
* metadata/contributors.json:
2021-10-10 Xabier Rodriguez Calvar <calvaris@igalia.com>
Unreviewed. Add GitHub username for Xabier Rodriguez Calvar
* metadata/contributors.json:
2021-10-10 Cameron McCormack <heycam@apple.com>
Add GitHub account to contributors.json
https://bugs.webkit.org/show_bug.cgi?id=231497
Unreviewed.
* metadata/contributors.json:
2021-10-10 Michael Catanzaro <mcatanzaro@gnome.org>
[WPE] Reenable -fvisibility=hidden and -fvisibility-inlines-hidden
https://bugs.webkit.org/show_bug.cgi?id=222860
Reviewed by Philippe Normand.
* Source/cmake/OptionsWPE.cmake:
2021-10-10 Adrian Perez de Castro <aperez@igalia.com>
Unreviewed. Add GitHub username for Adrian Perez de Castro
While at it, run "validate-committer-lists --canonicalize".
* metadata/contributors.json:
2021-10-09 Alberto Garcia <berto@igalia.com>
Add GitHub account to contributors.json
Unreviewed.
* metadata/contributors.json:
2021-10-09 Jean-Yves Avenard <jya@apple.com>
Unreviewed, add my GitHub username
* metadata/contributors.json:
2021-10-09 Manuel Rego Casasnovas <rego@igalia.com>
Add GitHub account to contributors.json and update expertise field
https://bugs.webkit.org/show_bug.cgi?id=231476
Unreviewed.
* metadata/contributors.json:
2021-10-08 Joonghun Park <jh718.park@samsung.com>
Unreviewed. Add github username for Joonghun Park.
* metadata/contributors.json:
2021-10-08 Jonathan Bedard <jbedard@apple.com>
Add github username for Michael Catanzaro
Unreviewed.
* metadata/contributors.json:
2021-10-08 Kenneth Russell <kbr@chromium.org>
Add github username for kbr
https://bugs.webkit.org/show_bug.cgi?id=231462
Reviewed by Dean Jackson.
* metadata/contributors.json:
2021-10-08 Ross Kirsling <ross.kirsling@sony.com>
Unreviewed, add GitHub usernames for Sony contributors.
* metadata/contributors.json:
2021-10-08 Yusuke Suzuki <ysuzuki@apple.com>
Unreviewed, add my GitHub username
* metadata/contributors.json:
2021-10-08 Tim Nguyen <ntim@apple.com>
[contributors.json] Add more Github usernames
https://bugs.webkit.org/show_bug.cgi?id=231453
Reviewed by Jonathan Bedard.
* metadata/contributors.json:
2021-10-08 Jonathan Bedard <jbedard@apple.com>
[contributors.json] Support GitHub usernames
https://bugs.webkit.org/show_bug.cgi?id=231400
<rdar://problem/84005266>
Reviewed by Dewei Zhu.
* metadata/contributors.json: Add some GitHub usernames.
2021-10-07 Carlos Garcia Campos <cgarcia@igalia.com>
[GTK] Reenable -fvisibility=hidden
https://bugs.webkit.org/show_bug.cgi?id=181916
Reviewed by Michael Catanzaro.
* Source/cmake/OptionsGTK.cmake:
2021-10-06 Chris Dumez <cdumez@apple.com>
Unreviewed, mark Kimmo Kinnunen as reviewer in the right contributors.json file this time.
* metadata/contributors.json:
2021-10-03 Basuke Suzuki <basuke.suzuki@sony.com>
Enable release log to stderr
https://bugs.webkit.org/show_bug.cgi?id=230725
<rdar://problem/83740529>
Reviewed by Michael Catanzaro.
Introduced new flags, USE_LOG_STDERR for release logging to stderr.
* Source/cmake/WebKitFeatures.cmake:
2021-10-02 Philippe Normand <pnormand@igalia.com>
[GTK][WPE] Enable bwrap launcher build on bots
https://bugs.webkit.org/show_bug.cgi?id=230969
Reviewed by Michael Catanzaro.
* Source/cmake/OptionsGTK.cmake:
* Source/cmake/OptionsWPE.cmake:
2021-09-30 Yusuke Suzuki <ysuzuki@apple.com>
Upgrade GCC requirement to 8.3.0
https://bugs.webkit.org/show_bug.cgi?id=231042
Reviewed by Darin Adler.
Based on the roadmap[1], we upgrade GCC requirement to 8.3.0, which is default GCC in Debian one-old-stable (buster) right now.
This paves the way to enabling some of useful C++20 features, e.g. default initializer for bitfields.
[1]: https://trac.webkit.org/wiki/WebKitGTK/GCCRequirement
* Source/cmake/WebKitCommon.cmake:
2021-09-29 Kimmo Kinnunen <kkinnunen@apple.com>
MediaStream canvas.captureStream() fails for WebGL
https://bugs.webkit.org/show_bug.cgi?id=230613
<rdar://82307293>
Reviewed by Youenn Fablet.
Add a manual test to interact with media stream
captureStream() behavior until the implementation is
testable.
* ManualTests/mediastream/mediastream-canvas-to-video.html: Added.
2021-09-28 Carlos Garcia Campos <cgarcia@igalia.com>
[GTK][WPE] Bump libsoup3 version to 3.0.0
https://bugs.webkit.org/show_bug.cgi?id=230601
Reviewed by Philippe Normand.
* Source/cmake/OptionsGTK.cmake:
* Source/cmake/OptionsWPE.cmake:
2021-09-23 Fujii Hironori <Hironori.Fujii@sony.com>
[MSVC] The "/Zc:lambda" switch is recommended to use the new lambda processor.
https://bugs.webkit.org/show_bug.cgi?id=226070
Reviewed by Ross Kirsling.
Visual Studio 16.5 added the "/Zc:lambda" switch for the better
C++ conformance, but it had a compiler crashing bug. Visual Studio
16.9 fixed the bug.
* Source/cmake/OptionsMSVC.cmake: Added /Zc:lambda for Visual
Studio 16.9 or later. I will remove the MSVC_VERSION check after
AppleWin bots will upgrade MSVC.
2021-09-17 Angelos Oikonomopoulos <angelos@igalia.com>
Unbreak GCC_OFFLINEASM_SOURCE_MAP when LTO is in use
https://bugs.webkit.org/show_bug.cgi?id=230061
<rdar://problem/83166173>
Reviewed by Michael Catanzaro.
* Source/cmake/OptionsCommon.cmake:
Re-enable GCC_OFFLINEASM_SOURCE_MAP.
2021-09-17 Carlos Garcia Campos <cgarcia@igalia.com>
Unreviewed. [GTK] Bump version numbers
* Source/cmake/OptionsGTK.cmake:
2021-09-17 Martin Robinson <mrobinson@webkit.org>
Add Martin Robinson as a reviewer
https://bugs.webkit.org/show_bug.cgi?id=230392
Unreviewed.
* metadata/contributors.json: Add myself as a reviewer and update my specializations.
2021-09-17 Carlos Garcia Campos <cgarcia@igalia.com>
[GTK][a11y] Add a build option to enable ATSPI
https://bugs.webkit.org/show_bug.cgi?id=230254
Reviewed by Adrian Perez de Castro.
Add USE_ATSPI build option that disables ATK and enables isolated tree.
* Source/cmake/OptionsGTK.cmake:
2021-09-16 Philip Chimento <pchimento@igalia.com>
Fixes for build-webkit --minimal
https://bugs.webkit.org/show_bug.cgi?id=229780
Reviewed by Fujii Hironori.
Remove ENABLE_RESIZE_OBSERVER build-time option. This option is
quite broken if you try to disable it.
* Source/cmake/OptionsFTW.cmake:
* Source/cmake/OptionsMac.cmake:
* Source/cmake/WebKitFeatures.cmake:
2021-09-15 Philip Chimento <pchimento@igalia.com>
Fixes for build-webkit --minimal
https://bugs.webkit.org/show_bug.cgi?id=229780
Reviewed by Fujii Hironori.