-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
1643 lines (1556 loc) · 163 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
1551078654289 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Ix0HmGLiab22"
1551078654819 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551078654820 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551078656430 Marionette INFO Listening on port 46205
1551078656513 Marionette WARN TLS certificate errors will be ignored for this session
1551078661613 Marionette INFO Stopped listening on port 46205
1551078667775 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.cxcily1HtZte"
1551078668264 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551078668264 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551078669903 Marionette INFO Listening on port 45993
1551078669985 Marionette WARN TLS certificate errors will be ignored for this session
1551078675130 Marionette INFO Stopped listening on port 45993
1551078774991 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.vIw98HifPMtH"
1551078775485 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551078775485 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551078777112 Marionette INFO Listening on port 38057
1551078777213 Marionette WARN TLS certificate errors will be ignored for this session
1551078789574 Marionette INFO Stopped listening on port 38057
1551107563380 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Tww9D60vxgja"
1551107563866 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551107563866 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551107565358 Marionette INFO Listening on port 36819
1551107565413 Marionette WARN TLS certificate errors will be ignored for this session
###!!! [Parent][MessageChannel] Error: (msgtype=0x1B0011,name=PBackgroundStorage::Msg_Observe) Channel error: cannot send/recv
1551107603783 Marionette INFO Stopped listening on port 36819
1551108521176 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ojcDbgmyFt6H"
1551108521697 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551108521697 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551108523395 Marionette INFO Listening on port 35533
1551108523517 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 3557, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 3557, Gecko_IOThread] WARNING: pipe error (101): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551108553820 Marionette INFO Stopped listening on port 35533
1551109567632 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.RQWtz0vBXZEL"
1551109568130 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551109568130 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551109569786 Marionette INFO Listening on port 43337
1551109569841 Marionette WARN TLS certificate errors will be ignored for this session
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
1551109614933 Marionette INFO Stopped listening on port 43337
1551109616543 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.yrca0C7lXc32"
1551109617043 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551109617043 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551109618697 Marionette INFO Listening on port 36679
1551109618780 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 4427, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[Parent 4427, Gecko_IOThread] WARNING: pipe error (77): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551109638189 Marionette INFO Stopped listening on port 36679
1551110194811 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.F7XsolXBHRtd"
1551110195329 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551110195329 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551110196939 Marionette INFO Listening on port 35175
1551110197069 Marionette WARN TLS certificate errors will be ignored for this session
1551110204145 Marionette INFO Stopped listening on port 35175
1551110252153 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.39XYXjNmwyoP"
1551110252657 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551110252658 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551110254205 Marionette INFO Listening on port 34715
1551110254278 Marionette WARN TLS certificate errors will be ignored for this session
1551110267741 Marionette INFO Stopped listening on port 34715
1551111048151 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.piXCRLIwjYOi"
1551111048647 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551111048647 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551111050260 Marionette INFO Listening on port 36267
1551111050275 Marionette WARN TLS certificate errors will be ignored for this session
1551111061335 Marionette INFO Stopped listening on port 36267
1551111133305 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bU7DHhsiw7Cr"
1551111133805 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551111133805 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551111135491 Marionette INFO Listening on port 37013
1551111135554 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6032, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6032, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
1551111155678 Marionette INFO Stopped listening on port 37013
1551111188941 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nKL2c08mKqHM"
1551111189444 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551111189444 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551111191086 Marionette INFO Listening on port 36901
1551111191165 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6341, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6341, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6341, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6341, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 6341, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 6341, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551111996986 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.v78hwbnTgOtu"
1551111997512 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551111997513 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551111999287 Marionette INFO Listening on port 39517
1551111999297 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6810, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6810, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6810, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 6810, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
[Parent 6810, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 6810, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 6810, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
1551112283171 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.2krkGNnUMwL9"
1551112283709 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551112283709 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551112285512 Marionette INFO Listening on port 37369
1551112285595 Marionette WARN TLS certificate errors will be ignored for this session
[Child 6961, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
###!!! [Child][MessageChannel] Error: (msgtype=0x52000E,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x52000E,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
[Parent 6810, Gecko_IOThread] WARNING: pipe error (88): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551112286899 Marionette INFO Stopped listening on port 39517
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7167, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7167, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
1551112337819 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.1ovCfQ19bTN6"
1551112338345 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551112338345 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551112340433 Marionette INFO Listening on port 40107
1551112340571 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 7167, Gecko_IOThread] WARNING: pipe error (77): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551112342899 Marionette INFO Stopped listening on port 37369
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7480, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7480, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7480, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7480, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7480, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7480, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
[Parent 7480, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
1551112733848 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5MwbSG7218ZD"
1551112734456 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551112734457 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551112736535 Marionette INFO Listening on port 43215
1551112736571 Marionette WARN TLS certificate errors will be ignored for this session
1551112741089 Marionette INFO Stopped listening on port 40107
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 7902, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
1551112883353 Marionette INFO Stopped listening on port 43215
[Parent 7902, Gecko_IOThread] WARNING: pipe error (64): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
[Parent 7902, Gecko_IOThread] WARNING: pipe error (173): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551113622249 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.aPRrYz7t9tnr"
1551113622804 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551113622804 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551113624588 Marionette INFO Listening on port 46869
1551113624657 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8344, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8344, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8344, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8344, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 8344, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 8344, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551113698035 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.sMz55mQrZyYs"
1551113698583 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551113698583 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551113700294 Marionette INFO Listening on port 42651
1551113700360 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8637, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8637, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8637, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8637, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
[Child 8789, Chrome_ChildThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
Exiting due to channel error.
1551113852095 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.oRUTCjnfblsT"
1551113852623 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551113852623 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551113854457 Marionette INFO Listening on port 38429
1551113854514 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8955, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8955, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8955, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 8955, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
[Child 9112, Chrome_ChildThread] WARNING: pipe error (39): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[Child 9112, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[Child 9090, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
Exiting due to channel error.
1551113938062 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.sO00Y3WLuJp6"
1551113938612 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551113938612 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551113940392 Marionette INFO Listening on port 38575
1551113940536 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 9338, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 9338, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 9338, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551113997989 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.kJ6s2Fv5hBsU"
1551113998547 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551113998547 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551114000326 Marionette INFO Listening on port 45919
1551114000429 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 9632, Gecko_IOThread] WARNING: pipe error (120): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551114221832 Marionette INFO Stopped listening on port 45919
1551115984228 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.cJLpY6ImZL8k"
1551115984730 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551115984731 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551115986407 Marionette INFO Listening on port 42675
1551115986444 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10156, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10156, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10156, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10156, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
[Parent 10156, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[Parent 10156, Gecko_IOThread] WARNING: pipe error (66): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551116022525 Marionette INFO Stopped listening on port 42675
1551116061044 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.jKsoQAz4b33Y"
1551116061538 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551116061539 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551116063200 Marionette INFO Listening on port 43783
1551116063263 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10468, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10468, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10468, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10468, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
[Child 10622, Chrome_ChildThread] WARNING: pipe error (33): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
[Child 10622, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[Child 10601, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
Exiting due to channel error.
1551116396984 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.tltGEoNha5uU"
1551116397477 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551116397477 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551116399121 Marionette INFO Listening on port 33205
1551116399206 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10841, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
[Parent 10841, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10841, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 10841, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 10841, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551116611079 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.XCQsyhj9tVJZ"
1551116611574 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551116611574 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551116613172 Marionette INFO Listening on port 45505
1551116613208 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 11201, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 11201, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 11201, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[Child 11419, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551117815545 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.0UNX9Zj46Dk4"
1551117816045 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551117816046 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551117817738 Marionette INFO Listening on port 40131
1551117817761 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 11623, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 11623, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 11623, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551118045603 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Y7SG0xqGNjUx"
1551118046110 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551118046110 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551118047811 Marionette INFO Listening on port 42693
1551118047921 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 11968, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 11968, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 11968, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551118105439 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fiiBK4UBgGyz"
1551118105940 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551118105941 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551118107549 Marionette INFO Listening on port 45149
1551118107713 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 12288, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 12288, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 12288, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1551118193190 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.dwLeWWjERgYc"
1551118193695 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551118193696 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551118195332 Marionette INFO Listening on port 45269
1551118195398 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 12597, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 12597, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 12597, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
[Child 12750, Chrome_ChildThread] WARNING: pipe error (33): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
[Child 12750, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
Exiting due to channel error.
1551118286960 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.N2ppGvp0e0Wi"
1551118287451 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551118287451 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551118289040 Marionette INFO Listening on port 44123
1551118289072 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 12917, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 12917, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 12917, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551118356187 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.yYsgX8Ttg4fZ"
1551118356687 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551118356687 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551118358351 Marionette INFO Listening on port 39381
1551118358410 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13249, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13249, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13249, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13249, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551118594878 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Y2CDeKmx1I4W"
1551118595378 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551118595379 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551118597078 Marionette INFO Listening on port 46677
1551118597088 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13579, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13579, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13579, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
[Child 13731, Chrome_ChildThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[Child 13731, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
Exiting due to channel error.
Exiting due to channel error.
1551118664839 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.N5p84VMBBKwk"
1551118665338 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551118665339 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551118666966 Marionette INFO Listening on port 44597
1551118667052 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13899, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13899, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13899, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 13899, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 13899, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 13899, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 13899, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1551118884553 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.tDSWRCboUND8"
1551118885049 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551118885049 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551118886580 Marionette INFO Listening on port 34855
1551118886662 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 14232, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
###!!! [Parent][DispatchAsyncMessage] Error: PClientSourceOp::Msg___delete__ Route error: message sent to unknown actor ID
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 14232, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 14232, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 14232, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551122601680 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.XbxjSdVXoI4M"
1551122602176 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551122602176 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551122603753 Marionette INFO Listening on port 35869
1551122603819 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 14685, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 14685, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 14685, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[Child 14838, Chrome_ChildThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
1551123432196 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.mUtFSvhHfkvA"
1551123432699 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551123432699 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551123434331 Marionette INFO Listening on port 37163
1551123434405 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 15104, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
[Parent 15104, Gecko_IOThread] WARNING: pipe error (78): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551123464622 Marionette INFO Stopped listening on port 37163
1551123508561 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.7wfojj9ituFN"
1551123509054 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551123509055 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551123510753 Marionette INFO Listening on port 36753
1551123510778 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 15422, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
[Parent 15422, Gecko_IOThread] WARNING: pipe error (66): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
[Parent 15422, Gecko_IOThread] WARNING: pipe error (122): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551123538208 Marionette INFO Stopped listening on port 36753
1551126819337 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.f3eY5npE9Zuc"
1551126819841 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551126819841 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551126821480 Marionette INFO Listening on port 46231
1551126821584 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 15836, Gecko_IOThread] WARNING: pipe error (89): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
[Parent 15836, Gecko_IOThread] WARNING: pipe error (120): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551126860114 Marionette INFO Stopped listening on port 46231
1551126863608 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.GK3tbvrRw3sL"
1551126864103 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551126864103 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551126865707 Marionette INFO Listening on port 34767
1551126865734 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 16132, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript error: https://nitdelhi.ac.in/wp-includes/js/jquery/jquery.js?ver=1.12.4, line 2: Error: Syntax error, unrecognized expression: [href=#]
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
[Parent 16132, Gecko_IOThread] WARNING: pipe error (77): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551126975141 Marionette INFO Stopped listening on port 34767
1551126977733 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.yZAx8Km9rwIW"
1551126978238 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551126978239 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551126979896 Marionette INFO Listening on port 38809
1551126979953 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource:///modules/sessionstore/SessionSaver.jsm, line 179: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIAppShellService.hiddenDOMWindow]
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 16501, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
[Parent 16501, Gecko_IOThread] WARNING: pipe error (66): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551127183831 Marionette INFO Stopped listening on port 38809
1551127207050 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.n3IF6NQN33Sc"
1551127207555 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551127207555 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551127209102 Marionette INFO Listening on port 33567
1551127209182 Marionette WARN TLS certificate errors will be ignored for this session
1551127225000 Marionette INFO Stopped listening on port 33567
1551127243727 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.9BCiyxkbI9Fw"
1551127244225 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551127244225 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551127245837 Marionette INFO Listening on port 38327
1551127245959 Marionette WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551127319257 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5UV5jENwZycy"
1551127319759 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551127319759 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551127321380 Marionette INFO Listening on port 40929
1551127321515 Marionette WARN TLS certificate errors will be ignored for this session
1551127337005 Marionette INFO Stopped listening on port 40929
1551127444349 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.TEK10CycDk7x"
1551127444849 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551127444850 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551127446504 Marionette INFO Listening on port 46485
1551127446559 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 17735, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
1551127637434 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.UGOxBNtceE6H"
1551127637932 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551127637932 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551127639647 Marionette INFO Listening on port 40479
1551127639772 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 17735, Gecko_IOThread] WARNING: pipe error (98): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551127642679 Marionette INFO Stopped listening on port 46485
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
1551127828356 Marionette INFO Stopped listening on port 40479
1551127919247 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.dlXtemM2xwHd"
1551127919748 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551127919749 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551127921432 Marionette INFO Listening on port 37459
1551127921469 Marionette WARN TLS certificate errors will be ignored for this session
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 18478, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 18478, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Marionette threw an error: TypeError: this.curBrowser.contentBrowser is null
GeckoDriver.prototype.get@chrome://marionette/content/driver.js:1101:3
[Parent 18478, Gecko_IOThread] WARNING: pipe error (169): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
[Parent 18478, Gecko_IOThread] WARNING: pipe error (127): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551127998476 Marionette ERROR [6442450945] No reply from Marionette:Register
JavaScript error: chrome://marionette/content/listener.js, line 459: TypeError: reply[0] is undefined
1551128001479 Marionette INFO Stopped listening on port 37459
JavaScript error: resource:///modules/sessionstore/SessionSaver.jsm, line 179: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIAppShellService.hiddenDOMWindow]
1551128125539 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5DwITfMQZr7u"
1551128126263 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551128126264 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551128128163 Marionette INFO Listening on port 35689
1551128128280 Marionette WARN TLS certificate errors will be ignored for this session
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 18857, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[Parent 18857, Gecko_IOThread] WARNING: pipe error (82): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551128303309 Marionette INFO Stopped listening on port 35689
1551131311622 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qWOf2iH4A7xk"
1551131312123 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551131312124 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551131313836 Marionette INFO Listening on port 39807
1551131313962 Marionette WARN TLS certificate errors will be ignored for this session
1551131368620 Marionette INFO Stopped listening on port 39807
1551131369826 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.q5QvbGZKQheg"
1551131370340 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551131370341 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551131371879 Marionette INFO Listening on port 42381
1551131371951 Marionette WARN TLS certificate errors will be ignored for this session
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript error: https://nitdelhi.ac.in/wp-includes/js/wp-emoji-release.min.js?ver=5.0, line 4: TypeError: Argument 1 of MutationObserver.observe is not an object.
1551131485575 Marionette INFO Stopped listening on port 42381
1551131487946 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.LIcCuRe8s5Ew"
1551131488471 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551131488471 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551131490079 Marionette INFO Listening on port 33353
1551131490156 Marionette WARN TLS certificate errors will be ignored for this session
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 20056, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
1551131722560 Marionette INFO Stopped listening on port 33353
1551131724468 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qNHHqG9hV6ge"
1551131724974 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551131724975 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551131726623 Marionette INFO Listening on port 46827
1551131726705 Marionette WARN TLS certificate errors will be ignored for this session
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1551131805025 Marionette INFO Stopped listening on port 46827
1551131806749 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nYqK80Gs2Np8"
1551131807256 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551131807256 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551131808863 Marionette INFO Listening on port 40419
1551131808958 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 21192, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[Parent 21192, Gecko_IOThread] WARNING: pipe error (120): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551131944642 Marionette INFO Stopped listening on port 40419
1551132137984 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4EbICU5j9E3P"
1551132138487 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551132138487 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551132140057 Marionette INFO Listening on port 43893
1551132140126 Marionette WARN TLS certificate errors will be ignored for this session
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 21526, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1551143738474 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.FQyWspHlYHsH"
1551143739081 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551143739081 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551143741175 Marionette INFO Listening on port 43883
1551143741205 Marionette WARN TLS certificate errors will be ignored for this session
1551143854378 Marionette INFO Stopped listening on port 43883
1551150576615 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zZQnlff7XtGf"
1551150577267 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551150577267 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551150579389 Marionette INFO Listening on port 34387
1551150579511 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 1282, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:188:13
[Parent 1282, Gecko_IOThread] WARNING: pipe error (82): Connection reset by peer: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 349
1551150663797 Marionette INFO Stopped listening on port 34387
1551150692501 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.lOMqnZ86rjE0"
1551150693002 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/
1551150693002 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader*
1551150694620 Marionette INFO Listening on port 44715
1551150694712 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 1654, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 1654, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement
[Parent 1654, Gecko_IOThread] WARNING: pipe error: Broken pipe: file /build/firefox/src/mozilla-unified/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 718
JavaScript warning: https://static.licdn.com/sc/h/br/4fct3m3sdlanuuf5ijjxnmwqg, line 6307: unreachable code after return statement