-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
1308 lines (770 loc) · 82 KB
/
geckodriver.log
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
1627329061106 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofile772QZq"
<jemalloc>: (malloc) Error initializing arena
out of memory: 0x0000000000000030 bytes requested
1627842525252 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileDMZMEG"
1627842525669 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileDMZMEG\\search.json.mozlz4", (void 0)))
1627842527398 Marionette INFO Listening on port 50932
1627842527507 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1627843131120 Marionette INFO Stopped listening on port 50932
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627844063707 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofilevDX2AP"
1627844066802 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofilevDX2AP\\search.json.mozlz4", (void 0)))
1627844068293 Marionette INFO Listening on port 51120
1627844068642 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627844075152 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: https://cdn.engage.com/chat/1.0.27/app.js, line 1: SyntaxError: expected expression, got ':'
Hit MOZ_CRASH([unhandlable oom] Failed not allocate new chunk during GC) at /builds/worker/checkouts/gecko/js/src/vm/JSContext.cpp:1191
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#01: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#02: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#03: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#04: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#05: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#06: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#07: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#08: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#09: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#10: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#11: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#12: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#13: ??? (???:???)
### ERROR: SymLoadModule64: Íåäîñòàòî÷íî ðåñóðñîâ ïàìÿòè äëÿ îáðàáîòêè ýòîé êîìàíäû.
#14: ??? (???:???)
#15: workerlz4_compress[C:\Program Files\Mozilla Firefox\xul.dll +0xd9b9be]
#16: workerlz4_compress[C:\Program Files\Mozilla Firefox\xul.dll +0xd9c07a]
#17: workerlz4_compress[C:\Program Files\Mozilla Firefox\xul.dll +0xda0d42]
#18: XRE_GetBootstrap[C:\Program Files\Mozilla Firefox\xul.dll +0x41b35]
#19: soundtouch::SoundTouch::numChannels[C:\Program Files\Mozilla Firefox\xul.dll +0x122aede]
#20: soundtouch::SoundTouch::numChannels[C:\Program Files\Mozilla Firefox\xul.dll +0x120351f]
#21: XRE_GetBootstrap[C:\Program Files\Mozilla Firefox\xul.dll +0x3f65e]
#22: XRE_GetBootstrap[C:\Program Files\Mozilla Firefox\xul.dll +0x3c0f18]
#23: XRE_GetBootstrap[C:\Program Files\Mozilla Firefox\xul.dll +0x3bfb5f]
#24: soundtouch::SoundTouch::operator=[C:\Program Files\Mozilla Firefox\xul.dll +0x3a775eb]
#25: soundtouch::SoundTouch::numChannels[C:\Program Files\Mozilla Firefox\xul.dll +0x120351f]
#26: XRE_GetBootstrap[C:\Program Files\Mozilla Firefox\xul.dll +0x3f65e]
#27: soundtouch::SoundTouch::operator=[C:\Program Files\Mozilla Firefox\xul.dll +0x3a770cb]
#28: Ordinal0[C:\Program Files\Mozilla Firefox\firefox.exe +0x1352]
#29: TargetNtUnmapViewOfSection[C:\Program Files\Mozilla Firefox\firefox.exe +0x4c518]
#30: BaseThreadInitThunk[C:\Windows\System32\KERNEL32.DLL +0x17974]
#31: ???[C:\Windows\SYSTEM32\ntdll.dll +0x5a2f1]
A content process crashed and MOZ_CRASHREPORTER_SHUTDOWN is set, shutting down
[Parent 14128, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
[Parent 14128, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
1627844076333 Marionette INFO Stopped listening on port 51120
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627844336917 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofile04G39n"
1627844337223 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofile04G39n\\search.json.mozlz4", (void 0)))
1627844338654 Marionette INFO Listening on port 51216
1627844339056 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627844346419 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
JavaScript error: https://www.rishonlezion.muni.il/_layouts/15/core.js?rev=Pt2pWkGwtsMtalLrua3moA%3D%3DTAG0, line 1: SyntaxError: expected expression, got '}'
JavaScript error: , line 0: uncaught exception: out of memory
out of memory: 0x00000000000001E0 bytes requested
out of memory: 0x0000000000002000 bytes requested
Exiting due to channel error.
Exiting due to channel error.
1627844981875 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileX62DES"
1627844982170 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileX62DES\\search.json.mozlz4", (void 0)))
1627844983556 Marionette INFO Listening on port 51422
uncaught exception: out of memory
A content process crashed and MOZ_CRASHREPORTER_SHUTDOWN is set, shutting down
[Parent 13648, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
1627844983948 Marionette INFO Stopped listening on port 51422
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627845005196 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileBZhjc6"
1627845005501 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileBZhjc6\\search.json.mozlz4", (void 0)))
1627845006877 Marionette INFO Listening on port 51453
Hit MOZ_CRASH([unhandlable oom] js::wasm::Init) at /builds/worker/checkouts/gecko/js/src/vm/JSContext.cpp:1191
[GFX1-]: DCompositionSurface::BeginDraw failed: 0x8007000e
[GFX1-]: Fallback WR to SW-WR
#01: soundtouch::SoundTouch::operator=[C:\Program Files\Mozilla Firefox\xul.dll +0x3c08a46]
#02: XRE_GetBootstrap[C:\Program Files\Mozilla Firefox\xul.dll +0x23293]
#03: XRE_GetBootstrap[C:\Program Files\Mozilla Firefox\xul.dll +0x22c61]
#04: XRE_GetBootstrap[C:\Program Files\Mozilla Firefox\xul.dll +0x1ce9b]
#05: soundtouch::SoundTouch::operator=[C:\Program Files\Mozilla Firefox\xul.dll +0x3a76a02]
#06: soundtouch::SoundTouch::numChannels[C:\Program Files\Mozilla Firefox\xul.dll +0x122da7f]
#07: soundtouch::SoundTouch::operator=[C:\Program Files\Mozilla Firefox\xul.dll +0x29e9096]
#08: soundtouch::SoundTouch::operator=[C:\Program Files\Mozilla Firefox\xul.dll +0x3a77007]
#09: Ordinal0[C:\Program Files\Mozilla Firefox\firefox.exe +0x1352]
#10: TargetNtUnmapViewOfSection[C:\Program Files\Mozilla Firefox\firefox.exe +0x4c518]
#11: ???[C:\Windows\System32\KERNEL32.DLL +0x17974]
#12: ???[C:\Windows\SYSTEM32\ntdll.dll +0x5a2f1]
[GFX1-]: [D3D11] create swap chain failed: 0x8007000e, 0
[GFX1-]: Failed to initialize CompositorD3D11 for SWGL: FEATURE_FAILURE_D3D11_SWAP_CHAIN
A content process crashed and MOZ_CRASHREPORTER_SHUTDOWN is set, shutting down
[Parent 8112, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
1627845007266 Marionette INFO Stopped listening on port 51453
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627845031123 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofilepVXnPQ"
1627845031416 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofilepVXnPQ\\search.json.mozlz4", (void 0)))
1627845032759 Marionette INFO Listening on port 51516
1627845033275 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627845039660 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627845339870 Marionette INFO Stopped listening on port 51516
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627847141497 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileW4iyyO"
1627847141792 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileW4iyyO\\search.json.mozlz4", (void 0)))
1627847143117 Marionette INFO Listening on port 51945
1627847143142 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627847153369 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627847305628 Marionette INFO Stopped listening on port 51945
1627847592453 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofile5Mjfit"
1627847592755 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofile5Mjfit\\search.json.mozlz4", (void 0)))
1627847594159 Marionette INFO Listening on port 52169
1627847594625 Marionette WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
JavaScript error: chrome://marionette/content/driver.js, line 2346: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]
1627847594783 Marionette INFO Stopped listening on port 52169
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627847869814 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileLo8d9D"
1627847870106 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
out of memory: 0x000000000000FFF0 bytes requested
Exiting due to channel error.
1627848089046 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofilesSbFkn"
1627848089335 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofilesSbFkn\\search.json.mozlz4", (void 0)))
JavaScript error: resource:///modules/BrowserGlue.jsm, line 3845: NS_ERROR_FILE_NOT_FOUND
out of memory: 0x0000000000000400 bytes requested
out of memory: 0x00000000000002F0 bytes requested
console.log: "RemoteSettingsWorker error: UnknownError: IndexedDB: execute() The operation failed for reasons unrelated to the database itself and not covered by any other error code."
out of memory: 0x0000000000000298 bytes requested
Exiting due to channel error.
1627848289453 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofilejabZf3"
1627848289753 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofilejabZf3\\search.json.mozlz4", (void 0)))
1627848291077 Marionette INFO Listening on port 52433
1627848291100 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627848297681 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627848434709 Marionette INFO Stopped listening on port 52433
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
rs\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileqgo1tZ"
1627848433523 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileqgo1tZ\\search.json.mozlz4", (void 0)))
1627848435055 Marionette INFO Listening on port 52531
1627848435345 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627848442317 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627848573450 Marionette INFO Stopped listening on port 52531
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627848890447 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileHzoCMb"
1627848890737 Marionette INFO Marionette enabled
uncaught exception: out of memory
out of memory: 0x00000000000002A0 bytes requested
1627848981635 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileq4P8Y4"
1627848981922 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
out of memory: 0x0000000000054F60 bytes requested
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
[GFX1-]: Failed as lost WebRenderBridgeChild.
###!!! [Child][MessageChannel] Error: (msgtype=0xAA0026,name=PWebRenderBridge::Msg_Shutdown) Channel error: cannot send/recv
###!!! [Child][MessageChannel::SendAndWait] Error: (msgtype=0x360015,name=PCompositorBridge::Msg_WillClose) Channel error: cannot send/recv
[GFX1-]: Fallback WR to SW-WR
###!!! [Parent][MessageChannel] Error: (msgtype=0x53000C,name=PGPU::Msg_UpdateVar) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0xAA0026,name=PWebRenderBridge::Msg_Shutdown) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x20012,name=PAPZInputBridge::Msg___delete__) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
[GFX1-]: Rece
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
ive IPC clos
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
e with reason=Abnorma
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
lShutdown
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0xD,name=PAPZ::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel::SendAndWait] Error: (msgtype=0x360015,name=PCompositorBridge::Msg_WillClose) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0xAA0026,name=PWebRenderBridge::Msg_Shutdown) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x20012,name=PAPZInputBridge::Msg___delete__) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0xD,name=PAPZ::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel::SendAndWait] Error: (msgtype=0x360015,name=PCompositorBridge::Msg_WillClose) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x370001,name=PCompositorManager::Msg_PCompositorBridgeConstructor) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x36000B,name=PCompositorBridge::Msg_PCompositorWidgetConstructor) Channel error: cannot send/recv
[GFX1-]: Fallback (SW-)WR to Basic
###!!! [Parent][MessageChannel] Error: (msgtype=0x53000C,name=PGPU::Msg_UpdateVar) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x53000C,name=PGPU::Msg_UpdateVar) Channel error: cannot send/recv
[GFX1-]: Failed to create remote compositor
###!!! [Parent][MessageChannel] Error: (msgtype=0x53000C,name=PGPU::Msg_UpdateVar) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x53001C,name=PGPU::Msg_ShutdownVR) Channel error: cannot send/recv
[GFX1-]: Compositors might be mixed (5,1)
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileq4P8Y4\\search.json.mozlz4", (void 0)))
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchSyncMessage] Error: PCompositorBridge::Msg_NotifyChildRecreated Processing error: message was deserialized, but the handler returned false (indicating failure)
###!!! [Child][MessageChannel] Error: (msgtype=0xAA0006,name=PWebRenderBridge::Msg_SetDisplayList) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0xAA0008,name=PWebRenderBridge::Msg_SetFocusTarget) Channel error: cannot send/recv
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchSyncMessage] Error: PCompositorBridge::Msg_NotifyChildRecreated Processing error: message was deserialized, but the handler returned false (indicating failure)
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 1954: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
out of memory: 0x000000000000072C bytes requested
out of memory: 0x000000000000C410 bytes requested
Exiting due to channel error.
Exiting due to channel error.
1627849016437 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileDJFX54"
1627849016730 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileDJFX54\\search.json.mozlz4", (void 0)))
1627849018111 Marionette INFO Listening on port 52839
1627849018882 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627849025029 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627849144794 Marionette INFO Stopped listening on port 52839
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627851734730 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileMbOd45"
1627851735029 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileMbOd45\\search.json.mozlz4", (void 0)))
1627851736453 Marionette INFO Listening on port 53780
1627851736867 Marionette WARN TLS certificate errors will be ignored for this session
out of memory: 0x0000000000001500 bytes requested
out of memory: 0x0000000000001500 bytes requested
out of memory: 0x0000000000001500 bytes requested
Exiting due to channel error.
Exiting due to channel error.
1627851759829 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileM63bkK"
1627851760126 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileM63bkK\\search.json.mozlz4", (void 0)))
1627851761461 Marionette INFO Listening on port 53809
1627851761972 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627851765322 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627851930749 Marionette INFO Stopped listening on port 53809
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627851983535 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileCTKAw7"
1627851983831 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileCTKAw7\\search.json.mozlz4", (void 0)))
1627851985168 Marionette INFO Listening on port 53911
1627851985710 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627851989895 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627852160580 Marionette INFO Stopped listening on port 53911
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627895621468 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileg9w6So"
1627895621775 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileg9w6So\\search.json.mozlz4", (void 0)))
1627895623106 Marionette INFO Listening on port 50995
1627895623618 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627895630117 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627895743587 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627895851075 Marionette INFO Stopped listening on port 50995
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627899135412 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileoG5Rnb"
1627899135713 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileoG5Rnb\\search.json.mozlz4", (void 0)))
1627899137078 Marionette INFO Listening on port 52201
1627899137541 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627899143894 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627899350495 Marionette INFO Stopped listening on port 52201
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627902073679 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofiletggN2O"
1627902073978 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofiletggN2O\\search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
1627902075267 Marionette INFO Listening on port 52581
1627902075311 Marionette WARN TLS certificate errors will be ignored for this session
1627902080513 Marionette INFO Stopped listening on port 52581
1627902087901 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofilecslWzB"
1627902088215 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofilecslWzB\\search.json.mozlz4", (void 0)))
1627902089749 Marionette INFO Listening on port 52644
1627902090045 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627902096801 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
[Parent 1764, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
1627903936115 Marionette INFO Stopped listening on port 52644
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627904531744 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofilegeN6JM"
1627904532063 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofilegeN6JM\\search.json.mozlz4", (void 0)))
1627904533521 Marionette INFO Listening on port 53269
1627904533893 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627904540335 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
###!!! [Parent][MessageChannel] Error: (msgtype=0x390005,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390143,name=PContent::Msg_CommitBrowsingContextTransaction) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0xAF000E,name=PWindowGlobal::Msg_SetContainerFeaturePolicy) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x2300A6,name=PBrowser::Msg_UpdateNativeWindowHandle) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x2300A8,name=PBrowser::Msg_SetWidgetNativeData) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390143,name=PContent::Msg_CommitBrowsingContextTransaction) Channel error: cannot send/recv
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x23006E,name=PBrowser::Msg_InitRendering) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x23009F,name=PBrowser::Msg_SafeAreaInsetsChanged) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x230098,name=PBrowser::Msg_LoadRemoteScript) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x230098,name=PBrowser::Msg_LoadRemoteScript) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x230098,name=PBrowser::Msg_LoadRemoteScript) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390089,name=PContent::Msg_FlushTabState) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390143,name=PContent::Msg_CommitBrowsingContextTransaction) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x230099,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv
A content process crashed and MOZ_CRASHREPORTER_SHUTDOWN is set, shutting down
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390020,name=PContent::Msg_RegisterChromeItem) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390020,name=PContent::Msg_RegisterChromeItem) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390089,name=PContent::Msg_FlushTabState) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x230099,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390089,name=PContent::Msg_FlushTabState) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x230099,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390089,name=PContent::Msg_FlushTabState) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x230099,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390089,name=PContent::Msg_FlushTabState) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x230099,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x390144,name=PContent::Msg_AsyncMessage) Channel error: cannot send/recv
A content process crashed and MOZ_CRASHREPORTER_SHUTDOWN is set, shutting down
###!!! [Parent][MessageChannel] Error: (msgtype=0x390148,name=PContent::Msg_DiscardBrowsingContext) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0xAA0004,name=PWebRenderBridge::Msg_ReleaseCompositable) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0xAA0004,name=PWebRenderBridge::Msg_ReleaseCompositable) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0xAA0026,name=PWebRenderBridge::Msg_Shutdown) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x20012,name=PAPZInputBridge::Msg___delete__) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x960003,name=PTexture::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0xD,name=PAPZ::Msg_Destroy) Channel error: cannot send/recv
###!!! [Child][MessageChannel::SendAndWait] Error: (msgtype=0x360015,name=PCompositorBridge::Msg_WillClose) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x530014,name=PGPU::Msg_RemoveLayerTreeIdMapping) Channel error: cannot send/recv
A content process crashed and MOZ_CRASHREPORTER_SHUTDOWN is set, shutting down
###!!! [Parent][MessageChannel] Error: (msgtype=0x530014,name=PGPU::Msg_RemoveLayerTreeIdMapping) Channel error: cannot send/recv
JavaScript error: resource:///modules/sessionstore/SessionStore.jsm, line 2128: TypeError: subject.QueryInterface is not a function
###!!! [Parent][MessageChannel] Error: (msgtype=0x530014,name=PGPU::Msg_RemoveLayerTreeIdMapping) Channel error: cannot send/recv
JavaScript error: resource:///modules/sessionstore/SessionStore.jsm, line 2128: TypeError: subject.QueryInterface is not a function
###!!! [Parent][MessageChannel] Error: (msgtype=0x530014,name=PGPU::Msg_RemoveLayerTreeIdMapping) Channel error: cannot send/recv
JavaScript error: resource:///modules/sessionstore/SessionStore.jsm, line 2128: TypeError: subject.QueryInterface is not a function
###!!! [Parent][MessageChannel] Error: (msgtype=0x530014,name=PGPU::Msg_RemoveLayerTreeIdMapping) Channel error: cannot send/recv
JavaScript error: resource:///modules/sessionstore/SessionStore.jsm, line 2128: TypeError: subject.QueryInterface is not a function
###!!! [Child][MessageChannel] Error: (msgtype=0xAA0026,name=PWebRenderBridge::Msg_Shutdown) Channel error: cannot send/recv
###!!! [Child][MessageChannel::SendAndWait] Error: (msgtype=0x360015,name=PCompositorBridge::Msg_WillClose) Channel error: cannot send/recv
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[Parent 2272, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
[Parent 2272, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
[Parent 2272, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
A content process crashed and MOZ_CRASHREPORTER_SHUTDOWN is set, shutting down
[Parent 2272, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
1627906729311 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofile5r0cdz"
1627906729610 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofile5r0cdz\\search.json.mozlz4", (void 0)))
1627906731061 Marionette INFO Listening on port 57524
1627906731449 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627906738604 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627906881810 Marionette INFO Stopped listening on port 57524
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627918578550 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofilepFeRBI"
1627918578838 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofilepFeRBI\\search.json.mozlz4", (void 0)))
1627918580262 Marionette INFO Listening on port 54527
1627918580688 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627918587085 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627918778094 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofilekq1cph"
1627918778384 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofilekq1cph\\search.json.mozlz4", (void 0)))
1627918779837 Marionette INFO Listening on port 54625
1627918780222 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627918787156 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627918930477 Marionette INFO Stopped listening on port 54625
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1627919103787 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileMtFIGM"
1627919104074 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileMtFIGM\\search.json.mozlz4", (void 0)))
1627919105497 Marionette INFO Listening on port 54799
1627919105914 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1627919114620 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1627919227110 Marionette INFO Stopped listening on port 54799
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1628102367574 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofileSqapKm"
*** You are running in headless mode.
1628102368211 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofileSqapKm\\search.json.mozlz4", (void 0)))
1628102369270 Marionette INFO Listening on port 53603
1628102369697 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
[GFX1-]: Failed buffer for 0, 0, 1263, 2627
1628102376645 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
[GFX1-]: Failed buffer for 0, 0, 1263, 2472
[GFX1-]: Failed buffer for 0, 0, 1263, 2472
[GFX1-]: Failed buffer for 0, 0, 1263, 2472
[GFX1-]: Failed buffer for 0, 0, 1263, 2472
[GFX1-]: Failed buffer for 0, 0, 1263, 2472
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: https://www.rishonlezion.muni.il/_layouts/15/core.js?rev=Pt2pWkGwtsMtalLrua3moA%3D%3DTAG0, line 1: SyntaxError: expected expression, got '}'
[GFX1-]: Failed buffer for 0, 0, 1263, 2472
[GFX1-]: Failed buffer for 0, 0, 1263, 2592
out of memory: 0x0000000000002000 bytes requested
Exiting due to channel error.
Exiting due to channel error.
[GFX1-]: Receive IPC cl1628102538891 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofile5tW1yq"
1628102539240 Marionette INFO Marionette enabled
out of memory: 0x0000000000000078 bytes requested
JavaScript error: chrome://browser/content/downloads/indicator.js, line 535: uncaught exception: out of memory
out of memory: 0x0000000000001010 bytes requestedout of memory: 0x0000000000001500 bytes requested
out of memory: 0x0000000000001500 bytes requested
out of memory: 0x0000000000001000 bytes requested
out of memory: 0x0000000000001000 bytes requested
1628102560441 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofile0SRTuB"
1628102560735 Marionette INFO Marionette enabled
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\\u043C\u0430\u043A\u0441\\AppData\\Local\\Temp\\rust_mozprofile0SRTuB\\search.json.mozlz4", (void 0)))
1628102562108 Marionette INFO Listening on port 53728
1628102562570 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.rishonlezion.muni.il/Scripts/Functions.js, line 886: unreachable code after return statement
1628102569099 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1628102680873 Marionette INFO Stopped listening on port 53728
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1628805567284 mozrunner::runner INFO Running command: "C:\\Users\\макÑ\\AppData\\Local\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\EF4F~1\\AppData\\Local\\Temp\\rust_mozprofiley4YeaK"
1628805572543 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1628805572579 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1628805572579 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1628805572579 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1628805572579 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
out of memory: 0x0000000000006000 bytes requested
[GFX1-]: Failed to link shader program: brush_image
out of memory during compilation
[2021-08-12T21:59:33Z ERROR webrender::device::gl] Failed to link shader program: brush_image
out of memory during compilation
[GFX1-]: wr_renderer_render: Shader(Link("brush_image", "out of memory during compilation\n\n\n"))
[GFX1-]: Failed to create a D3D11 content device: 0x887a0004
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
JavaScript error: , line 0: uncaught exception: out of memory
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x5E0015,name=PLayerTransaction::Msg_ClearCachedResources) Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x5E001E,name=PLayerTransaction::Msg_Shutdown) Channel error: cannot send/recv
###!!! [Child][MessageChannel::SendAndWait] Error: (msgtype=0x34001A,name=PCompositorBridge::Msg_WillClose) Channel error: cannot send/recv
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x34000B,name=PCompositorBridge::Msg___delete__) Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel error: cannot send/recv