-
Notifications
You must be signed in to change notification settings - Fork 0
/
geckodriver.log
1916 lines (1372 loc) · 172 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
1560658970713 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.r1alYwPjRTrZ"
1560659447741 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.Avom2AYsVQJk"
1560659448428 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560659448429 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560659448430 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560659450695 Marionette INFO Listening on port 1417
1560659450987 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 22ms)
JavaScript warning: blob:https://mail.protonmail.com/e506b086-88cd-4cfa-b94a-4905feab9d43, line 0: Successfully compiled asm.js code (total compilation time 3ms)
JavaScript warning: blob:https://mail.protonmail.com/e506b086-88cd-4cfa-b94a-4905feab9d43, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: blob:https://mail.protonmail.com/e506b086-88cd-4cfa-b94a-4905feab9d43, line 0: Successfully compiled asm.js code (total compilation time 47ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 3ms)
[Parent 3400, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 3400, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7216, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7216, [Child 26712, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26712, Ch1560659484721 Marionette INFO Stopped listening on port 1417
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 21984, Chrom
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560659489761 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.QArnGaM2ZYNv"
1560659490451 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560659490452 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560659490452 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560659492309 Marionette INFO Listening on port 1480
1560659492494 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 15ms)
JavaScript warning: blob:https://mail.protonmail.com/1058a6b2-fb36-42c9-953b-7c9bce391e0e, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/1058a6b2-fb36-42c9-953b-7c9bce391e0e, line 0: Successfully compiled asm.js code (total compilation time 9ms)
JavaScript warning: blob:https://mail.protonmail.com/1058a6b2-fb36-42c9-953b-7c9bce391e0e, line 0: Successfully compiled asm.js code (total compilation time 50ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 17024, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 24880, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 24880, Chrome_Ch1560659516049 Marionette INFO Stopped listening on port 1480
[GPU 23588,
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560659520474 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.9xWBkPr8drV8"
1560659521175 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560659521175 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560659521175 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560659523063 Marionette INFO Listening on port 1553
1560659523193 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 15ms)
JavaScript warning: blob:https://mail.protonmail.com/ed1f3f38-0548-4386-95b3-5752817b8b55, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: blob:https://mail.protonmail.com/ed1f3f38-0548-4386-95b3-5752817b8b55, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: blob:https://mail.protonmail.com/ed1f3f38-0548-4386-95b3-5752817b8b55, line 0: Successfully compiled asm.js code (total compilation time 50ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.warn: "Error while detaching the thread front: 'detach' request packet to 'server1.conn0.child1/context19' can't be sent as the connection is closed."
[Parent 22416, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 22416, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 16512, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 16512, [Child 20588, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 20588, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 22416, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 21332, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 21332, Chrome_ChildThread1560659642680 Marionette INFO Stopped listening on port 1553
[GPU 12728,
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
line 0: Successfully compiled asm.js code (total compilation time 41ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 4744, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 15668, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 15668, Chrome_ChildThread] WAR[Parent 4744, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 25332, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 25332, [Parent 4744, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[1560659645218 Marionette INFO Stopped listening on port 1650
[GPU 158
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560659650179 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.m6TNL2Tjc1mb"
1560659650858 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560659650858 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560659650858 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560659652886 Marionette INFO Listening on port 19374
1560659652917 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 17ms)
JavaScript warning: blob:https://mail.protonmail.com/02afe307-835b-43a1-97e5-44647abbbac1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/02afe307-835b-43a1-97e5-44647abbbac1, line 0: Successfully compiled asm.js code (total compilation time 8ms)
JavaScript warning: blob:https://mail.protonmail.com/02afe307-835b-43a1-97e5-44647abbbac1, line 0: Successfully compiled asm.js code (total compilation time 61ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 4ms)
[Parent 23188, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 23188, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 23188, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 23188, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 23188, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_1560659721599 Marionette INFO Listening on port 19463
1560659721920 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 15ms)
JavaScript warning: blob:https://mail.protonmail.com/7f23685d-26a1-4a07-bb42-c09e9c987913, line 0: Successfully compiled asm.js code (total compilation time 3ms)
JavaScript warning: blob:https://mail.protonmail.com/7f23685d-26a1-4a07-bb42-c09e9c987913, line 0: Successfully compiled asm.js code (total compilation time 11ms)
JavaScript warning: blob:https://mail.protonmail.com/7f23685d-26a1-4a07-bb42-c09e9c987913, line 0: Successfully compiled asm.js code (total compilation time 59ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 17124, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 18ms)
JavaScript warning: blob:https://mail.protonmail.com/a46a8dcc-5baa-4076-bd36-3e087c1f6a17, line 0: Successfully compiled asm.js code (total compilation time 3ms)
JavaScript warning: blob:https://mail.protonmail.com/a46a8dcc-5baa-4076-bd36-3e087c1f6a17, line 0: Successfully compiled asm.js code (total compilation time 11ms)
JavaScript warning: blob:https://mail.protonmail.com/a46a8dcc-5baa-4076-bd36-3e087c1f6a17, line 0: Successfully compiled asm.js code (total compilation time 71ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 5ms)
1560660028228 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.vstHsAUep4Qv"
1560660028751 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560660028752 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560660028752 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560660030607 Marionette INFO Listening on port 19626
1560660030971 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/115adb52-1d56-4cc8-b12a-e366001e72dd, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/115adb52-1d56-4cc8-b12a-e366001e72dd, line 0: Successfully compiled asm.js code (total compilation time 7ms)
JavaScript warning: blob:https://mail.protonmail.com/115adb52-1d56-4cc8-b12a-e366001e72dd, line 0: Successfully compiled asm.js code (total compilation time 44ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 1ms)
[Parent 12496, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 12496, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 12496, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 6240, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 15612, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 15612, Chrome_ChildThread] WARNING: pipe error: [Parent 12496, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 2232, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 2232, Chrome_ChildThread] WARNING: p1560660080179 Marionette INFO Stopped listening on port 19626
[GPU 26700,
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
line 341
[Child 13576, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 13576, Chr[Parent 17124, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7416, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7416, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.c1560660028183 Marionette INFO Stopped listening on port 19463
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 10924, Chr
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560660079944 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.1LkFewrJ9UUr"
1560660080578 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560660080578 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560660080579 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560660082547 Marionette INFO Listening on port 19684
1560660082671 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 18ms)
JavaScript warning: blob:https://mail.protonmail.com/257c3dd9-555f-4c64-a499-48738c5061ff, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/257c3dd9-555f-4c64-a499-48738c5061ff, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/257c3dd9-555f-4c64-a499-48738c5061ff, line 0: Successfully compiled asm.js code (total compilation time 136ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 6436, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 6436, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 6436, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 6436, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1708, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 13768, [Child 1708, CChrome_ChildThread] WAhrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 13768, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 3[Parent 6436, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
1560660110038 Marionette INFO Stopped listening on port 19684
[GPU 2296
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560660505447 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.eoXXIJN4aw1m"
1560660505865 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560660505865 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560660505866 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560660507446 Marionette INFO Listening on port 20003
1560660507566 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 13ms)
JavaScript warning: blob:https://mail.protonmail.com/648cd28a-4cc4-4c25-8b49-0a89e770428f, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/648cd28a-4cc4-4c25-8b49-0a89e770428f, line 0: Successfully compiled asm.js code (total compilation time 11ms)
JavaScript warning: blob:https://mail.protonmail.com/648cd28a-4cc4-4c25-8b49-0a89e770428f, line 0: Successfully compiled asm.js code (total compilation time 36ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 6720, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 6720, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 12848, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 12[Parent 6720, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 22352, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 22352, Chrome_1560660541134 Marionette INFO Stopped listening on port 20003
[GPU 2072
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560660546363 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.OvDXUawwWr9g"
1560660546775 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560660546776 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560660546776 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560660548308 Marionette INFO Listening on port 20079
1560660548492 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 13ms)
JavaScript warning: blob:https://mail.protonmail.com/e277b3d5-de56-4ece-a698-a9a0fd3ee9cc, line 0: Successfully compiled asm.js code (total compilation time 7ms)
JavaScript warning: blob:https://mail.protonmail.com/e277b3d5-de56-4ece-a698-a9a0fd3ee9cc, line 0: Successfully compiled asm.js code (total compilation time 5ms)
JavaScript warning: blob:https://mail.protonmail.com/e277b3d5-de56-4ece-a698-a9a0fd3ee9cc, line 0: Successfully compiled asm.js code (total compilation time 39ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: http://%(server)s/dummy/blocklist//buckets/monitor/collections/changes/records?_expected=%221560618350307%22 is not a valid URL..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:203:13
[Parent 15760, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 25720, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 18388, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 18388, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chrom[Parent 15760, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
1560661265489 Marionette INFO Stopped listening on port 20079
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 215
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560661272659 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.NNRxUnXvb6JY"
1560661273097 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560661273097 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560661273097 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560661274678 Marionette INFO Listening on port 20808
1560661274776 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/2b805da2-9e33-4bee-ab23-b6be8a71bf04, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/2b805da2-9e33-4bee-ab23-b6be8a71bf04, line 0: Successfully compiled asm.js code (total compilation time 7ms)
JavaScript warning: blob:https://mail.protonmail.com/2b805da2-9e33-4bee-ab23-b6be8a71bf04, line 0: Successfully compiled asm.js code (total compilation time 35ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
1560661300578 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.Mpj09X5VtnyF"
1560661300969 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560661300970 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560661300970 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560661302565 Marionette INFO Listening on port 20875
1560661302700 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/6e25f614-8954-4266-8a97-cecc92527061, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: blob:https://mail.protonmail.com/6e25f614-8954-4266-8a97-cecc92527061, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: blob:https://mail.protonmail.com/6e25f614-8954-4266-8a97-cecc92527061, line 0: Successfully compiled asm.js code (total compilation time 35ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: http://%(server)s/dummy/blocklist//buckets/monitor/collections/changes/records?_expected=%221560618350307%22 is not a valid URL..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:203:13
[Parent 6964, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 22280, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 2[Parent 6964, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 24212, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 24212, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/[Parent 6964, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 8516, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 8516, Chrome_ChildThread] WARNING: 1560661524000 Marionette INFO Stopped listening on port 20875
[GPU 25736
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560661535224 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.ng2JLVdri1et"
1560661535899 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560661535899 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560661535899 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560661537712 Marionette INFO Listening on port 21436
1560661537939 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 15ms)
JavaScript warning: blob:https://mail.protonmail.com/c2a5d92a-0d6b-4150-a5ae-865dd0fbf93b, line 0: Successfully compiled asm.js code (total compilation time 7ms)
JavaScript warning: blob:https://mail.protonmail.com/c2a5d92a-0d6b-4150-a5ae-865dd0fbf93b, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: blob:https://mail.protonmail.com/c2a5d92a-0d6b-4150-a5ae-865dd0fbf93b, line 0: Successfully compiled asm.js code (total compilation time 55ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
1560661665430 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.aAggFEVPVZPt"
1560661666372 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560661666375 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560661666375 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560661669373 Marionette INFO Listening on port 21621
1560661669753 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 31ms)
JavaScript warning: blob:https://mail.protonmail.com/75bb7a9e-5ea0-4041-bb59-a7c12e7ecf51, line 0: Successfully compiled asm.js code (total compilation time 10ms)
JavaScript warning: blob:https://mail.protonmail.com/75bb7a9e-5ea0-4041-bb59-a7c12e7ecf51, line 0: Successfully compiled asm.js code (total compilation time 15ms)
JavaScript warning: blob:https://mail.protonmail.com/75bb7a9e-5ea0-4041-bb59-a7c12e7ecf51, line 0: Successfully compiled asm.js code (total compilation time 70ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 21220, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 19372, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium[Child 21920, Chrome_ChildTh/rsrc/chrome/common/ipc_channel_win.cc, line 341
ead] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 21920, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome[Parent 21220, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 24348, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 241560661721675 Marionette INFO Stopped listening on port 21621
[GPU 21
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560661727798 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.AOgmoT6xXkPB"
1560661728420 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560661728421 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560661728421 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560661730012 Marionette INFO Listening on port 21721
1560661730045 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/4e4c91c8-3453-44ef-99c6-c95fda6c38b7, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/4e4c91c8-3453-44ef-99c6-c95fda6c38b7, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: blob:https://mail.protonmail.com/4e4c91c8-3453-44ef-99c6-c95fda6c38b7, line 0: Successfully compiled asm.js code (total compilation time 40ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
1560661998581 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.38KnppxdzFyL"
1560661999230 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560661999231 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560661999231 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560662000831 Marionette INFO Listening on port 22036
1560662001323 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 20ms)
JavaScript warning: blob:https://mail.protonmail.com/1306ceb7-1030-43c2-8004-111bb1e643f7, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/1306ceb7-1030-43c2-8004-111bb1e643f7, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: blob:https://mail.protonmail.com/1306ceb7-1030-43c2-8004-111bb1e643f7, line 0: Successfully compiled asm.js code (total compilation time 39ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 3ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 7668, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 7668, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 7668, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26968, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26968, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/[Parent 7668, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 16388, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 16388, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/sr1560662146942 Marionette INFO Stopped listening on port 22036
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 14344, Chrome_ChildTh
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560662222200 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.1LprdT5xfheu"
1560662222857 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560662222857 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560662222857 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560662224414 Marionette INFO Listening on port 22290
1560662224913 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 11ms)
JavaScript warning: blob:https://mail.protonmail.com/bc24f3b9-18c5-4b38-99d5-32a226b81526, line 0: Successfully compiled asm.js code (total compilation time 5ms)
JavaScript warning: blob:https://mail.protonmail.com/bc24f3b9-18c5-4b38-99d5-32a226b81526, line 0: Successfully compiled asm.js code (total compilation time 5ms)
JavaScript warning: blob:https://mail.protonmail.com/bc24f3b9-18c5-4b38-99d5-32a226b81526, line 0: Successfully compiled asm.js code (total compilation time 43ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 3ms)
[Parent 20332, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 25364, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 25364, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26856, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26856, Chrome_ChildThread] WARNING: pipe error: 109: file z1560662300589 Marionette INFO Stopped listening on port 22290
[GPU 22424
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560662445415 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.NilOuUa9sNzt"
1560662446141 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560662446141 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560662446142 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560662448356 Marionette INFO Listening on port 22524
1560662448641 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 14ms)
JavaScript warning: blob:https://mail.protonmail.com/505fd142-76c7-4f00-9dbd-6d14a8313109, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: blob:https://mail.protonmail.com/505fd142-76c7-4f00-9dbd-6d14a8313109, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/505fd142-76c7-4f00-9dbd-6d14a8313109, line 0: Successfully compiled asm.js code (total compilation time 41ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 244, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 5140, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 5140, Chrome_ChildThr[Parent 244, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7436, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7436, Chrome[Parent 244, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
1560662621746 Marionette INFO Stopped listening on port 22524
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
ine 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/27a8d342-4ee8-4102-92d9-4ee230cd4cc1, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/27a8d342-4ee8-4102-92d9-4ee230cd4cc1, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/27a8d342-4ee8-4102-92d9-4ee230cd4cc1, line 0: Successfully compiled asm.js code (total compilation time 37ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 12272, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 12272, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 624, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 624, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 12272, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
1560662614925 Marionette INFO Stopped listening on port 22693
[GPU 2
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560662907112 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.lHFUqKV3KvA6"
1560662907730 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560662907730 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560662907730 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560662909240 Marionette INFO Listening on port 23017
1560662909338 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/3f4ae6ba-c8e2-476b-adfd-85982b03f742, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/3f4ae6ba-c8e2-476b-adfd-85982b03f742, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/3f4ae6ba-c8e2-476b-adfd-85982b03f742, line 0: Successfully compiled asm.js code (total compilation time 35ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 3556, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 3556, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1196, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1196, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 3556, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 19688, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 19688[Parent 3556, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
1560662945842 Marionette INFO Stopped listening on port 23017
[GPU 2560
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560662950649 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.jNQMwrJNigo4"
1560662951043 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560662951043 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560662951043 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560662952600 Marionette INFO Listening on port 23097
1560662952761 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 13ms)
JavaScript warning: blob:https://mail.protonmail.com/8e8a0d74-2b73-4b90-8e90-208c2a514e71, line 0: Successfully compiled asm.js code (total compilation time 5ms)
JavaScript warning: blob:https://mail.protonmail.com/8e8a0d74-2b73-4b90-8e90-208c2a514e71, line 0: Successfully compiled asm.js code (total compilation time 5ms)
JavaScript warning: blob:https://mail.protonmail.com/8e8a0d74-2b73-4b90-8e90-208c2a514e71, line 0: Successfully compiled asm.js code (total compilation time 42ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 19932, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 19932, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 19932, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 12708, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 12708,1560663054139 Marionette INFO Stopped listening on port 23097
[GPU 127
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
36, Ch
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560663059769 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.L3VBawgYsSfW"
1560663060185 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560663060186 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560663060186 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560663061951 Marionette INFO Listening on port 23235
1560663061990 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 19ms)
JavaScript warning: blob:https://mail.protonmail.com/c724e553-3ffe-4b54-b24f-53f8606db8ba, line 0: Successfully compiled asm.js code (total compilation time 5ms)
JavaScript warning: blob:https://mail.protonmail.com/c724e553-3ffe-4b54-b24f-53f8606db8ba, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/c724e553-3ffe-4b54-b24f-53f8606db8ba, line 0: Successfully compiled asm.js code (total compilation time 36ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: http://%(server)s/dummy/blocklist//buckets/monitor/collections/changes/records?_expected=%221560618350307%22 is not a valid URL..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:203:13
[Child 24964, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 9048, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 9041560663167852 Marionette INFO Stopped listening on port 23235
[GPU
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
22432, Chrome_Chil
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560663173312 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.lARHpEfrr1vA"
1560663173722 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560663173722 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560663173723 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560663175274 Marionette INFO Listening on port 23375
1560663175435 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 15ms)
JavaScript warning: blob:https://mail.protonmail.com/0bbf43f4-2014-47a0-a17e-297fa3cc1672, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: blob:https://mail.protonmail.com/0bbf43f4-2014-47a0-a17e-297fa3cc1672, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/0bbf43f4-2014-47a0-a17e-297fa3cc1672, line 0: Successfully compiled asm.js code (total compilation time 36ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 19520, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 19520, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 19520, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 14564, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 14564, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line[Child 22412, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 22412, Chrome_Ch[Parent 19520, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 19572, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 19572, Chrome_ChildThread] 1560663201656 Marionette INFO Stopped listening on port 23375
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 1284
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560663618104 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.39s0MUAbdYEF"
1560663618541 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560663618542 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560663618542 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560663620077 Marionette INFO Listening on port 23812
1560663620223 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 15ms)
JavaScript warning: blob:https://mail.protonmail.com/f45648d6-c204-4a32-9ddc-f1c3e47f16f1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/f45648d6-c204-4a32-9ddc-f1c3e47f16f1, line 0: Successfully compiled asm.js code (total compilation time 10ms)
JavaScript warning: blob:https://mail.protonmail.com/f45648d6-c204-4a32-9ddc-f1c3e47f16f1, line 0: Successfully compiled asm.js code (total compilation time 38ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 3ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 13644, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 13644, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_151560663688079 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560663688079 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560663688080 addons.webextension.screenshots@moz1560663688200 Marionette INFO Stopped listening on port 23812
###!!! [Child][RunMessage] Error: Channel closing: too la1560663689787 Marionette INFO Listening on port 23914
1560663690199 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 75ms)
JavaScript warning: blob:https://mail.protonmail.com/3b6d344f-a543-4652-ab22-09eabf79fe0a, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/3b6d344f-a543-4652-ab22-09eabf79fe0a, line 0: Successfully compiled asm.js code (total compilation time 10ms)
JavaScript warning: blob:https://mail.protonmail.com/3b6d344f-a543-4652-ab22-09eabf79fe0a, line 0: Successfully compiled asm.js code (total compilation time 50ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
[Parent 16172, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 3788, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 378[Child 7212, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 721560663734782 Marionette INFO Stopped listening on port 23914
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 26016,
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560663734210 Marionette INFO Listening on port 23995
1560663734608 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 14ms)
JavaScript warning: blob:https://mail.protonmail.com/c9e2a75b-6d12-483c-a4d5-292af09771eb, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: blob:https://mail.protonmail.com/c9e2a75b-6d12-483c-a4d5-292af09771eb, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/c9e2a75b-6d12-483c-a4d5-292af09771eb, line 0: Successfully compiled asm.js code (total compilation time 41ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: http://%(server)s/dummy/blocklist//buckets/monitor/collections/changes/records?_expected=%221560618350307%22 is not a valid URL..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:203:13
[Parent 24140, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7412, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7412, Chrome_ChildThread] WARNING: pipe er[Parent 24140, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 16948, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 16948, Chrome[Parent 24140, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 6496, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 6496, C1560663955697 Marionette INFO Stopped listening on port 23995
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 1906
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560664172211 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.dICG2vKJlZIq"
1560664172621 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560664172621 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560664172621 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560664174275 Marionette INFO Listening on port 24398
1560664174323 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 11ms)
JavaScript warning: blob:https://mail.protonmail.com/01e856af-a048-49a4-9104-829d5c1fdb03, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/01e856af-a048-49a4-9104-829d5c1fdb03, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: blob:https://mail.protonmail.com/01e856af-a048-49a4-9104-829d5c1fdb03, line 0: Successfully compiled asm.js code (total compilation time 36ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 4ms)
[Parent 17700, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 17700, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 22112, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 22112, Chrome_ChildThread] WARN[Parent 17700, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 12296, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src1560664310768 Marionette INFO Listening on port 24552
1560664310923 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 14ms)
JavaScript warning: blob:https://mail.protonmail.com/a417608d-c57a-4829-8f84-725fa679c65c, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/a417608d-c57a-4829-8f84-725fa679c65c, line 0: Successfully compiled asm.js code (total compilation time 7ms)
JavaScript warning: blob:https://mail.protonmail.com/a417608d-c57a-4829-8f84-725fa679c65c, line 0: Successfully compiled asm.js code (total compilation time 37ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
1560664320532 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
bail@chrome://marionette/content/sync.js:223:64
[Parent 21400, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 21400, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26888, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26888, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_155803[Parent 21400, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7788, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 7788, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 21400, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
1560664419955 Marionette INFO Stopped listening on port 24552
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 8932,
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560664425443 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.RmgSSuR9DeIU"
1560664425863 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560664425863 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560664425863 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560664427388 Marionette INFO Listening on port 24699
1560664427557 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 11ms)
JavaScript warning: blob:https://mail.protonmail.com/fbda2c9c-bff1-433d-9c40-f8e6b6994e87, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/fbda2c9c-bff1-433d-9c40-f8e6b6994e87, line 0: Successfully compiled asm.js code (total compilation time 11ms)
JavaScript warning: blob:https://mail.protonmail.com/fbda2c9c-bff1-433d-9c40-f8e6b6994e87, line 0: Successfully compiled asm.js code (total compilation time 36ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 1ms)
1560664437118 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
bail@chrome://marionette/content/sync.js:223:64
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: http://%(server)s/dummy/blocklist//buckets/monitor/collections/changes/records?_expected=%221560618350307%22 is not a valid URL..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:203:13
JavaScript error: https://pythonspot.com/js/index.js, line 1: ReferenceError: $ is not defined
[Parent 26168, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26940, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26940, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc[Parent 26168, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 26168, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 27508, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 27508, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 10544, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 10544, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrom[Parent 26168, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 17136, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 17136, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
1560665480439 Marionette INFO Stopped listening on port 24699
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 3484
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
fully compiled asm.js code (total compilation time 4ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 5ms)
[Parent 21060, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/6335ad92-de2c-452f-9de3-1136546a953a, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: blob:https://mail.protonmail.com/6335ad92-de2c-452f-9de3-1136546a953a, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/6335ad92-de2c-452f-9de3-1136546a953a, line 0: Successfully compiled asm.js code (total compilation time 38ms)
[Parent 21060, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 21060, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 21024, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 21060, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1516, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1511560665201168 Marionette INFO Stopped listening on port 25285
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 16432, C
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560665217796 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.CsV0f7HqlUGz"
1560665218430 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560665218431 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560665218431 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560665220056 Marionette INFO Listening on port 25525
1560665220522 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 13ms)
JavaScript warning: blob:https://mail.protonmail.com/15e7996f-28ef-42ca-9587-fc63f8c25267, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/15e7996f-28ef-42ca-9587-fc63f8c25267, line 0: Successfully compiled asm.js code (total compilation time 9ms)
JavaScript warning: blob:https://mail.protonmail.com/15e7996f-28ef-42ca-9587-fc63f8c25267, line 0: Successfully compiled asm.js code (total compilation time 50ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: http://%(server)s/dummy/blocklist//buckets/monitor/collections/changes/records?_expected=%221560618350307%22 is not a valid URL..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:203:13
[Parent 6744, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 6744, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 25908, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 259[Parent 6744, Gecko_IOThread] WARNING: file z:/task_1558035249/build/src/ipc/chromium/src/base/process_util_win.cc, line 160
[Parent 6744, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 17988, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 171560665428599 Marionette INFO Stopped listening on port 25525
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 19580, C
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560665433210 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.AyrFhDKqdqVm"
1560665433624 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560665433624 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560665433624 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560665435168 Marionette INFO Listening on port 25752
1560665435320 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/58564bf9-aecf-4a8b-8a78-c5706adf380e, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/58564bf9-aecf-4a8b-8a78-c5706adf380e, line 0: Successfully compiled asm.js code (total compilation time 10ms)
JavaScript warning: blob:https://mail.protonmail.com/58564bf9-aecf-4a8b-8a78-c5706adf380e, line 0: Successfully compiled asm.js code (total compilation time 40ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 22500, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 22500, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 22500, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 20976, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 20976, Ch[Child 1056, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1056, Chrome_Child[Parent 22500, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 17704, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 171560665458841 Marionette INFO Stopped listening on port 25752
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 20896, C
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560665479359 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.h9e14CgsxKa4"
1560665479778 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560665479778 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560665479778 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560665481688 Marionette INFO Listening on port 25835
1560665482078 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 16ms)
JavaScript warning: blob:https://mail.protonmail.com/a0787051-47c0-478b-bd91-0a8de62344ca, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/a0787051-47c0-478b-bd91-0a8de62344ca, line 0: Successfully compiled asm.js code (total compilation time 9ms)
JavaScript warning: blob:https://mail.protonmail.com/a0787051-47c0-478b-bd91-0a8de62344ca, line 0: Successfully compiled asm.js code (total compilation time 52ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: http://%(server)s/dummy/blocklist//buckets/monitor/collections/changes/records?_expected=%221560618350307%22 is not a valid URL..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:203:13
[Parent 24532, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1568, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1568, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 20552, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 2[Parent 24532, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 13592, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 131560665579560 Marionette INFO Stopped listening on port 25835
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 10056, Chro
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560665588377 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.GmQAtvsMGFM8"
1560665588778 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560665588779 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560665588779 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560665590319 Marionette INFO Listening on port 25972
1560665590496 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/eb9b0ee1-6f54-4d9a-a397-d1366291f458, line 0: Successfully compiled asm.js code (total compilation time 1ms)
JavaScript warning: blob:https://mail.protonmail.com/eb9b0ee1-6f54-4d9a-a397-d1366291f458, line 0: Successfully compiled asm.js code (total compilation time 5ms)
JavaScript warning: blob:https://mail.protonmail.com/eb9b0ee1-6f54-4d9a-a397-d1366291f458, line 0: Successfully compiled asm.js code (total compilation time 38ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 3ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: http://%(server)s/dummy/blocklist//buckets/monitor/collections/changes/records?_expected=%221560618350307%22 is not a valid URL..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:203:13
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
console.warn: "Error while detaching the thread front: 'detach' request packet to 'server1.conn0.child1/context19' can't be sent as the connection is closed."
[Parent 11860, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 11860, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 10728, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 3392, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 11860, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 4540, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 4540, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/sr1560665881663 Marionette INFO Stopped listening on port 25972
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560665886892 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.4SgukHcViRBr"
1560665887299 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560665887299 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560665887299 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560665888917 Marionette INFO Listening on port 26258
1560665889004 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 12ms)
JavaScript warning: blob:https://mail.protonmail.com/f3b520fb-0dce-4980-b0d5-734a6e13c33f, line 0: Successfully compiled asm.js code (total compilation time 3ms)
JavaScript warning: blob:https://mail.protonmail.com/f3b520fb-0dce-4980-b0d5-734a6e13c33f, line 0: Successfully compiled asm.js code (total compilation time 8ms)
JavaScript warning: blob:https://mail.protonmail.com/f3b520fb-0dce-4980-b0d5-734a6e13c33f, line 0: Successfully compiled asm.js code (total compilation time 37ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 3ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: http://%(server)s/dummy/blocklist//buckets/monitor/collections/changes/records?_expected=%221560618350307%22 is not a valid URL..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:203:13
console.warn: "Error while detaching the thread front: 'detach' request packet to 'server1.conn0.child1/context19' can't be sent as the connection is closed."
[Parent 23184, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 23IPDL protocol error: Handler returned error code!
184, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Child 26340, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 26340, Ch[Child 9212, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 9212, Chrome_ChildThread] WAR[Parent 23184, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 11412, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 11412, Chrome1560666607809 Marionette INFO Stopped listening on port 26258
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 14820, Chr
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
vices-settings/remote-settings.js:203:13
[Parent 8448, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 19ms)
JavaScript warning: blob:https://mail.protonmail.com/66d9df54-c964-46ac-8e8a-1ea680840bf1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: blob:https://mail.protonmail.com/66d9df54-c964-46ac-8e8a-1ea680840bf1, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: blob:https://mail.protonmail.com/66d9df54-c964-46ac-8e8a-1ea680840bf1, line 0: Successfully compiled asm.js code (total compilation time 44ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 6ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 3ms)
console.warn: "Error while detaching the thread front: 'detach' request packet to 'server1.conn0.child1/context19' can't be sent as the connection is closed."
[Parent 8448, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Parent 8448, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1048, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 1048, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/bui[Child 21740, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child[Parent 8448, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 2908, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1558035249/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
[Child 2908, Chrome_Child1560666552630 Marionette INFO Stopped listening on port 26474
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[GPU 503
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1560667331787 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Me\\AppData\\Local\\Temp\\rust_mozprofile.8BNe6JbjRweW"
1560667332397 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1560667332397 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1560667332397 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1560667334033 Marionette INFO Listening on port 27541
1560667334509 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://mail.protonmail.com/9.83156b12bb.chunk.js, line 0: Successfully compiled asm.js code (total compilation time 15ms)
JavaScript warning: blob:https://mail.protonmail.com/9df8a479-4c7b-4294-8ef3-9e1486c732ec, line 0: Successfully compiled asm.js code (total compilation time 5ms)
JavaScript warning: blob:https://mail.protonmail.com/9df8a479-4c7b-4294-8ef3-9e1486c732ec, line 0: Successfully compiled asm.js code (total compilation time 4ms)
JavaScript warning: blob:https://mail.protonmail.com/9df8a479-4c7b-4294-8ef3-9e1486c732ec, line 0: Successfully compiled asm.js code (total compilation time 39ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=0, line 0: Successfully compiled asm.js code (total compilation time 2ms)
JavaScript warning: https://mail.protonmail.com/api/challenge/js?Type=1, line 0: Successfully compiled asm.js code (total compilation time 2ms)
console.error: BroadcastService:
receivedBroadcastMessage: handler for