-
Notifications
You must be signed in to change notification settings - Fork 0
/
geckodriver.log
1084 lines (869 loc) · 98.6 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
1529279394869 geckodriver INFO geckodriver 0.21.0
1529279394885 geckodriver INFO Listening on 127.0.0.1:57724
1529279397799 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.v3l4AW4n2obQ"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529279402635 Marionette INFO Listening on port 57736
1529279402730 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 9596, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 2116, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 2116, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build[Child 17180, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 17180, Chrome_ChildThread] WA[Parent 9596, Gecko_IOThread] WARNING: file z:/build/build/src/ipc/chromium/src/base/process_util_win.cc, line 188
[Parent 9596, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 12920, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 12920,*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 18052,
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529279477985 geckodriver INFO geckodriver 0.21.0
1529279478001 geckodriver INFO Listening on 127.0.0.1:58109
1529279480916 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.8jWIWiFxrmTx"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529279487089 Marionette INFO Listening on port 58121
1529279487801 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 18496, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 15736, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 18496, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16580, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16580, Chrome_ChildThr[Parent 18496, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 8668, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 86*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 12752, Chrom
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529279587856 geckodriver INFO geckodriver 0.21.0
1529279587878 geckodriver INFO Listening on 127.0.0.1:58573
1529279590851 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.XthhxBnYBxdX"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529279595386 Marionette INFO Listening on port 58585
1529279595841 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://rc.rlcdn.cIPDL protocol error: Handler returned error code!
o
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
m
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
/45IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
0356.html, lineIPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
55: NS_EIPDL protocol error: Handler returned error code!
RROR_NOT
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
_INITIALIZED: IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
JavaScript error: http://rc.rlcdn.com/450356.html, line 55: NS_ERROR_NOT_INITIALIZED:
JavaScript error: http://rc.rlcdn.com/450356.html, line 55: NS_ERROR_NOT_INITIALIZED:
JavaScript error: http://rc.rlcdn.com/450356.html, line 55: NS_ERROR_NOT_INITIALIZED:
[Child 15956, Chrome[Parent 8940, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16900, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 17900, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529279646756 geckodriver INFO geckodriver 0.21.0
1529279646772 geckodriver INFO Listening on 127.0.0.1:59195
1529279660149 geckodriver INFO geckodriver 0.21.0
1529279660166 geckodriver INFO Listening on 127.0.0.1:59219
1529279663147 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.m14KgDWVsJSl"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529279668046 Marionette INFO Listening on port 59231
1529279668268 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 14032, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18224, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18[Parent 14032, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 8608, Chrome_ChildThread] WA[Parent 14032, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 15704, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1570*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 5188, Ch
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529279811531 geckodriver INFO geckodriver 0.21.0
1529279811553 geckodriver INFO Listening on 127.0.0.1:60142
1529279814518 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.46jpStU8rVjM"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529279819874 Marionette INFO Listening on port 60155
1529279820009 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 14176, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 14620, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child [Parent 14176, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1460, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1460, Chrome_ChildTh[Parent 14176, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1844, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1844,[GPU 14656, Chrome_Ch
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529279942709 geckodriver INFO geckodriver 0.21.0
1529279942731 geckodriver INFO Listening on 127.0.0.1:60898
1529279945699 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.VfE8wGQX5Bg2"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529279949903 Marionette INFO Listening on port 60911
1529279950058 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 11968, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 19008, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 19008,IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 11968, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11784, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11784, Chrome_ChildThread] WARNING: pipe error[Parent 11968, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18496, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18[GPU 168
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529280053473 geckodriver INFO geckodriver 0.21.0
1529280053495 geckodriver INFO Listening on 127.0.0.1:62002
1529280056487 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.JJmH4a5SpnRl"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529280060788 Marionette INFO Listening on port 62014
1529280060938 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransa1529280143358 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.mlxHKghfbu8f"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529280149207 Marionette INFO Listening on port 62838
1529280149858 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
JavaScript error: resource:///modules/FormSubmitObserver.jsm, line 214: TypeError: this._mm is null
JavaScript error: resource:///modules/FormSubmitObserver.jsm, line 214: TypeError: this._mm is null
[Child 12816, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 12816,[Parent 12952, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 6000, Chrome_ChildThread] WA[Parent 12952, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 812, Chrome_C
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
[Child 15292, C[Parent 12268, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 12764, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 12
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529280424322 geckodriver INFO geckodriver 0.21.0
1529280424344 geckodriver INFO Listening on 127.0.0.1:63730
1529280427331 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.z2yiqAdS1wa8"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529280431620 Marionette INFO Listening on port 63742
1529280432085 Marionette WARN TLS certificate errors will be ignored for this session
[[Parent 14368, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 14504, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 14504, Chrome_ChildThread] WA[Parent 14368, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 3064, Chrome
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529280490035 geckodriver INFO geckodriver 0.21.0
1529280490051 geckodriver INFO Listening on 127.0.0.1:64109
1529280493053 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.i7pzRItH8xVX"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529280498885 Marionette INFO Listening on port 64124
1529280499353 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 796, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 9684, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 9684, Chrome_ChildThread] WARNING: pipe [Child 16924, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1692
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529281402136 geckodriver INFO geckodriver 0.21.0
1529281402152 geckodriver INFO Listening on 127.0.0.1:49999
1529281405189 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.6FClEOmCTZ8U"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529281409990 Marionette INFO Listening on port 50008
1529281410583 Marionette WARN TLS certificate errors will be ignored for this session
[Child 9904, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 9904, Chrome_Child[Parent 1384, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 4524, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 4524, Chrome_ChildThread][Parent 1384, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11392, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 113[GPU 501
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529281532771 geckodriver INFO geckodriver 0.21.0
1529281532793 geckodriver INFO Listening on 127.0.0.1:50307
1529281535788 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.YhrSJqFutsR4"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529281540797 Marionette INFO Listening on port 50315
1529281541682 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 9616, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 14892, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 14892[Parent 9616, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18776, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/s[Parent 9616, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11452, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child [GPU 9
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529281709609 geckodriver INFO geckodriver 0.21.0
1529281709613 geckodriver INFO Listening on 127.0.0.1:51065
1529281712623 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.mAQbrKedCHhy"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529281718665 Marionette INFO Listening on port 51073
1529281718722 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
JavaScript error: http://rc.rlcdn.com/450356.html, line 55: NS_ERROR_NOT_INITIALIZED:
[Child 18712, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child [Parent 16216, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16456, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16456, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/bu[Parent 16216, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 8812, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 8812, Chrome[GPU 696, Ch
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529281867672 geckodriver INFO geckodriver 0.21.0
1529281867687 geckodriver INFO Listening on 127.0.0.1:51748
1529281870689 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.1qvzGUBny77k"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529281876828 Marionette INFO Listening on port 51756
1529281876895 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 14952, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18480, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
Handler function NetworkEventActorProxy.addSecurityInfo threw an exception: [Exception... "Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIMessageSender.sendAsyncMessage]" nsresult: "0xc1f30001 (NS_ERROR_NOT_INITIALIZED)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js :: NetworkEventActorProxy.methodFactory/< :: line 1875" data: no]
Stack: NetworkEventActorProxy.methodFactory/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:1875:5
exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14
NetworkResponseListener.prototype._getSecurityInfo<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:521:5
exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14
onStartRequest@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:441:5
Line: 1875, column: 0
console.error: "Handler function NetworkEventActorProxy.addSecurityInfo threw an exception: [Exception... \"Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIMessageSender.sendAsyncMessage]\" nsresult: \"0xc1f30001 (NS_ERROR_NOT_INITIALIZED)\" location: \"JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js :: NetworkEventActorProxy.methodFactory/< :: line 1875\" data: no]\nStack: NetworkEventActorProxy.methodFactory/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:1875:5\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nNetworkResponseListener.prototype._getSecurityInfo<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:521:5\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nonStartRequest@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:441:5\nLine: 1875, column: 0"
Handler function NetworkEventActorProxy.addResponseContent threw an exception: [Exception... "Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIMessageSender.sendAsyncMessage]" nsresult: "0xc1f30001 (NS_ERROR_NOT_INITIALIZED)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js :: NetworkEventActorProxy.methodFactory/< :: line 1875" data: no]
Stack: NetworkEventActorProxy.methodFactory/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:1875:5
exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14
_onComplete@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:651:5
onStreamClose@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:608:7
onInputStreamReady@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:702:7
Line: 1875, column: 0
console.error: "Handler function NetworkEventActorProxy.addResponseContent threw an exception: [Exception... \"Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIMessageSender.sendAsyncMessage]\" nsresult: \"0xc1f30001 (NS_ERROR_NOT_INITIALIZED)\" location: \"JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js :: NetworkEventActorProxy.methodFactory/< :: line 1875\" data: no]\nStack: NetworkEventActorProxy.methodFactory/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:1875:5\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\n_onComplete@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:651:5\nonStreamClose@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:608:7\nonInputStreamReady@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:702:7\nLine: 1875, column: 0"
[Parent 14952, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 3412, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 3412, Chrome_ChildThread] WARNING: p[Parent 14952, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 9944, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 99[GPU 9616, Chrome_C
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529282171232 geckodriver INFO geckodriver 0.21.0
1529282171252 geckodriver INFO Listening on 127.0.0.1:52819
1529282174320 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.NL2QUS5OV7gs"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529282179041 Marionette INFO Listening on port 52827
1529282179698 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 15396, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 15396, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11184, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11184, Chrome_ChildThread] WARNING: pipe err[Parent 15396, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 13104, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1310*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 15748, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529282500943 geckodriver INFO geckodriver 0.21.0
1529282500963 geckodriver INFO Listening on 127.0.0.1:54223
1529282503928 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.4J2933irkGTw"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
console.error: "Could not write session state file " (new Error("_initWorker called too early! Please read the session file from disk first.", "resource:///modules/sessionstore/SessionFile.jsm", 337)) "_initWorker/<@resource:///modules/sessionstore/SessionFile.jsm:337:15\n_initWorker@resource:///modules/sessionstore/SessionFile.jsm:330:12\n_postToWorker@resource:///modules/sessionstore/SessionFile.jsm:354:11\nwrite@resource:///modules/sessionstore/SessionFile.jsm:394:19\nwrite@resource:///modules/sessionstore/SessionFile.jsm:66:12\n_writeState@resource:///modules/sessionstore/SessionSaver.jsm:357:12\n_saveState@resource:///modules/sessionstore/SessionSaver.jsm:295:12\n_saveStateAsync@resource:///modules/sessionstore/SessionSaver.jsm:341:5\nsaveStateAsyncWhenIdle@resource:///modules/sessionstore/SessionSaver.jsm:192:9\n"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529282513703 Marionette INFO Listening on port 54231
1529282514360 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Child 16508, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1650[Parent 8124, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16860, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16860, Chrome[Parent 8124, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 7224, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 7224, Chro[GPU 2456, Chrome_
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529282678307 geckodriver INFO geckodriver 0.21.0
1529282678323 geckodriver INFO Listening on 127.0.0.1:55445
1529282681311 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.T6fX0ZM2uYNx"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529282686953 Marionette INFO Listening on port 55453
1529282687485 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 5312, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18108, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18[Parent 5312, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 7116, Chrome_ChildThread] WARNIN[Parent 5312, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 6936, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 6936, Chrome_Ch[GPU 16956
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529282820420 geckodriver INFO geckodriver 0.21.0
1529282820435 geckodriver INFO Listening on 127.0.0.1:55760
1529282823402 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.F1FvP8boEqUx"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529282828729 Marionette INFO Listening on port 55768
1529282829120 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Child 6596, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 65[Parent 12168, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 8868, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 8868, Chrome_ChildTh[Parent 12168, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 5268, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 5268, Chr[GPU 702
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529283188935 geckodriver INFO geckodriver 0.21.0
1529283188951 geckodriver INFO Listening on 127.0.0.1:56575
1529283192012 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.pXDGZbQVEKGX"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529283196903 Marionette INFO Listening on port 56583
1529283197642 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 12664, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 15244, Chrome_ChildThread]
###!!! [Child][MessageChannel] Error: (msgtype=0x48000E,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
WARNING: pipe error: 109: file z:/
###!!! [Child][MessageChannel] Error: (msgtype=0x48000E,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 15244, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 12664, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16696, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16696, C*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 16212
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529283244946 geckodriver INFO geckodriver 0.21.0
1529283244977 geckodriver INFO Listening on 127.0.0.1:56789
1529283247998 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.mwwojH7qWqoG"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529283252580 Marionette INFO Listening on port 56797
1529283253632 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 16156, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16444, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 164[Parent 16156, Gecko_IOThread] WARNING: file z:/build/build/src/ipc/chromium/src/base/process_util_win.cc, line 188
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
[Child 1670
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
4, Chrome
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
_ChildT
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
hread] WARNING: pi
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
pe error: 232: fil
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
e z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 513
[Child 16704, Chrome_ChildThread] WARN
###!!! [Child][MessageChannel] Error: (msgtype=0x48000E,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
ING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 16156, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 3256, Chr
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529283350493 geckodriver INFO geckodriver 0.21.0
1529283350509 geckodriver INFO Listening on 127.0.0.1:57170
1529283353467 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.lpRkefKU1QCP"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529283357652 Marionette INFO Listening on port 57179
1529283358430 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 16776, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 10612, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 10612[Child 2956, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 2956, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 16776, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 14160, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1416JavaScript error: resource://gre/modules/Sqlite.jsm, line 826: Error: Connection is not open.
*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529283502697 geckodriver INFO geckodriver 0.21.0
1529283502717 geckodriver INFO Listening on 127.0.0.1:57536
1529283505692 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.s71EkuYE4O9B"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529283510203 Marionette INFO Listening on port 57544
1529283510825 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 4952, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11852, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 118*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529283574166 geckodriver INFO geckodriver 0.21.0
1529283574182 geckodriver INFO Listening on 127.0.0.1:57806
1529283577152 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.PT6NXmt1HSOf"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529283581685 Marionette INFO Listening on port 57814
1529283582146 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 17136, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16956, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16[Parent 17136, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 14812, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 14812, Chrome_ChildThread][Parent 17136, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 10320, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 103[GPU 16124, Chrome_Chi
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529283673174 geckodriver INFO geckodriver 0.21.0
1529283673195 geckodriver INFO Listening on 127.0.0.1:58104
1529283676155 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.0WYh7ajE7Soy"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529283680675 Marionette INFO Listening on port 58112
1529283681258 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 15264, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 4312, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 431[Parent 15264, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11008, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11008, Chrome_ChildThre[Parent 15264, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 264, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 264, C
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529283814069 geckodriver INFO geckodriver 0.21.0
1529283814085 geckodriver INFO Listening on 127.0.0.1:59010
1529283817067 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.Un5usAjAiEzx"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529283822055 Marionette INFO Listening on port 59018
1529283822785 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 7304, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 15688, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 15688, Chrome_ChildT[Parent 7304, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 7304, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 19056, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 19056, Chrome_ChildThr[GPU 11196
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
320 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
JavaScript warning: https://sp.nonitation.com/sas/ads/prod/minJS/v2vEngine_b.js?v=20185172125, line 1: unreachable code after return statement
JavaScript warning: https://sp.escapicon.net/sas/ads/prod/minJS/v2vEngine_b.js?v=20185172125, line 1: unreachable code after return statement
JavaScript warning: https://sp.escapicon.net/sas/ads/prod/minJS/v2vEngine_b.js?v=20185172125, line 1: unreachable code after return statement
JavaScript warning: https://sp.escapicon.net/sas/ads/prod/minJS/v2vEngine_b.js?v=20185172125, line 1: unreachable code after return statement
[Parent 9596, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 9596, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
JavaScript warning: https://sp.nonitation.com/sas/ads/prod/minJS/v2vEngine_b.js?v=20185172125, line 1: unreachable code after return statement
JavaScript warning: https://sp.nonitation.com/sas/ads/prod/minJS/v2vEngine_b.js?v=20185172125, line 1: unreachable code after return statement
JavaScript warning: https://sp.escapicon.net/sas/ads/prod/minJS/v2vEngine_b.js?v=20185172125, line 1: unreachable code after return statement
JavaScript warning: https://sp.escapicon.net/sas/ads/prod/minJS/v2vEngine_b.js?v=20185172125, line 1: unreachable code after return statement
[Parent 9596, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 9596, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
JavaScript warning: https://sp.nonitation.com/sas/ads/prod/minJS/v2vEngine_b.js?v=20185172125, line 1: unreachable code after return statement
[Parent 9596, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 12656, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 12656, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
[Parent 9596, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16868, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 16868, Chrom
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x540027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
[GPU 13136, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529285226216 geckodriver INFO geckodriver 0.21.0
1529285226228 geckodriver INFO Listening on 127.0.0.1:61277
1529285229224 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.ypSbd7pFAzXl"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529285234308 Marionette INFO Listening on port 61285
1529285234884 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 17680, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 5568, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 55IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 17680, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 8324, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 8324, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[Parent 17680, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529285448088 geckodriver INFO geckodriver 0.21.0
1529285448100 geckodriver INFO Listening on 127.0.0.1:62263
1529285451096 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.y5Ey2IME61vh"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529285456203 Marionette INFO Listening on port 62271
1529285456550 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
[Parent 16284, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 11752, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 117IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 16284, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 10320, Chrome_ChildThread] WARNING: pipe error: 232: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 513
[Child 10320, Chrome_ChildThread] WARNING: pipe error: 232: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 513
[Child 10320, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 10320, Chrome_Child[Parent 16284, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 3920, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 392[GPU 15676, Chr
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529287160209 geckodriver INFO geckodriver 0.21.0
1529287160217 geckodriver INFO Listening on 127.0.0.1:63354
1529287163221 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.c2dKXWCbfUyC"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529287167080 Marionette INFO Listening on port 63362
1529287167088 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: http://www.wordtwist.org/js/ddsmoothmenu.js, line 49: TypeError: $mainmenu.parent(...).get(...) is undefined
JavaScript error: https://ad.doubleclick.net/ddm/adi/N117401.8427EXPONENTIALINCTRIBAL/B20594439.214555043;dc_ver=42.111;dc_eid=40004000;sz=300x250;osdl=1;u_sd=1;dc_adk=2823335489;ord=tik5s6;click=http%3A%2F%2Fa.tribalfusion.com%2Fh.click%2FaRmRwQmH3J3TYe3H6t4AjGmrfZcYVYQXsFX0Gbynav23FM4VUnGWPYXPEn5QsZbnQdYu0HfuW6Mm3VM30UUKTAXm5PBdQ6rK4HnO1dBKmdAo5mBQ4c7aVcvbUVMeRP3oUdMWTrfP5UIsUaUnVTYlQT3ZcQVFZaPFuoPHMiWsf55FTuntImYTew4drASsvD56nIpWIsUHQhTVrUlu5A5C%2F;dc_rfl=0,http%3A%2F%2Fwww.wordtwist.org%2Finit4.php$0;xdt=0;crlt=p8VsA-DH)8;sttr=12;prcl=s?, line 1: ReferenceError: osdlfm is not defined
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Child 9552, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 95IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 8828, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18756, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18756, Chrome_ChildThread] WA[Parent 8828, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 13116, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 13116, Chrome_C
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529337266471 geckodriver INFO geckodriver 0.21.0
1529337266487 geckodriver INFO Listening on 127.0.0.1:49448
1529337269430 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.y1vGmubLQlqa"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529337280954 Marionette INFO Listening on port 49456
1529337280987 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://z.moatads.com/essencedigitalna20153870852878/moatad.js#moatClientLevel1=6071606&moatClientLevel2=20922446&moatClientLevel3=416603165&moatClientLevel4=101223922&moatClientSlicer1=852983&moatClientSlicer2=217444983&zMoatG=ct=US&st=VA&city=15405&dma=13&zp=20165&bw=4&zMoatAUCID= line 39 > eval, line 2: NS_ERROR_NOT_INITIALIZED:
[Child 20200, Chrome_ChildThread] WARNING: pipe error: 232: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 513
[Child 20200, Chrome_ChildThread] WARNING: pipe error: 232: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 513
[Child 20200, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 20200, Chrome_ChildThrea[Parent 14976, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 5028, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 5028[GPU 11816, Chrome_ChildThread] WARNING: pipe e
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1529605786280 geckodriver INFO geckodriver 0.21.0
1529605786293 geckodriver INFO Listening on 127.0.0.1:60544
1529605789206 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.0hdLkv8P6EJe"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1529605799972 Marionette INFO Listening on port 60552
1529605800781 Marionette WARN TLS certificate errors will be ignored for this session
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Child 18040, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 18040, Chrome_ChildThread] [Child 10788, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 1[Parent 3820, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 12044, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 12044, Ch[GPU 17536, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1538700176649 geckodriver INFO geckodriver 0.21.0
1538700176739 geckodriver INFO Listening on 127.0.0.1:59519
1538700180732 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofile.IwVldPles5KC"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1538700189419 Marionette INFO Listening on port 59533
1538700189812 Marionette WARN TLS certificate errors will be ignored for this session
1538700191893 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185
onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201
_middleware/</<()@resource://activity-stream/lib/Store.jsm:49
Store/this[method]()@resource://activity-stream/lib/Store.jsm:28
uninit()@resource://activity-stream/lib/Store.jsm:151
uninit()@resource://activity-stream/lib/ActivityStream.jsm:300
uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///C:/Program%20Files/Mozilla%20Firefox/browser/features/[email protected]!/bootstrap.js:73
shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///C:/Program%20Files/Mozilla%20Firefox/browser/features/[email protected]!/bootstrap.js:169
callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436
observe()@resource://gre/modules/addons/XPIProvider.jsm:2287
[Parent 48016, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 48016, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 13896, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 13896, Chrome_ChildThread][Child 18552, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 185[Parent 48016, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 26412, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 26412, C*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
[GPU 41432, Chrome
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1573955526776 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\obhal\\AppData\\Local\\Temp\\rust_mozprofiletR94dM"
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
Unable to read VR Path Registry from C:\Users\obhal\AppData\Local\openvr\openvrpaths.vrpath
1573955535871 Marionette INFO Listening on port 49876
1573955535954 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://cdn.districtm.ca/merge/merge.v4.2.111407.js, line 1: SyntaxError: expected expression, got ';'
JavaScript error: https://cdn.districtm.ca/merge/merge.v4.2.111407.js, line 1: SyntaxError: expected expression, got ';'