-
Notifications
You must be signed in to change notification settings - Fork 0
/
geckodriver.log
1304 lines (1274 loc) · 264 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
1649759508493 geckodriver INFO Listening on 127.0.0.1:44777
1649759509065 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "60795" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileocxMDb"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1649759514050 Marionette INFO Listening on port 45391
1649759514138 Marionette WARN TLS certificate errors will be ignored for this session
1649759514168 Marionette ERROR [15] No reply from Marionette:Register
1649771030639 geckodriver INFO Listening on 127.0.0.1:35025
1649771032443 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "60749" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileCaGVP2"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1649771042517 Marionette INFO Listening on port 40901
1649771042650 Marionette WARN TLS certificate errors will be ignored for this session
1649771042681 Marionette ERROR [15] No reply from Marionette:Register
Exiting due to channel error.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1649774420331 geckodriver INFO Listening on 127.0.0.1:35761
1649774420944 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "57653" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilepqUcxl"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1649774426707 Marionette INFO Listening on port 38647
1649774426817 Marionette WARN TLS certificate errors will be ignored for this session
1649774426855 Marionette ERROR [15] No reply from Marionette:Register
1649774536124 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1649774654059 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://www.24ur.com/main-es2015.ece6d49c0c9ed2819205.js, line 1: uncaught exception: [object Object]
JavaScript error: resource://gre/modules/Sqlite.jsm, line 1031: Error: Sqlite.jsm has been shutdown. Cannot open connection to: /tmp/rust_mozprofileocxMDb/protections.sqlite
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x3A0144,name=PContent::Msg_ScriptError) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0xB60006,name=PWebSocket::Msg_DeleteSelf) Channel closing: too late to send/recv, messages will be lost
1649793083176 Marionette INFO Stopped listening on port 38647
1649793083335 Marionette INFO Stopped listening on port 45391
1651663924381 geckodriver INFO Listening on 127.0.0.1:51899
1651663924918 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "58237" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileDl21Ru"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1651663930585 Marionette INFO Listening on port 36685
1651663930703 Marionette WARN TLS certificate errors will be ignored for this session
1651663930738 Marionette ERROR [15] No reply from Marionette:Register
1651670711670 geckodriver INFO Listening on 127.0.0.1:43137
1651670711856 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "44189" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile6S9lkg"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1651670716936 Marionette INFO Listening on port 37727
1651670717023 Marionette WARN TLS certificate errors will be ignored for this session
1651670717052 Marionette ERROR [15] No reply from Marionette:Register
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1651672391407 geckodriver INFO Listening on 127.0.0.1:51091
1651672392083 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "35781" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileEqj4IZ"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1651672398067 Marionette INFO Listening on port 41811
1651672398166 Marionette WARN TLS certificate errors will be ignored for this session
1651672398199 Marionette ERROR [15] No reply from Marionette:Register
1651673102578 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: resource://devtools/client/jsonview/Sniffer.jsm, line 56: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType]
1651673640022 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651673927735 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://www.24ur.com/main-es2015.fb06dcbc192270d89970.js, line 1: uncaught exception: [object Object]
1651688685992 geckodriver INFO Listening on 127.0.0.1:57055
1651688687366 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "44113" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileXYDOhQ"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1651688693343 Marionette INFO Listening on port 38941
1651688693483 Marionette WARN TLS certificate errors will be ignored for this session
1651688693522 Marionette ERROR [15] No reply from Marionette:Register
1651689824549 geckodriver INFO Listening on 127.0.0.1:49223
1651689827611 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "42987" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileHK32k0"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1651689839645 Marionette INFO Listening on port 41653
1651689839739 Marionette WARN TLS certificate errors will be ignored for this session
1651689839769 Marionette ERROR [15] No reply from Marionette:Register
JavaScript error: https://www.24ur.com/main-es2015.fb06dcbc192270d89970.js, line 1: uncaught exception: [object Object]
JavaScript error: https://www.24ur.com/main-es2015.fb06dcbc192270d89970.js, line 1: uncaught exception: [object Object]
JavaScript error: https://www.24ur.com/main-es2015.fb06dcbc192270d89970.js, line 1: uncaught exception: [object Object]
1651692014068 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651692375646 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://www.24ur.com/main-es2015.fb06dcbc192270d89970.js, line 1: uncaught exception: [object Object]
JavaScript error: https://www.24ur.com/main-es2015.fb06dcbc192270d89970.js, line 1: uncaught exception: [object Object]
1651692809087 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651692963957 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://www.24ur.com/main-es2015.fb06dcbc192270d89970.js, line 1: uncaught exception: [object Object]
1651693360589 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651737009359 geckodriver INFO Listening on 127.0.0.1:53137
1651737010066 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "57161" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile7dWaEm"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1651737015829 Marionette INFO Listening on port 43691
1651737015936 Marionette WARN TLS certificate errors will be ignored for this session
1651737015972 Marionette ERROR [15] No reply from Marionette:Register
JavaScript error: https://www.24ur.com/main-es2015.7c63046cdfebad46b5b4.js, line 1: uncaught exception: [object Object]
1651740138367 geckodriver INFO Listening on 127.0.0.1:34027
1651740141353 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "58879" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiledawINj"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1651740153399 Marionette INFO Listening on port 42141
1651740153580 Marionette WARN TLS certificate errors will be ignored for this session
1651740153608 Marionette ERROR [15] No reply from Marionette:Register
1651740509204 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651740509214 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://www.24ur.com/main-es2015.7c63046cdfebad46b5b4.js, line 1: uncaught exception: [object Object]
1651740572714 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651740653525 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651740700661 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651740866674 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651741018376 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
1651742141559 geckodriver INFO Listening on 127.0.0.1:51273
1651742141656 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "42095" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileMAwY2T"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1651742146679 Marionette INFO Listening on port 40421
1651742146832 Marionette WARN TLS certificate errors will be ignored for this session
1651742146864 Marionette ERROR [15] No reply from Marionette:Register
JavaScript error: https://www.24ur.com/main-es2015.7c63046cdfebad46b5b4.js, line 1: uncaught exception: [object Object]
JavaScript error: https://www.24ur.com/main-es2015.7c63046cdfebad46b5b4.js, line 1: uncaught exception: [object Object]
1651743453998 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651743806261 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651743817701 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1651840385867 Marionette INFO Stopped listening on port 42141
1651840385890 Marionette INFO Stopped listening on port 40421
1652004064052 geckodriver INFO Listening on 127.0.0.1:33907
1652004064582 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "50079" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileyNBdaN"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1652004069709 Marionette INFO Listening on port 33717
1652004069867 Marionette WARN TLS certificate errors will be ignored for this session
1652004069898 Marionette ERROR [15] No reply from Marionette:Register
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 6770 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 6770 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
console.error: services.settings:
main/public-suffix-list Signature failed InvalidSignatureError: Invalid content signature (main/public-suffix-list)
console.error: services.settings:
main/public-suffix-list local data was corrupted
console.warn: services.settings: main/public-suffix-list Signature verified failed. Retry from scratch
console.error: services.settings:
main/public-suffix-list Signature failed again InvalidSignatureError: Invalid content signature (main/public-suffix-list)
console.error: services.settings:
Message: InvalidSignatureError: Invalid content signature (main/public-suffix-list)
Stack:
InvalidSignatureError@resource://services-settings/RemoteSettingsClient.jsm:137:5
_validateCollectionSignature@resource://services-settings/RemoteSettingsClient.jsm:844:13
1652087472246 geckodriver INFO Listening on 127.0.0.1:49911
1652087472763 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "57395" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile9eYZ8Y"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1652087478560 Marionette INFO Listening on port 39965
1652087478699 Marionette WARN TLS certificate errors will be ignored for this session
1652087478739 Marionette ERROR [18] No reply from Marionette:Register
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 7652 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 7652 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 89 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 89 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1652088582356 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 1455 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 1455 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652088607047 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 4336 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 4336 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 1378 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 1378 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 7442 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 7442 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 5585 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 5585 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652088635974 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 4175 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 4175 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 331 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 331 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 1932 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 1932 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 6966 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 6966 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652088664480 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 4006 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 4006 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 3878 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 3878 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 7520 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 7520 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 7661 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/2YVBhELfy0MTwPjrvsYSLv1ZpKJ51JghDEisTAIe9nM.js line 1 > eval line 7661 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652174945734 geckodriver INFO Listening on 127.0.0.1:53117
1652174946854 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "47897" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileK2ldVZ"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1652174952790 Marionette INFO Listening on port 35401
1652174952933 Marionette WARN TLS certificate errors will be ignored for this session
1652174952989 Marionette ERROR [15] No reply from Marionette:Register
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://vidstat.taboola.com/vpaid/vPlayer/player/v14.0.5/OvaMediaPlayer.js, line 1: unreachable code after return statement
JavaScript warning: https://vidstat.taboola.com/vpaid/vPlayer/player/v14.0.5/OvaMediaPlayer.js, line 1: unreachable code after return statement
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 6633 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 6633 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652178218594 geckodriver INFO Listening on 127.0.0.1:37339
1652178219356 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "39559" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile8JDAa6"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1652178227770 Marionette INFO Listening on port 45453
1652178227987 Marionette WARN TLS certificate errors will be ignored for this session
1652178228053 Marionette ERROR [18] No reply from Marionette:Register
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://vidstat.taboola.com/vpaid/vPlayer/player/v14.0.5/OvaMediaPlayer.js, line 1: unreachable code after return statement
JavaScript warning: https://vidstat.taboola.com/vpaid/vPlayer/player/v14.0.5/OvaMediaPlayer.js, line 1: unreachable code after return statement
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 809 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 809 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1652178393518 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652177419&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fhrvati-s-prihodom-fajonove-na-celo-zunanjega-ministrstva-pricakujejo-poslabsanje-odnosov%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178408114&bpp=6&bdt=2110&idt=1966&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=8218267744030&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178409&ga_hid=236426580&ga_fc=1&u_tz=120&u_his=4&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531550%2C44760474%2C44761044%2C31067350&oid=2&pvsid=3393040121594495&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=WyEzedo95k&p=https%3A//nova24tv.si&dtd=1991, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/client/qs_click_protection_fy2019.js, line 21: NS_ERROR_NOT_INITIALIZED:
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652178553&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fmesec-ogroza-nacionalno-varnost-v-casu-vojnih-grozot%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178421124&bpp=7&bdt=1908&idt=1749&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280%2C1356x665&nras=2&correlator=1877989693291&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178422&ga_hid=1622103932&ga_fc=1&u_tz=120&u_his=6&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842&oid=2&pvsid=2632591201367915&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=DNKrYoeERU&p=https%3A//nova24tv.si&dtd=1766, line 1: ReferenceError: buildAttribution is not defined
1652178434037 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178434095 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178434131 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652178440350 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 3966 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 3966 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
1652178453282 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
1652178468325 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://platform.twitter.com/embed/embed.modules.f34a0f34273ac52f3e51.js, line 50: ChunkLoadError: Loading chunk 92 failed.
(error: https://platform.twitter.com/embed/embed.vendors~ondemand.en-js.acec6ae280b2e2f6ef87.js)
1652178475826 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652176761&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkako-si-poslanka-sukiceva-zamislja-neodvisnost-medijev-odlocitve-na-rtvs-potrebujejo-njen-blagoslov%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178471038&bpp=6&bdt=2032&idt=1741&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=7046480164712&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178472&ga_hid=1296534887&ga_fc=1&u_tz=120&u_his=13&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31067418%2C31062890&oid=2&pvsid=868423836444980&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=vXtm5NdXkt&p=https%3A//nova24tv.si&dtd=1801, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652176761&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkako-si-poslanka-sukiceva-zamislja-neodvisnost-medijev-odlocitve-na-rtvs-potrebujejo-njen-blagoslov%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178471038&bpp=6&bdt=2032&idt=1741&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=7046480164712&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178472&ga_hid=1296534887&ga_fc=1&u_tz=120&u_his=13&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31067418%2C31062890&oid=2&pvsid=868423836444980&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=vXtm5NdXkt&p=https%3A//nova24tv.si&dtd=1801, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652176761&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkako-si-poslanka-sukiceva-zamislja-neodvisnost-medijev-odlocitve-na-rtvs-potrebujejo-njen-blagoslov%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178471038&bpp=6&bdt=2032&idt=1741&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=7046480164712&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178472&ga_hid=1296534887&ga_fc=1&u_tz=120&u_his=13&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31067418%2C31062890&oid=2&pvsid=868423836444980&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=vXtm5NdXkt&p=https%3A//nova24tv.si&dtd=1801, line 1: ReferenceError: googqscp is not defined
1652178490178 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://cdn.taboola.com/libtrc/disqus-network/loader.js, line 3: TypeError: undefined is not a function
1652178503966 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178504237 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652178523800 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 5010 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 5010 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
1652178540500 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3342225406&adf=1210856023&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652177584&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Frtv-je-zalitev-za-gledalce-ljubljanskega-elitista-prikazali-kot-borca-proti-eliti%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652178536210&bpp=8&bdt=1722&idt=1519&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=1344921162180&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178537&ga_hid=1273195007&ga_fc=1&u_tz=120&u_his=23&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2385&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842&oid=2&pvsid=3615312449833669&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=0hBk1400sP&p=https%3A//nova24tv.si&dtd=1642, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3342225406&adf=1210856023&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652177584&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Frtv-je-zalitev-za-gledalce-ljubljanskega-elitista-prikazali-kot-borca-proti-eliti%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652178536210&bpp=8&bdt=1722&idt=1519&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=1344921162180&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178537&ga_hid=1273195007&ga_fc=1&u_tz=120&u_his=23&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2385&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842&oid=2&pvsid=3615312449833669&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=0hBk1400sP&p=https%3A//nova24tv.si&dtd=1642, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3342225406&adf=1210856023&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652177584&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Frtv-je-zalitev-za-gledalce-ljubljanskega-elitista-prikazali-kot-borca-proti-eliti%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652178536210&bpp=8&bdt=1722&idt=1519&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=1344921162180&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178537&ga_hid=1273195007&ga_fc=1&u_tz=120&u_his=23&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2385&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842&oid=2&pvsid=3615312449833669&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=0hBk1400sP&p=https%3A//nova24tv.si&dtd=1642, line 1: ReferenceError: googqscp is not defined
1652178540533 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1652178547118 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 5868 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 5868 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652178566535 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178585133 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178585137 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
1652178610566 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652178617858 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178618115 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178625373 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652172295&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fanaliza-tujih-medijev-o-volitvah-v-sloveniji-razkrila-tragiko-prakticno-vsi-se-naslanjano-na-levicarske-vire%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178628919&bpp=8&bdt=2879&idt=1429&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=4415497061318&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178630&ga_hid=1610430042&ga_fc=1&u_tz=120&u_his=37&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31067487%2C31067525&oid=2&pvsid=1372552199274752&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=o7pWyr3LGT&p=https%3A//nova24tv.si&dtd=1452, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
1652178641000 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
1652178660552 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178660675 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 6015 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 6015 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=2209137530&adf=4145715243&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652177414&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fgolob-se-bo-za-podporo-odkupil-z-mesti-na-novih-ministrstvih-z-davkoplacevalskim-denarjem%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652178688082&bpp=8&bdt=1850&idt=2490&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C1356x665&nras=2&correlator=4024037736&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178689&ga_hid=816927618&ga_fc=1&u_tz=120&u_his=46&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2652&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31067418&oid=2&pvsid=1859310196708386&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=xypui8kpCo&p=https%3A//nova24tv.si&dtd=2563, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=2209137530&adf=4145715243&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652177414&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fgolob-se-bo-za-podporo-odkupil-z-mesti-na-novih-ministrstvih-z-davkoplacevalskim-denarjem%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652178688082&bpp=8&bdt=1850&idt=2490&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C1356x665&nras=2&correlator=4024037736&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178689&ga_hid=816927618&ga_fc=1&u_tz=120&u_his=46&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2652&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31067418&oid=2&pvsid=1859310196708386&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=xypui8kpCo&p=https%3A//nova24tv.si&dtd=2563, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652178697543 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652177634&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fzaskrbljenost-tujine-zaradi-morebitnih-povezav-gibanja-svoboda-s-putinovim-rezimom%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178693522&bpp=6&bdt=1960&idt=1729&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C1356x665&nras=2&correlator=1501561001139&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178694&ga_hid=1006481468&ga_fc=1&u_tz=120&u_his=47&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C44761043%2C31067068&oid=2&pvsid=729571844217133&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=ZUJ52CJBIU&p=https%3A//nova24tv.si&dtd=1750, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652178717301 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4281 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4281 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
1652178735047 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652168132&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fsta-sla-novinarja-portala-necenzurirano-h-golobu-po-svojo-nagrado-ali-po-nove-ukaze%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178745277&bpp=5&bdt=2263&idt=1796&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=7615615712295&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178746&ga_hid=1607277955&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531550%2C44762586%2C31065545%2C44762568%2C31064019%2C31067526&oid=2&pvsid=1829558685355135&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=5MiVjK1IPO&p=https%3A//nova24tv.si&dtd=1813, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652168132&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fsta-sla-novinarja-portala-necenzurirano-h-golobu-po-svojo-nagrado-ali-po-nove-ukaze%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178745277&bpp=5&bdt=2263&idt=1796&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=7615615712295&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178746&ga_hid=1607277955&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531550%2C44762586%2C31065545%2C44762568%2C31064019%2C31067526&oid=2&pvsid=1829558685355135&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=5MiVjK1IPO&p=https%3A//nova24tv.si&dtd=1813, line 1: ReferenceError: osdlfm is not defined
1652178750291 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178757943 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652179035&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fministrstvo-odgovarja-na-necenzurirano-zavajanje-oklepna-vozila-boxer-bodo-izpolnjevala-vse-tehnicne-zahteve-in-potrebe%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178761417&bpp=6&bdt=2095&idt=1868&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=6243975292621&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178762&ga_hid=1102749423&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31067419%2C31067526&oid=2&pvsid=634116382639161&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&cms=2&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=aoZN3s03uA&p=https%3A//nova24tv.si&dtd=1888, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652179035&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fministrstvo-odgovarja-na-necenzurirano-zavajanje-oklepna-vozila-boxer-bodo-izpolnjevala-vse-tehnicne-zahteve-in-potrebe%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178761417&bpp=6&bdt=2095&idt=1868&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=6243975292621&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178762&ga_hid=1102749423&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31067419%2C31067526&oid=2&pvsid=634116382639161&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&cms=2&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=aoZN3s03uA&p=https%3A//nova24tv.si&dtd=1888, line 1: ReferenceError: osdlfm is not defined
1652178771934 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=1916736233&adf=772792157&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652175984&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fvideo-ruska-tv-grozi-z-jedrskim-napadom-na-eu-medtem-pa-marta-kos-ne-smemo-si-zapirati-vrata-do-rusije%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652178774682&bpp=8&bdt=1764&idt=1802&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=3730175764879&rume=1&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178776&ga_hid=319851551&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1644&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C44762586%2C31061691%2C31061693&oid=2&pvsid=3258483739785598&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=sH2IAlimGo&p=https%3A//nova24tv.si&dtd=2149, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=1916736233&adf=772792157&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652175984&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fvideo-ruska-tv-grozi-z-jedrskim-napadom-na-eu-medtem-pa-marta-kos-ne-smemo-si-zapirati-vrata-do-rusije%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652178774682&bpp=8&bdt=1764&idt=1802&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=3730175764879&rume=1&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178776&ga_hid=319851551&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1644&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C44762586%2C31061691%2C31061693&oid=2&pvsid=3258483739785598&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=sH2IAlimGo&p=https%3A//nova24tv.si&dtd=2149, line 1: ReferenceError: osdlfm is not defined
JavaScript error: resource://devtools/client/jsonview/Sniffer.jsm, line 56: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType]
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: googqscp is not defined
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 5035 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 5035 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
1652178789545 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
1652178795675 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178809045 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178817266 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178817296 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178825146 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178825158 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178832393 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4569 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4569 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
1652178856430 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 2176 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 2176 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652178878161 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
1652178885121 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652178898850 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652177920&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Ftomsic-o-uvajanju-nove-golobove-prakse-to-je-nov-politicni-prispevek-slovenske-politicne-bizarnosti%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178893994&bpp=5&bdt=2730&idt=2031&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C1356x665%2C750x280&nras=2&correlator=7597624414030&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178895&ga_hid=1652399145&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C31067419%2C31067526&oid=2&pvsid=3333770025730356&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=OkBr63W1YE&p=https%3A//nova24tv.si&dtd=2049, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3522781167&adf=2193840276&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652177920&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Ftomsic-o-uvajanju-nove-golobove-prakse-to-je-nov-politicni-prispevek-slovenske-politicne-bizarnosti%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652178893985&bpp=6&bdt=2720&idt=1831&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C1356x665&nras=2&correlator=7597624414030&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178895&ga_hid=1652399145&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2148&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C31067419%2C31067526&oid=2&pvsid=3333770025730356&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=BBbNh8RThi&p=https%3A//nova24tv.si&dtd=1932, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652166813&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fnastopila-je-svoboda-in-zelja-po-utisanju-in-mascevanju%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178907506&bpp=15&bdt=2524&idt=1733&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=3013852798924&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178908&ga_hid=1891525427&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31064019&oid=2&pvsid=2666451562164999&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=oe6I07SVI5&p=https%3A//nova24tv.si&dtd=1751, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652178926887 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178927092 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652174862&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fse-pred-objavo-volilnih-rezultatov-novinarka-rtv-javno-napovedala-masaker-na-javno-rtv%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178949695&bpp=11&bdt=2296&idt=1412&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=8200845186653&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178950&ga_hid=550372583&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C44762586%2C31065545%2C31067068%2C31064019&oid=2&pvsid=2462338967824190&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=HBQ0er9hEs&p=https%3A//nova24tv.si&dtd=1503, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652174862&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fse-pred-objavo-volilnih-rezultatov-novinarka-rtv-javno-napovedala-masaker-na-javno-rtv%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178949695&bpp=11&bdt=2296&idt=1412&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=8200845186653&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178950&ga_hid=550372583&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C44762586%2C31065545%2C31067068%2C31064019&oid=2&pvsid=2462338967824190&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=HBQ0er9hEs&p=https%3A//nova24tv.si&dtd=1503, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652174862&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fse-pred-objavo-volilnih-rezultatov-novinarka-rtv-javno-napovedala-masaker-na-javno-rtv%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178949695&bpp=11&bdt=2296&idt=1412&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=8200845186653&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178950&ga_hid=550372583&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C44762586%2C31065545%2C31067068%2C31064019&oid=2&pvsid=2462338967824190&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=HBQ0er9hEs&p=https%3A//nova24tv.si&dtd=1503, line 1: ReferenceError: googqscp is not defined
1652178961366 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178961665 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652178961682 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652169517&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkar-nekaj-znanih-obrazov-je-izpadlo-iz-parlamenta%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178969740&bpp=6&bdt=1951&idt=1473&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=3243457025608&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178970&ga_hid=901820307&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31065741%2C44762569&oid=2&pvsid=952949315469040&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=tYhdNE0gYr&p=https%3A//nova24tv.si&dtd=1553, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652169517&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkar-nekaj-znanih-obrazov-je-izpadlo-iz-parlamenta%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178969740&bpp=6&bdt=1951&idt=1473&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=3243457025608&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178970&ga_hid=901820307&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31065741%2C44762569&oid=2&pvsid=952949315469040&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=tYhdNE0gYr&p=https%3A//nova24tv.si&dtd=1553, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652169517&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkar-nekaj-znanih-obrazov-je-izpadlo-iz-parlamenta%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652178969740&bpp=6&bdt=1951&idt=1473&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=3243457025608&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652178970&ga_hid=901820307&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31065741%2C44762569&oid=2&pvsid=952949315469040&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=tYhdNE0gYr&p=https%3A//nova24tv.si&dtd=1553, line 1: ReferenceError: googqscp is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 661 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 661 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 528 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 528 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
1652179005755 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652177532&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fo-jamnikov-potrcko-postal-golobov-favorit-za-ministra%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652179008538&bpp=7&bdt=1875&idt=1670&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C1356x665&nras=2&correlator=7020080821325&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652179009&ga_hid=1445397818&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531550%2C44761043%2C31065545%2C31067488&oid=2&pvsid=3355266999262442&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=GJ4eRBVmBD&p=https%3A//nova24tv.si&dtd=1690, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652179034125 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652156938&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fto-so-najvecji-porazenci-volitev%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652179030059&bpp=7&bdt=2396&idt=1637&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=4300887271998&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652179031&ga_hid=1417964165&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C44762586%2C31067488%2C31064019&oid=2&pvsid=3625468588114903&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=iDKtOyle2X&p=https%3A//nova24tv.si&dtd=1654, line 1: ReferenceError: buildAttribution is not defined
1652179042985 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179043014 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179056019 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
1652179077393 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179085441 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652179099458 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: resource://devtools/client/jsonview/Sniffer.jsm, line 56: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType]
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
1652179112789 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179112837 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652156619&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fzadnja-anketa-pred-volitvami-razlika-med-prvo-in-drugo-stranko-je-tako-minimalna-da-bo-odlocal-vsak-glas%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652179117949&bpp=10&bdt=4288&idt=1268&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=5732283083172&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652179118&ga_hid=1154681810&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C31065545%2C31067488&oid=2&pvsid=1626970649111192&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=lStpNwKgg7&p=https%3A//nova24tv.si&dtd=1415, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652156619&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fzadnja-anketa-pred-volitvami-razlika-med-prvo-in-drugo-stranko-je-tako-minimalna-da-bo-odlocal-vsak-glas%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652179117949&bpp=10&bdt=4288&idt=1268&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=5732283083172&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652179118&ga_hid=1154681810&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C31065545%2C31067488&oid=2&pvsid=1626970649111192&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=lStpNwKgg7&p=https%3A//nova24tv.si&dtd=1415, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652156619&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fzadnja-anketa-pred-volitvami-razlika-med-prvo-in-drugo-stranko-je-tako-minimalna-da-bo-odlocal-vsak-glas%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652179117949&bpp=10&bdt=4288&idt=1268&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280&nras=1&correlator=5732283083172&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652179118&ga_hid=1154681810&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C31065545%2C31067488&oid=2&pvsid=1626970649111192&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=lStpNwKgg7&p=https%3A//nova24tv.si&dtd=1415, line 1: ReferenceError: googqscp is not defined
1652179130001 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652179136996 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
1652179164073 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179164095 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4364 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4364 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
1652179176678 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4706 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4706 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
1652179188772 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652157986&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Ftomsic-in-mamic-teater-levice-in-novinarjev-rtv-je-bil-nacrtovan%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652179198097&bpp=6&bdt=2332&idt=1849&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=6609745895521&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652179199&ga_hid=764528848&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C31067349%2C31067525&oid=2&pvsid=1156036432313254&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=AyVXmfF2FZ&p=https%3A//nova24tv.si&dtd=1872, line 1: ReferenceError: buildAttribution is not defined
1652179211187 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179233989 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 7792 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 7792 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652179258098 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652179264414 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179264588 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4878 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 4878 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://tpc.googlesyndication.com/sadbundle/$csp%3Der3$/5498796611760362738/8cf9597f9b1eec6dd1c181ebcb6cb773.js, line 1: NS_ERROR_UNEXPECTED:
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 3223 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 3223 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 2157 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/dFqp3r-NjKYIiZFGuMjg27V2y58JRdrnPk3CKLoufA4.js line 1 > eval line 2157 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
1652179300835 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179300854 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652177775&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Ftakoj-po-volitvah-je-gen-i-ki-ga-obvladuje-golob-za-skoraj-100-odstotkov-podrazil-plin%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652179295504&bpp=11&bdt=1863&idt=2000&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0%2C750x280%2C1356x665&nras=2&correlator=2635424313301&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652179296&ga_hid=74802594&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C44762585%2C31065545&oid=2&pvsid=916441388890700&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=YZj3SepzxH&p=https%3A//nova24tv.si&dtd=2016, line 1: ReferenceError: buildAttribution is not defined
1652179306940 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179307115 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179319456 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179319465 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179333571 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652144638&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjavnomnenjska-anketa-obeta-se-tesen-boj-med-jansevo-sds-in-golobovimi-svobodnjaki-odlocal-bo-vsak-oddan-glas%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652179338243&bpp=6&bdt=4130&idt=1120&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=6117666455023&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652179339&ga_hid=1905630035&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C44761044%2C31067068%2C31067488&oid=2&pvsid=2029235083008663&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=rC4cNAD0JJ&p=https%3A//nova24tv.si&dtd=1306, line 1: ReferenceError: buildAttribution is not defined
1652179350581 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179356680 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652171119&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkultura-smrti-svobodnjaki-bi-epidemijo-resevali-s-smrtonosnim-svedskim-modelom%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652179359162&bpp=6&bdt=2425&idt=1641&shv=r20220505&mjsv=m202205040101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D555b1965906fecff-22f643778fcd0076%3AT%3D1652178614%3ART%3D1652178614%3AS%3DALNI_MYnI2RNHbb1oCOiNvfECV7XoKWBXw&prev_fmts=0x0&nras=1&correlator=2620878961889&frm=20&pv=1&ga_vid=232033947.1652178337&ga_sid=1652179360&ga_hid=66570167&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C44761043%2C31067068&oid=2&pvsid=402695773938171&pem=720&tmod=299503187&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=GRfgL4JiyF&p=https%3A//nova24tv.si&dtd=1663, line 1: ReferenceError: buildAttribution is not defined
1652179371366 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652179371441 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220505/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
1652179378480 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220505/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.a29971de4b2e08521b9e06901c94551e.js, line 1: TypeError: require is not a function
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1652225026449 Marionette INFO Stopped listening on port 39965
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1652225026408 Marionette INFO Stopped listening on port 45453
JavaScript error: resource://gre/modules/Sqlite.jsm, line 1031: Error: Sqlite.jsm has been shutdown. Cannot open connection to: /tmp/rust_mozprofileK2ldVZ/protections.sqlite
1652225026880 Marionette INFO Stopped listening on port 35401
1652260772883 geckodriver INFO Listening on 127.0.0.1:57371
1652260775854 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "57123" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilex7w1Dm"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1652260787805 Marionette INFO Listening on port 46229
1652260787952 Marionette WARN TLS certificate errors will be ignored for this session
1652260787988 Marionette ERROR [15] No reply from Marionette:Register
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1652260879372 geckodriver INFO Listening on 127.0.0.1:47595
1652260879971 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "43413" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileDs4oD2"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1652260884776 Marionette INFO Listening on port 37297
1652260884863 Marionette WARN TLS certificate errors will be ignored for this session
1652260884912 Marionette ERROR [15] No reply from Marionette:Register
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1652260914090 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652260914092 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652260914152 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=270781357&adf=1613998836&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652251454&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkoliko-sluzb-bo-namenjenih-za-neizvoljene-poslance-sd%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652260916530&bpp=18&bdt=1810&idt=1603&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=4447949091292&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652260917&ga_hid=1113479872&ga_fc=1&u_tz=120&u_his=4&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1668&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31065545%2C31067488&oid=2&pvsid=2343177285172244&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=AwSddU5rFe&p=https%3A//nova24tv.si&dtd=1776, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=270781357&adf=1613998836&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652251454&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkoliko-sluzb-bo-namenjenih-za-neizvoljene-poslance-sd%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652260916530&bpp=18&bdt=1810&idt=1603&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=4447949091292&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652260917&ga_hid=1113479872&ga_fc=1&u_tz=120&u_his=4&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1668&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31065545%2C31067488&oid=2&pvsid=2343177285172244&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=AwSddU5rFe&p=https%3A//nova24tv.si&dtd=1776, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=270781357&adf=1613998836&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652251454&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkoliko-sluzb-bo-namenjenih-za-neizvoljene-poslance-sd%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652260916530&bpp=18&bdt=1810&idt=1603&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=4447949091292&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652260917&ga_hid=1113479872&ga_fc=1&u_tz=120&u_his=4&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1668&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31065545%2C31067488&oid=2&pvsid=2343177285172244&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=AwSddU5rFe&p=https%3A//nova24tv.si&dtd=1776, line 1: ReferenceError: googqscp is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652251454&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkoliko-sluzb-bo-namenjenih-za-neizvoljene-poslance-sd%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652260916551&bpp=6&bdt=1831&idt=1866&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=4447949091292&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652260917&ga_hid=1113479872&ga_fc=1&u_tz=120&u_his=4&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31065545%2C31067488&oid=2&pvsid=2343177285172244&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=BVWBm4Ly5X&p=https%3A//nova24tv.si&dtd=1956, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652251454&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fkoliko-sluzb-bo-namenjenih-za-neizvoljene-poslance-sd%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652260916551&bpp=6&bdt=1831&idt=1866&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=4447949091292&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652260917&ga_hid=1113479872&ga_fc=1&u_tz=120&u_his=4&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31065545%2C31067488&oid=2&pvsid=2343177285172244&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=BVWBm4Ly5X&p=https%3A//nova24tv.si&dtd=1956, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652260932983 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652260933100 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652260939940 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652260946324 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652260954820 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 6533 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 6533 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652260983807 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 243 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 243 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: resource://devtools/client/jsonview/Sniffer.jsm, line 56: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType]
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://www.gstatic.com/mysidia/7e8d9be85afe70328c144e2bd1bc7ea5.js?tag=text/vanilla_highlight, line 17: ReferenceError: mys is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3878748083&adf=131791644&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652258095&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fslovenija-belezi-rekordno-nizko-brezposelnost-nas-tanja-fajon-pripravlja-na-krizo%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261002928&bpp=10&bdt=2021&idt=1405&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=1320375919661&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261004&ga_hid=552171126&ga_fc=1&u_tz=120&u_his=17&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1570&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842&oid=2&pvsid=478017894125424&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=bgpNGyJ1Vy&p=https%3A//nova24tv.si&dtd=1525, line 1: ReferenceError: mys is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652253877&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fslovenska-demokratska-stranka-po-volitvah-mnozicno-pridobiva-nove-clane%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261010140&bpp=6&bdt=1979&idt=1557&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=2679293133866&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261011&ga_hid=1956988635&ga_fc=1&u_tz=120&u_his=18&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44760475%2C31065545&oid=2&pvsid=3454283692281345&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&cms=2&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=yaBBn7hydv&p=https%3A//nova24tv.si&dtd=1704, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652253877&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fslovenska-demokratska-stranka-po-volitvah-mnozicno-pridobiva-nove-clane%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261010140&bpp=6&bdt=1979&idt=1557&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=2679293133866&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261011&ga_hid=1956988635&ga_fc=1&u_tz=120&u_his=18&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44760475%2C31065545&oid=2&pvsid=3454283692281345&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&cms=2&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=yaBBn7hydv&p=https%3A//nova24tv.si&dtd=1704, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652253877&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fslovenska-demokratska-stranka-po-volitvah-mnozicno-pridobiva-nove-clane%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261010140&bpp=6&bdt=1979&idt=1557&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=2679293133866&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261011&ga_hid=1956988635&ga_fc=1&u_tz=120&u_his=18&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44760475%2C31065545&oid=2&pvsid=3454283692281345&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&cms=2&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=yaBBn7hydv&p=https%3A//nova24tv.si&dtd=1704, line 1: ReferenceError: googqscp is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=348244444&adf=2238500876&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652256549&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fnastopila-je-svoboda-in-zelja-po-utisanju-in-mascevanju%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261030815&bpp=12&bdt=1634&idt=1685&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=3408954208413&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261031&ga_hid=1389290020&ga_fc=1&u_tz=120&u_his=21&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2654&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31067487&oid=2&pvsid=425459388530016&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=bPX8Y3drgg&p=https%3A//nova24tv.si&dtd=1787, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652256549&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fnastopila-je-svoboda-in-zelja-po-utisanju-in-mascevanju%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261030829&bpp=7&bdt=1649&idt=1870&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=3408954208413&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261031&ga_hid=1389290020&ga_fc=1&u_tz=120&u_his=21&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31067487&oid=2&pvsid=425459388530016&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=uVpRgXv99e&p=https%3A//nova24tv.si&dtd=1910, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652261048781 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261048783 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261054432 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261054444 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652261111300 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652260216&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fvideo-nimajo-vse-zenske-enakega-mnenja-kot-blazka-muller-ko-srecam-jankovica-sem-vesela-kot-zenska%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261113583&bpp=6&bdt=1795&idt=1765&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=8773245731013&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261114&ga_hid=1943331410&ga_fc=1&u_tz=120&u_his=34&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31067487%2C31065824&oid=2&pvsid=1938001993666616&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=lea6v6TIKV&p=https%3A//nova24tv.si&dtd=1792, line 1: ReferenceError: buildAttribution is not defined
1652261117887 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220509/r20110914/client/qs_click_protection_fy2019.js, line 21: NS_ERROR_NOT_INITIALIZED:
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3065942892&adf=3535892768&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652261401&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpredsednik-nsi-matej-tonin-preprican-da-bodo-te-volitve-za-slovenski-razvoj-kljucne%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261128397&bpp=8&bdt=2008&idt=1539&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=2467412105473&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261129&ga_hid=1339800649&ga_fc=1&u_tz=120&u_his=36&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1515&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842&oid=2&pvsid=3058072766129611&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=RkYXTKF0xX&p=https%3A//nova24tv.si&dtd=1640, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3065942892&adf=3535892768&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652261401&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpredsednik-nsi-matej-tonin-preprican-da-bodo-te-volitve-za-slovenski-razvoj-kljucne%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261128397&bpp=8&bdt=2008&idt=1539&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=2467412105473&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261129&ga_hid=1339800649&ga_fc=1&u_tz=120&u_his=36&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1515&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842&oid=2&pvsid=3058072766129611&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=RkYXTKF0xX&p=https%3A//nova24tv.si&dtd=1640, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3065942892&adf=3535892768&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652261401&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpredsednik-nsi-matej-tonin-preprican-da-bodo-te-volitve-za-slovenski-razvoj-kljucne%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261128397&bpp=8&bdt=2008&idt=1539&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=2467412105473&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261129&ga_hid=1339800649&ga_fc=1&u_tz=120&u_his=36&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1515&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842&oid=2&pvsid=3058072766129611&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=RkYXTKF0xX&p=https%3A//nova24tv.si&dtd=1640, line 1: ReferenceError: googqscp is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 4192 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 4192 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
1652261164255 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
1652261176319 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261176338 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://www.gstatic.com/mysidia/7e8d9be85afe70328c144e2bd1bc7ea5.js?tag=text/vanilla_highlight, line 17: ReferenceError: mys is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=1632251470&adf=1618216855&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652252171&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fvideo-golob-pri-milijonih-dohodkov-ne-ve-zakaj-bi-obicajnim-ljudem-koristile-visje-place%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261172557&bpp=9&bdt=1927&idt=1587&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=5536957810170&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261173&ga_hid=1044819323&ga_fc=1&u_tz=120&u_his=43&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1982&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44760912%2C44761044%2C31065742%2C31067487&oid=2&pvsid=2224989644284823&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=eiXewkJN6m&p=https%3A//nova24tv.si&dtd=1760, line 1: ReferenceError: mys is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 6073 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 6073 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652261187485 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 5685 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 5685 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652257634&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fgolobovemu-kandidatu-za-financnega-ministra-sodijo-zaradi-financ%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261208889&bpp=5&bdt=2348&idt=1536&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=5995804362058&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261209&ga_hid=1623387402&ga_fc=1&u_tz=120&u_his=49&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31067419%2C31064019&oid=2&pvsid=2442961256712163&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=QBwxPI715j&p=https%3A//nova24tv.si&dtd=1620, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652261219890 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652242133&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansev-obisku-v-kijevu-na-naslovnici-wall-street-journala-sandi-cesko-pa-ni-opazil-nic-posebnega%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261215732&bpp=7&bdt=1875&idt=1738&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=5955654087331&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261216&ga_hid=1731264593&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44762586%2C31067067%2C31067544%2C44763951%2C31067419&oid=2&pvsid=3013002227429013&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=cqWe7htvEY&p=https%3A//nova24tv.si&dtd=1758, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652242133&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansev-obisku-v-kijevu-na-naslovnici-wall-street-journala-sandi-cesko-pa-ni-opazil-nic-posebnega%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261215732&bpp=7&bdt=1875&idt=1738&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=5955654087331&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261216&ga_hid=1731264593&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44762586%2C31067067%2C31067544%2C44763951%2C31067419&oid=2&pvsid=3013002227429013&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=cqWe7htvEY&p=https%3A//nova24tv.si&dtd=1758, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=4152847059&adf=3065716536&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652242133&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansev-obisku-v-kijevu-na-naslovnici-wall-street-journala-sandi-cesko-pa-ni-opazil-nic-posebnega%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261215722&bpp=7&bdt=1865&idt=1419&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=5955654087331&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261216&ga_hid=1731264593&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2537&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44762586%2C31067067%2C31067544%2C44763951%2C31067419&oid=2&pvsid=3013002227429013&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=faBRSiRCLK&p=https%3A//nova24tv.si&dtd=1559, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=4152847059&adf=3065716536&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652242133&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansev-obisku-v-kijevu-na-naslovnici-wall-street-journala-sandi-cesko-pa-ni-opazil-nic-posebnega%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261215722&bpp=7&bdt=1865&idt=1419&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=5955654087331&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261216&ga_hid=1731264593&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2537&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44762586%2C31067067%2C31067544%2C44763951%2C31067419&oid=2&pvsid=3013002227429013&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=faBRSiRCLK&p=https%3A//nova24tv.si&dtd=1559, line 1: ReferenceError: osdlfm is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 1550 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 1550 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 2196 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 2196 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
1652261237762 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261237828 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261237906 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 2783 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 2783 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652261250362 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261250410 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 4224 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 4224 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652261269534 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261276431 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261283236 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3497822182&adf=1480035467&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652254333&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fvideo-pozar-kaze-da-je-v-moje-nacrtovano-priprtje-vpletena-ena-znana-odvetniska-druzina-in-politiki-iz-gibanja-svoboda%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261290925&bpp=12&bdt=1934&idt=1658&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=3797845031415&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261292&ga_hid=844284838&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2069&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44760475%2C31064018&oid=2&pvsid=4370149719529680&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=shfHkDX1Ki&p=https%3A//nova24tv.si&dtd=1933, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3497822182&adf=1480035467&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652254333&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fvideo-pozar-kaze-da-je-v-moje-nacrtovano-priprtje-vpletena-ena-znana-odvetniska-druzina-in-politiki-iz-gibanja-svoboda%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261290925&bpp=12&bdt=1934&idt=1658&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=3797845031415&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261292&ga_hid=844284838&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2069&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44760475%2C31064018&oid=2&pvsid=4370149719529680&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=shfHkDX1Ki&p=https%3A//nova24tv.si&dtd=1933, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3497822182&adf=1480035467&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652254333&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fvideo-pozar-kaze-da-je-v-moje-nacrtovano-priprtje-vpletena-ena-znana-odvetniska-druzina-in-politiki-iz-gibanja-svoboda%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261290925&bpp=12&bdt=1934&idt=1658&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=3797845031415&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261292&ga_hid=844284838&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2069&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44760475%2C31064018&oid=2&pvsid=4370149719529680&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=shfHkDX1Ki&p=https%3A//nova24tv.si&dtd=1933, line 1: ReferenceError: googqscp is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 4901 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 4901 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652261307496 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 1257 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 1257 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 5900 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 5900 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 1185 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 1185 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652261367000 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 5044 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 5044 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652261380208 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652261386517 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261392871 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261400566 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652261669&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fgolob-prejemal-placo-visjo-od-ameriskega-predsednika%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261395478&bpp=7&bdt=2075&idt=1444&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=8752532037546&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261396&ga_hid=1692352972&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44761043%2C31067525&oid=2&pvsid=2219107990107928&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=35uHnxBcY9&p=https%3A//nova24tv.si&dtd=1465, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652261669&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fgolob-prejemal-placo-visjo-od-ameriskega-predsednika%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261395478&bpp=7&bdt=2075&idt=1444&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=8752532037546&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261396&ga_hid=1692352972&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44761043%2C31067525&oid=2&pvsid=2219107990107928&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=35uHnxBcY9&p=https%3A//nova24tv.si&dtd=1465, line 1: ReferenceError: osdlfm is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 6698 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 6698 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652246574&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fokaksna-bo-zunanja-politika-nove-vlade-diplomat-petric-se-najbolje-je-da-ostanemo-v-okviru-teh-povezav-v-katerih-smo%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261421092&bpp=6&bdt=1891&idt=1472&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=2914606882622&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261422&ga_hid=1559576604&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44760912%2C31067067%2C31067545&oid=2&pvsid=2716659671532603&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=UT1kJ9MKs2&p=https%3A//nova24tv.si&dtd=1648, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652246574&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fokaksna-bo-zunanja-politika-nove-vlade-diplomat-petric-se-najbolje-je-da-ostanemo-v-okviru-teh-povezav-v-katerih-smo%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261421092&bpp=6&bdt=1891&idt=1472&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=2914606882622&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261422&ga_hid=1559576604&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44760912%2C31067067%2C31067545&oid=2&pvsid=2716659671532603&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=UT1kJ9MKs2&p=https%3A//nova24tv.si&dtd=1648, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 2082 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 2082 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652261460126 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 7763 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 7763 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652259985&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Flevica-forsira-prezivelega-stefancica-da-bi-ta-z-nasim-denarjem-pljuval-po-desnici%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261466798&bpp=5&bdt=1737&idt=1542&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=2412001734327&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261467&ga_hid=2141927918&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C21066429%2C31067419&oid=2&pvsid=3442800004794858&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&cms=2&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=6YMhpMhduT&p=https%3A//nova24tv.si&dtd=1591, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652259985&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Flevica-forsira-prezivelega-stefancica-da-bi-ta-z-nasim-denarjem-pljuval-po-desnici%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261466798&bpp=5&bdt=1737&idt=1542&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=2412001734327&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261467&ga_hid=2141927918&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C21066429%2C31067419&oid=2&pvsid=3442800004794858&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&cms=2&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=6YMhpMhduT&p=https%3A//nova24tv.si&dtd=1591, line 1: ReferenceError: osdlfm is not defined
1652261485944 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261486140 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261486151 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652246869&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fo-motijo-ga-vavcerji-boni-financna-pomoc-davkoplacevalskega-denarja-pa-se-prav-nic-ne-brani%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261489537&bpp=8&bdt=2131&idt=1810&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=4134830049287&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261490&ga_hid=1411489119&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C42531556%2C31067418%2C31064019&oid=2&pvsid=2060246283146374&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=grlHlI18oF&p=https%3A//nova24tv.si&dtd=1828, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652246869&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fo-motijo-ga-vavcerji-boni-financna-pomoc-davkoplacevalskega-denarja-pa-se-prav-nic-ne-brani%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261489537&bpp=8&bdt=2131&idt=1810&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=4134830049287&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261490&ga_hid=1411489119&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C42531556%2C31067418%2C31064019&oid=2&pvsid=2060246283146374&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=grlHlI18oF&p=https%3A//nova24tv.si&dtd=1828, line 1: ReferenceError: osdlfm is not defined
1652261508113 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 5132 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 5132 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652261514821 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261514844 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261514850 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261520738 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=1471834446&adf=1303304105&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652261153&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fdelo-odkrilo-premozenje-novoizvoljenega-poslanca-dejana-zavca-v-davcni-oazi%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261529878&bpp=9&bdt=2004&idt=1971&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=2895490916557&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261530&ga_hid=125597178&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2355&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31065742%2C31067068%2C31067418&oid=2&pvsid=3961292503437253&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=jeDvOARGJK&p=https%3A//nova24tv.si&dtd=2194, line 1: ReferenceError: buildAttribution is not defined
1652261533707 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3971329774&adf=171747837&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652240705&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansa-je-bil-danes-gost-oddaje-sarah-jane-mee-show-na-sky-news%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261544908&bpp=6&bdt=3225&idt=1852&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C1356x665&nras=2&correlator=7639662770262&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261545&ga_hid=2081125085&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2047&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842&oid=2&pvsid=283270680446631&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=dE91vL1rCJ&p=https%3A//nova24tv.si&dtd=1964, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=3971329774&adf=171747837&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652240705&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansa-je-bil-danes-gost-oddaje-sarah-jane-mee-show-na-sky-news%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261544908&bpp=6&bdt=3225&idt=1852&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C1356x665&nras=2&correlator=7639662770262&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261545&ga_hid=2081125085&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2047&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842&oid=2&pvsid=283270680446631&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=dE91vL1rCJ&p=https%3A//nova24tv.si&dtd=1964, line 1: ReferenceError: osdlfm is not defined
1652261549718 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652250674&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fizjava-dneva-govoriti-le-o-dolgu-in-zanemariti-bdp-je-enako-kot-trditi-da-je-telekom-slo-boljsi-od-microsofta-ker-ima-manjsi-dolg-prihodke-pa-zanemaris%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261553145&bpp=15&bdt=2560&idt=1540&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=8295681045896&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261554&ga_hid=1689199620&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31065544%2C31067545%2C31067487&oid=2&pvsid=3722561403219651&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=nRaflm2r8z&p=https%3A//nova24tv.si&dtd=1622, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652250674&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fizjava-dneva-govoriti-le-o-dolgu-in-zanemariti-bdp-je-enako-kot-trditi-da-je-telekom-slo-boljsi-od-microsofta-ker-ima-manjsi-dolg-prihodke-pa-zanemaris%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261553145&bpp=15&bdt=2560&idt=1540&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=8295681045896&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261554&ga_hid=1689199620&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31065544%2C31067545%2C31067487&oid=2&pvsid=3722561403219651&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=nRaflm2r8z&p=https%3A//nova24tv.si&dtd=1622, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652250674&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fizjava-dneva-govoriti-le-o-dolgu-in-zanemariti-bdp-je-enako-kot-trditi-da-je-telekom-slo-boljsi-od-microsofta-ker-ima-manjsi-dolg-prihodke-pa-zanemaris%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652261553145&bpp=15&bdt=2560&idt=1540&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0%2C750x280&nras=1&correlator=8295681045896&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261554&ga_hid=1689199620&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C31065544%2C31067545%2C31067487&oid=2&pvsid=3722561403219651&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=nRaflm2r8z&p=https%3A//nova24tv.si&dtd=1622, line 1: ReferenceError: googqscp is not defined
1652261557793 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220509/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 6607 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 6607 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652261583310 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652261600740 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261600741 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261611492 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261628211 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652261633671 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652261640013 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261640495 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261646714 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261653668 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261668526 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261679075 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261684177 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1652261690031 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652261700420 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261705956 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261706002 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261711524 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261711541 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261711565 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=798797885&adf=1733445449&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652254432&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fv-gibanju-povezimo-slovenijo-na-volitvah-pricakujejo-odlicen-rezultat%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261712892&bpp=7&bdt=1279&idt=1673&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=3742468390332&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261713&ga_hid=1193640330&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1761&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44761043&oid=2&pvsid=2172826535843797&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=XTrR82Nzdq&p=https%3A//nova24tv.si&dtd=1737, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=798797885&adf=1733445449&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652254432&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fv-gibanju-povezimo-slovenijo-na-volitvah-pricakujejo-odlicen-rezultat%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261712892&bpp=7&bdt=1279&idt=1673&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=3742468390332&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261713&ga_hid=1193640330&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1761&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44761043&oid=2&pvsid=2172826535843797&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=XTrR82Nzdq&p=https%3A//nova24tv.si&dtd=1737, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=798797885&adf=1733445449&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652254432&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fv-gibanju-povezimo-slovenijo-na-volitvah-pricakujejo-odlicen-rezultat%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652261712892&bpp=7&bdt=1279&idt=1673&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3D226502e6b18698cb-22ae236690cd002c%3AT%3D1652261177%3ART%3D1652261177%3AS%3DALNI_MY8DZHgngI41IdECwHmQnuVqk80PQ&prev_fmts=0x0&nras=1&correlator=3742468390332&frm=20&pv=1&ga_vid=1533859994.1652260900&ga_sid=1652261713&ga_hid=1193640330&ga_fc=1&u_tz=120&u_his=50&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1761&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759842%2C44761043&oid=2&pvsid=2172826535843797&pem=562&tmod=484286867&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=XTrR82Nzdq&p=https%3A//nova24tv.si&dtd=1737, line 1: ReferenceError: googqscp is not defined
JavaScript error: https://platform.twitter.com/embed/embed.modules.f34a0f34273ac52f3e51.js, line 50: ChunkLoadError: Loading chunk 92 failed.
(error: https://platform.twitter.com/embed/embed.vendors~ondemand.en-js.acec6ae280b2e2f6ef87.js)
1652261738417 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261738714 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 3300 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 3300 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652261755621 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261766818 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652261766972 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 1077 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 1077 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220509/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
1652261799764 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 7374 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/87D0VuGGyd8o4x1zT1VlOmQj8xrGMl1xcSeEyGhgSwY.js line 1 > eval line 7374 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
1652262266701 geckodriver INFO Listening on 127.0.0.1:44423
1652262266794 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "48899" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilenWHe9Y"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1652262272141 Marionette INFO Listening on port 40835
1652262272265 Marionette WARN TLS certificate errors will be ignored for this session
1652262272302 Marionette ERROR [15] No reply from Marionette:Register
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1652262347398 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652259559&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fsiol-golobova-tesna-cloveka-obtozena-goljufive-prodaje-stanovanja%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262355788&bpp=7&bdt=2027&idt=1622&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=5524217735618&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262357&ga_hid=890181129&ga_fc=1&u_tz=120&u_his=4&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C31067487&oid=2&pvsid=4441883004761627&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=60A8mkI2Pr&p=https%3A//nova24tv.si&dtd=1650, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652259559&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fsiol-golobova-tesna-cloveka-obtozena-goljufive-prodaje-stanovanja%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262355788&bpp=7&bdt=2027&idt=1622&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=5524217735618&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262357&ga_hid=890181129&ga_fc=1&u_tz=120&u_his=4&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531549%2C31067487&oid=2&pvsid=4441883004761627&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=60A8mkI2Pr&p=https%3A//nova24tv.si&dtd=1650, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220509/r20110914/elements/html/interstitial_ad_frame_fy2021.js, line 40: TypeError: e is null
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652255044&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansa-izenacili-smo-najboljsi-rezultat-stranke-v-zgodovini-ter-zmagali-v-okrajih-kjer-doslej-se-nismo%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262362872&bpp=8&bdt=2236&idt=1873&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0%2C750x280&nras=1&correlator=2184555594142&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262364&ga_hid=780247339&ga_fc=1&u_tz=120&u_his=5&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C44761043%2C31065544%2C31067068&oid=2&pvsid=729693151670370&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=l49EyVOMFg&p=https%3A//nova24tv.si&dtd=1896, line 1: ReferenceError: buildAttribution is not defined
1652262366853 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652262373424 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652262373432 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652261427&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjavnomnenjska-anketa-v-parlament-bi-se-uvrstile-vse-stranke-ki-trenutno-oblikujejo-vlado%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262381920&bpp=5&bdt=2346&idt=1672&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=2744671856298&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262383&ga_hid=571017543&ga_fc=1&u_tz=120&u_his=8&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842&oid=2&pvsid=347837182569704&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=njRXGhOBAZ&p=https%3A//nova24tv.si&dtd=1706, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652261427&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjavnomnenjska-anketa-v-parlament-bi-se-uvrstile-vse-stranke-ki-trenutno-oblikujejo-vlado%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262381920&bpp=5&bdt=2346&idt=1672&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=2744671856298&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262383&ga_hid=571017543&ga_fc=1&u_tz=120&u_his=8&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842&oid=2&pvsid=347837182569704&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=njRXGhOBAZ&p=https%3A//nova24tv.si&dtd=1706, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652261427&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjavnomnenjska-anketa-v-parlament-bi-se-uvrstile-vse-stranke-ki-trenutno-oblikujejo-vlado%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262381920&bpp=5&bdt=2346&idt=1672&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=2744671856298&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262383&ga_hid=571017543&ga_fc=1&u_tz=120&u_his=8&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842&oid=2&pvsid=347837182569704&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=njRXGhOBAZ&p=https%3A//nova24tv.si&dtd=1706, line 1: ReferenceError: googqscp is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652262405988 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652262405998 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1652262429989 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://cdn.taboola.com/libtrc/disqus-network/loader.js, line 3: TypeError: undefined is not a function
1652262437189 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220509/r20110914/elements/html/interstitial_ad_frame_fy2021.js, line 40: TypeError: e is null
1652262465965 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652262466291 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1652262503491 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=2094407844&adf=994231930&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652262780&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansa-institucije-bi-morale-preiskovati-financiranje-portala-necenzurirano%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652262507342&bpp=12&bdt=2681&idt=1538&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=5169892672798&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262508&ga_hid=1730743398&ga_fc=1&u_tz=120&u_his=25&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2650&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531550%2C31065545&oid=2&pvsid=2539487741279709&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=pIQqnPRXKm&p=https%3A//nova24tv.si&dtd=1686, line 1: ReferenceError: buildAttribution is not defined
1652262511730 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652262780&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansa-institucije-bi-morale-preiskovati-financiranje-portala-necenzurirano%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262507358&bpp=8&bdt=2698&idt=1721&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0%2C750x280&nras=1&correlator=5169892672798&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262508&ga_hid=1730743398&ga_fc=1&u_tz=120&u_his=25&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531550%2C31065545&oid=2&pvsid=2539487741279709&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=49jaWHsSlQ&p=https%3A//nova24tv.si&dtd=1739, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652262780&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fjansa-institucije-bi-morale-preiskovati-financiranje-portala-necenzurirano%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262507358&bpp=8&bdt=2698&idt=1721&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0%2C750x280&nras=1&correlator=5169892672798&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262508&ga_hid=1730743398&ga_fc=1&u_tz=120&u_his=25&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531550%2C31065545&oid=2&pvsid=2539487741279709&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=49jaWHsSlQ&p=https%3A//nova24tv.si&dtd=1739, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
console.error: services.settings:
main/public-suffix-list Signature failed InvalidSignatureError: Invalid content signature (main/public-suffix-list)
console.error: services.settings:
main/public-suffix-list local data was corrupted
console.warn: services.settings: main/public-suffix-list Signature verified failed. Retry from scratch
console.error: services.settings:
main/public-suffix-list Signature failed again InvalidSignatureError: Invalid content signature (main/public-suffix-list)
console.error: services.settings:
Message: InvalidSignatureError: Invalid content signature (main/public-suffix-list)
Stack:
InvalidSignatureError@resource://services-settings/RemoteSettingsClient.jsm:137:5
_validateCollectionSignature@resource://services-settings/RemoteSettingsClient.jsm:844:13
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652259010&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fgolobova-kandidatka-v-slabem-letu-dni-brezisko-bolnisnico-spravila-v-rdece-stevilke%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262548977&bpp=5&bdt=3644&idt=2162&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0%2C750x280&nras=1&correlator=1446932143694&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262550&ga_hid=1469554747&ga_fc=1&u_tz=120&u_his=31&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31065742%2C31067488&oid=2&pvsid=1859539804072574&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=BGaWgwDEaS&p=https%3A//nova24tv.si&dtd=2198, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=7982471840&adk=3422213336&adf=2947583077&pi=t.ma~as.7982471840&w=360&fwrn=4&fwrnh=100&lmt=1652259010&rafmt=1&psa=1&format=360x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fgolobova-kandidatka-v-slabem-letu-dni-brezisko-bolnisnico-spravila-v-rdece-stevilke%2F&fwr=0&fwrattr=true&rpe=1&resp_fmts=3&wgl=1&dt=1652262548977&bpp=5&bdt=3644&idt=2162&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0%2C750x280&nras=1&correlator=1446932143694&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262550&ga_hid=1469554747&ga_fc=1&u_tz=120&u_his=31&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=888&ady=391&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C31065742%2C31067488&oid=2&pvsid=1859539804072574&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeE%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=3&uci=a!3&fsb=1&xpc=BGaWgwDEaS&p=https%3A//nova24tv.si&dtd=2198, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652262560095 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1652262574781 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://platform.twitter.com/embed/embed.modules.f34a0f34273ac52f3e51.js, line 50: ChunkLoadError: Loading chunk 92 failed.
(error: https://platform.twitter.com/embed/embed.vendors~ondemand.en-js.acec6ae280b2e2f6ef87.js)
JavaScript warning: https://pagead2.googlesyndication.com/bg/NHksFvpwOA_e7xJte31GpOZsvVxHGuXQeGuPktjycGc.js line 1 > eval line 3940 > eval line 1 > eval line 1 > eval, line 1: WebGL warning: <Create>: Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript warning: https://pagead2.googlesyndication.com/bg/NHksFvpwOA_e7xJte31GpOZsvVxHGuXQeGuPktjycGc.js line 1 > eval line 3940 > eval line 1 > eval line 1 > eval, line 1: Failed to create WebGL context: WebGL creation failed:
* Can't use WebGL in headless mode (https://bugzil.la/1375585).
JavaScript error: https://c.disquscdn.com/next/recommendations/recommendations.load.9d352c9674ae8172f8669d3aa3a905e9.js, line 1: TypeError: require is not a function
JavaScript error: https://c.disquscdn.com/next/embed/lounge.load.9db7f31f906666f4d56c3f4488ea0e6c.js, line 1: TypeError: require is not a function
1652262586650 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://www.gstatic.com/mysidia/7e8d9be85afe70328c144e2bd1bc7ea5.js?tag=text/vanilla_highlight, line 17: ReferenceError: mys is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=2952393626&adf=3020933046&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652256262&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Ftoliko-glasov-so-dobili-nekateri-najvecji-osmoljenci-letosnjih-volitev%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652262582455&bpp=6&bdt=1856&idt=1579&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=4073839494911&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262583&ga_hid=1831566580&ga_fc=1&u_tz=120&u_his=36&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=2520&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C44761044&oid=2&pvsid=3506206265139670&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=HXo5YsEh6i&p=https%3A//nova24tv.si&dtd=1763, line 1: ReferenceError: mys is not defined
JavaScript error: resource://devtools/client/jsonview/Sniffer.jsm, line 56: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType]
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=2475216458&adf=1022279581&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652244570&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fne-izkljucujejo-samo-v-kul-in-pri-golobu-mediana-je-iz-svoje-ankete-izkljucila-povezimo-slovenijo%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652262619395&bpp=7&bdt=1951&idt=1850&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=7737767944827&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262620&ga_hid=1813735041&ga_fc=1&u_tz=120&u_his=41&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1799&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531557%2C31067419%2C31067488%2C31064019&oid=2&pvsid=3627402714858647&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=j6odSpC67c&p=https%3A//nova24tv.si&dtd=2095, line 1: ReferenceError: buildAttribution is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=2475216458&adf=1022279581&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652244570&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fne-izkljucujejo-samo-v-kul-in-pri-golobu-mediana-je-iz-svoje-ankete-izkljucila-povezimo-slovenijo%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652262619395&bpp=7&bdt=1951&idt=1850&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=7737767944827&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262620&ga_hid=1813735041&ga_fc=1&u_tz=120&u_his=41&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1799&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531557%2C31067419%2C31067488%2C31064019&oid=2&pvsid=3627402714858647&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=j6odSpC67c&p=https%3A//nova24tv.si&dtd=2095, line 1: ReferenceError: osdlfm is not defined
JavaScript error: https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6488729491925189&output=html&h=280&slotname=2177295605&adk=2475216458&adf=1022279581&pi=t.ma~as.2177295605&w=750&fwrn=4&fwrnh=100&lmt=1652244570&rafmt=1&psa=1&format=750x280&url=https%3A%2F%2Fnova24tv.si%2Fslovenija%2Fpolitika%2Fne-izkljucujejo-samo-v-kul-in-pri-golobu-mediana-je-iz-svoje-ankete-izkljucila-povezimo-slovenijo%2F&fwr=0&rpe=1&resp_fmts=3&wgl=1&dt=1652262619395&bpp=7&bdt=1951&idt=1850&shv=r20220509&mjsv=m202205050101&ptt=9&saldr=aa&abxe=1&cookie=ID%3Dd45e8aa32640328c-22ca887890cd0037%3AT%3D1652262616%3ART%3D1652262616%3AS%3DALNI_Mbwny6w2cPsvwsS1KYUcQBHfn0Fbw&prev_fmts=0x0&nras=1&correlator=7737767944827&frm=20&pv=1&ga_vid=957807145.1652262339&ga_sid=1652262620&ga_hid=1813735041&ga_fc=1&u_tz=120&u_his=41&u_h=768&u_w=1366&u_ah=768&u_aw=1366&u_cd=24&u_sd=1&adx=108&ady=1799&biw=1356&bih=665&scr_x=0&scr_y=0&eid=44759876%2C44759927%2C44759842%2C42531557%2C31067419%2C31067488%2C31064019&oid=2&pvsid=3627402714858647&pem=84&tmod=307798203&nvt=1&eae=0&fc=1920&brdim=0%2C0%2C0%2C0%2C1366%2C0%2C1366%2C768%2C1366%2C665&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=128&bc=31&ifi=2&uci=a!2&btvi=1&fsb=1&xpc=j6odSpC67c&p=https%3A//nova24tv.si&dtd=2095, line 1: ReferenceError: googqscp is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652263061719 geckodriver INFO Listening on 127.0.0.1:48251
1652263063386 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "35189" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileZwJFjN"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1652263071423 Marionette INFO Listening on port 36013
1652263071569 Marionette WARN TLS certificate errors will be ignored for this session
1652263071601 Marionette ERROR [15] No reply from Marionette:Register
1652263110746 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://tpc.googlesyndication.com/pagead/js/r20220509/r20110914/elements/html/interstitial_ad_frame_fy2019.js, line 40: TypeError: e is null
1652263130502 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263130513 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263143690 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263143692 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263169545 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263169785 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263176524 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263197267 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263197276 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263210028 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263210035 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: resource://devtools/client/jsonview/Sniffer.jsm, line 56: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType]
1652263237146 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263263657 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263290117 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263290202 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263296946 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263317155 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263317174 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263345605 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
console.error: services.settings:
main/public-suffix-list Signature failed InvalidSignatureError: Invalid content signature (main/public-suffix-list)
console.error: services.settings:
main/public-suffix-list local data was corrupted
console.warn: services.settings: main/public-suffix-list Signature verified failed. Retry from scratch
console.error: services.settings:
main/public-suffix-list Signature failed again InvalidSignatureError: Invalid content signature (main/public-suffix-list)
console.error: services.settings:
Message: InvalidSignatureError: Invalid content signature (main/public-suffix-list)
Stack:
InvalidSignatureError@resource://services-settings/RemoteSettingsClient.jsm:137:5
_validateCollectionSignature@resource://services-settings/RemoteSettingsClient.jsm:844:13
1652263354183 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263354198 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263366835 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263366846 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263388422 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263395100 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://googleads.g.doubleclick.net/pagead/html/r20220509/r20110914/zrt_lookup.html?fsb=1, line 1: ReferenceError: buildAttribution is not defined
1652263421015 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263428756 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263442786 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652263442800 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652264877416 geckodriver INFO Listening on 127.0.0.1:35671
1652264877658 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "53655" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileahT4L3"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1652264892045 Marionette INFO Listening on port 35555
1652264892188 Marionette WARN TLS certificate errors will be ignored for this session
1652264892275 Marionette ERROR [15] No reply from Marionette:Register
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1652264930279 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: , line 0: uncaught exception: undefined
1652264956416 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1652264965458 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.