-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsummary_android.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 3.
3058 lines (3058 loc) · 260 KB
/
Copy pathsummary_android.csv
File metadata and controls
3058 lines (3058 loc) · 260 KB
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
bugid,summary
1427533,HTTPS support for topdomains list
1427569,Native file explorer persistently says "Unable to download file" instead of downloading files
1427574,Firefox for Android lacks leanback launcher shortcut
1427611,Crash in java.lang.IllegalStateException: This page is not safe for PWA at org.mozilla.gecko.GeckoApplication.createShortcut(GeckoApplication.java)
1427642,Sync does not working properly
1427684,Vulnerable to autofill abuse
1427750,Run remaining android emulator tasks on xlarge instances
1427771,Blank screen when youtube exits from full-screen in custom tabs
1427784,Intermittent testSessionOOMSave | application crashed [@ 0x1512]
1427794,Profile data import/export
1427803,sync now without auto-sync
1427819,WebSocket dosen't behave as expected
1427923,<input type="file"> does not launch file browser
1427998,Wrong message when deleting a bookmark from Bookmarks Panel
1428003,White screen after putting a theme in preview
1428017,Switch to tab does not work for Top Sites tiles
1428028,"Only happening with latest version, But keep getting FFbeta draining battery too fast"
1428041,Cannot navigate profile pages in AMO with Fennec
1428165,History expiration's broken: records are bulk-inserted from sync with a null 'modified' value
1428265,Crash in java.lang.NullPointerException: at android.hardware.SystemSensorManager$BaseEventQueue.enableSensor(SystemSensorManager.java)
1428315,Scrolling is not smooth on P10 Plus which has a Kirin 960
1428434,Use Framework methods instead of DBUtils for concatenateWhere/appendSelectionArgs
1428496,It's possible for sync to fail to de-dupe incoming duplicate history records
1428510,'modified' and 'created' fields should be NOT NULL on the History table
1428513,URL column in the history table should have a unique constraint
1428573,Startup performance impact of uBlock Origin and HTTPS Everywhere
1428625,Long Delay before on every first webpage connect (try)
1428639,Firefox Nightly vi 59 crashing on Facebook
1428677,History only goes back 100 items
1428691,Fix failure of mobile/android/tests/browser/chrome/test_media_playback.html after bug 1193394
1428764,Intermittent testPictureLinkContextMenu | java-exception java.lang.NullPointerException at java.util.LinkedHashMap.makeTail(LinkedHashMap.java:277)
1428870,Link context menu sometimes shown for image elements
1428962,quora.com addvertisement
1428969,PWA Badge appears incorrectly after restore all tabs
1428970,Recently Closed Tab is not cleared after :restore all"
1429046,[Android 8.1 /Pixel 2] Downloads favicons are not displayed
1429058,Intermittent marionette.py | application crashed [@ dalvik-heap (deleted) + 0x2e1a38]
1429165,Intermittent testActivityStreamPocketReferrer | Exception caught - junit.framework.AssertionFailedError: Text string: 'Browser Bl' is not found!
1429188,Change close icon in custom tabs to remove mediarouter dependency.
1429316,Keyboard not working properly in address bar
1429336,Several reviews mentioning slow performance with latest update
1429362,Incorrect handling of .ics calendar files on Android
1429386,"[Leanplum] When the banner is displayed, opened menus freeze on screen"
1429585,share sheet icons size not constrained
1429660,Unable to scroll to the end of the page then crash
1429735,Move Firefox Account into Separated state after user performed "Clear Data" for the app
1429757,Downloads context menu not working on some devices
1429893,JavaScript Error: "TypeError: moduleInfo is undefined" {file: "components/AboutRedirector.js" line: 89}
1429912,Missing some saved passwords when synchronising both firefox and firefox beta on the same android device
1429931,Location permission prompt is automatically dismissed when loading maps.google.com
1430024,[Staging server] Some options from Manage Account are not synced on Android
1430031,intent:// URIs do not pass S.market_referrer to Play Store
1430078,Intermittent testLoginsProvider | application crashed [@ dalvik-jit-code-cache (deleted) + 0xb858]
1430105,Intermittent testSettingsPages | Waiting for menu item ^Settings$ - ^Settings$ is present and enabled
1430122,Custom tab close button is too large compared to the other buttons
1430176,Android xpcshell logcats warn: "ActivityManager: Invalid packageName: xpcshell"
1430203,Wrong context menu shown for some nested elements
1430232,Perma failure toolkit/components/extensions/test/xpcshell/test_ext_privacy.js | xpcshell return code: 0
1430235,Keep view-source context menu working on Android without HTML <menu> support
1430310,PocketStoriesLoader hits the network during tests
1430328,Intermittent testEventDispatcher | Should have completed event before timeout -
1430342,Intermittent testDistribution | java-exception java.lang.NullPointerException at org.mozilla.gecko.tests.testDistribution$3.distributionNotFound(testDistribution.java:245)
1430409,Crash in libhwui.so@0x73999
1430487,Bookmarks sync on Android mixes the contents of bookmark folders with the same name
1430500,Hit MOZ_CRASH(accessing non-early pref consoleservice.logcat before late prefs are set)
1430518,Unexpected assertion in mobile/android/tests/browser/chrome/test_media_playback.html if fix of bug 1193394 ix applied
1430529,Firefox frequently OOMs on 1GB Android 4.4 device [Regression]
1430546,Orange sync icon on about:home
1430646,Crashes when downloading “large” file through data: URI
1430647,Remove remaining uses of -moz-border-*-colors from android themes
1430652,Enable App to be stored on external storage (sd-card)
1430731,[PWA] PWA with mixed content homepage opens 2 tabs
1430816,Intermittent http://10.0.2.2:8854/jsreftest/tests/jsreftest.html?test=test262/built-ins/Function/15.3.5.4_2-44gs.js | application ran for longer than allowed maximum time
1430952,"Add ""tl"", ""km"" and ""meh"" to Fennec all-locales for single-locale builds"
1430966,Firefox app name seems strange (org.mozilla.firefox_beta) and shares battery usage data due to shared ID
1430976,Intermittent w3c-css/submitted/masking/mask-image-4a.html == w3c-css/submitted/masking/blank.html | application ran for longer than allowed maximum time
1430987,Intermittent dom/base/test/test_bug444322.html | application ran for longer than allowed maximum time
1431017,FF elements are incorrectly displayed in pop-up view
1431032,YouTube links opened from external app in Browser don't play automatically
1431101,Provide a bookmarks widget
1431207,Video from web content shows up over top of tab switcher screen
1431329,Omit Fennec Media playback Notification when viewed in private browsing mode
1431423,[RTL] Incorrect tab highlight on RTL language setting
1431433,Android emulator test configuration could be tidier
1431451,Intermittent position-dynamic-changes/vertical/topN-heightA-bottomN.html?padding_parent == position-dynamic-changes/vertical/topN-heightA-bottomN-ref.html?padding_parent | application ran for longer than allowed maximum time
1431456,send tab to device url is truncated
1431504,Crash when setting default browser in latest beta: [@ java.lang.SecurityException: at android.os.Parcel.readException(Parcel.java) ]
1431508,"about: should display an error, not a blank page"
1431512,Replace <menu> usage in Fennec
1431515,Intermittent testSnackbarAPI | application crashed [@ libdvm.so + 0x26d64]
1431540,Intermittent testSessionOOMSave | Waiting for tabs panel to open. -
1431544,Remove FHR client id migration code.
1431633,Locale switcher should use language names from toolkit
1431729,Geeting about:blank page when clicking on links
1431746,Close button in custom tabs is huge
1431759,Remove obsolete html5 attribute contextmenu from Fennec
1432019,Improve scrolling on Android by dispatching vsync notifications on the UI thread
1432021,"Improve scrolling by not firing scroll linked image reveals during scrolling, like Chromium seems to"
1432140,Links opened in Fennec from web apps/custom tabs don't go in the tab queue
1432143,Ever since V57.0 No video supported format and MIME type found
1432167,Crash in java.lang.NullPointerException: Attempt to invoke virtual method 'boolean org.mozilla.gecko.extensions.ExtensionPermissionsHelper.getShowUpdateIcon()' on a null object reference at org.mozilla.gecko.BrowserApp.onPrepareOptionsMenu(BrowserApp.j...
1432171,keep getting parse error when trying to install Firefox nightly on my kindle fire
1432180,CustomTab: different size and resolution on share button
1432368,Intermittent selection/extend-1c.html == selection/extend-1-ref.html | application ran for longer than allowed maximum time
1432373,Intermittent pagination/820496-1.html == pagination/820496-1-ref.html | application ran for longer than allowed maximum time
1432389,Downloading big files is difficult as there is no pause option.
1432457,Display a warning when removing a folder with multiple bookmarks
1432506,Implement the Canvas Permission Prompt on Fennec
1432598,First-run screen displayed during Android browser tests
1432619,Remove DawnHelper
1432624,Firefox Custom Tabs have a phishing risk
1432639,Moving menu point "Add-ons" into "Tools" for unification with desktop version
1432785,Intermittent testTabStrip | java-exception java.lang.ArrayIndexOutOfBoundsException: length=1; index=1 at android.database.sqlite.SQLiteConnection$OperationLog.beginOperation(SQLiteConnection.java:1321)
1432854,Tab counter doesn't show native numbers for non-arabic numeral languages
1432998,Replace httpClient with modern networking APIs
1433137,Intermittent scrolling/propagated-overflow-style-1b.html == scrolling/propagated-overflow-style-1-ref.html | application ran for longer than allowed maximum time
1433138,Intermittent scrolling/fractional-scroll-area.html?top=0&outerBottom=100.4&innerBottom=199.6 == scrolling/fractional-scroll-area.html?top=0&outerBottom=100&innerBottom=200 | application ran for longer than allowed maximum time
1433163,Android 4.3 opt R18 (and debug R35 and others) sometimes runs too long / times out
1433204,Crash in mozilla::dom::HTMLInputElementBinding::set_defaultValue
1433279,Update hostutils for Android tests
1433308,Review 'mach android-emulator' configurations/avds
1433347,Intermittent async-scrolling/position-fixed-body.html == async-scrolling/position-fixed-body-ref.html | application ran for longer than allowed maximum time
1433486,Intermittent scrolling/move-item.html == scrolling/move-item-ref.html | application ran for longer than allowed maximum time
1433515,"Intermittent testUnifiedTelemetryClientId | java-exception java.util.concurrent.RejectedExecutionException: Task android.support.v4.content.ModernAsyncTask$3@41fd0098 rejected from java.util.concurrent.ThreadPoolExecutor@41aa46b8[Running, pool size = 128"
1433547,manifest.json not updated
1433554,Fullscreen video forces landscape mode
1433600,Slow URL resolution probably due Safe Browsing
1433629,"Selecting one word in a search bar (e.g. Qwant, Google, etc.) in order toi replace it does not open the keyboard (only Copy/Paste)"
1433670,Add-on install whitelist occasionally forgets addons.mozilla.org
1433706,Intermittent position-dynamic-changes/vertical/toauto-topA-heightN-bottomA.html?padding_parent == position-dynamic-changes/vertical/toauto-topA-heightN-bottomA-ref.html?padding_parent | application ran for longer than allowed maximum time
1433715,Folder icons not displayed when browsing the file system
1433778,Synchronize reader mode state (or reading list) across Firefox products
1433803,Crash in libGLESv2_adreno.so@0x309c2a
1433811,Web App Display Mode not recognized when icons have duplicate sizes.
1433817,The height of Options page is using only 40-50% of the screen.
1433840,Main menu is closed when website starts loading
1433862,[Feature Request]Move add-on's menu to above
1433864,"""disabled"" is not displayed as a hyperlink in about:telemetry"
1433872,ℹ is showing as black square in FF Android but fine on FF(pc)
1433899,toggles broken in about:config
1434066,sync does not work
1434097,Allow Open with... other browsers
1434126,Web Apps keep running after they are killed
1434165,Intermittent testPrivateBrowsing | application crashed [@ libdvm.so + 0x21bdc]
1434210,White page is displayed when using a long search query
1434249,twitch.tv videos don't play if Media autoplay is OFF
1434269,Manifest icons resize
1434291,"Identify when mobile data is denied to Firefox, notify user"
1434311,Reuse the onboarding design for Synced Devices panel
1434336,Crash in java.lang.SecurityException: Invalid columns in request: download_apk_install_way at android.os.Parcel.readException(Parcel.java)
1434406,Intermittent testLoginsProvider - DeleteLoginsByNonExistentGuidTest | application crashed [@ 0x4c465be0]
1434423,"mach commands for Android testing offer to install firefox, even when --app is specified"
1434431,Glitch in the download icon on Always On Display
1434469,Add a permission for coarse location data
1434504,texImage2D errors on video textures
1434585,Intermittent testSnackbarAPI | GeckoEventExpecter - blockForEvent timeout: Robocop:Java
1434603,Settings Header not changed when visiting sub-menus
1434648,[Android O] Share link/image context menu icons are uneven
1434728,Intermittent autophone-s1s2 | Failed to get all measurements
1434994,Crash in @0x0 | std::sys_common::backtrace::__rust_begin_short_backtrace<T>
1435031,Make it easier to use geckoview_example from android_emulator_unittest.py
1435046,There is no obvious way to delete an email from a dropdown list of a login page.GitHub exactly.I am using android OS
1435049,Intermittent testDistribution | application crashed [@ dalvik-jit-code-cache (deleted) + 0x2e1c0]
1435060,"if a search phrase begins with a bookmark keyword, the bookmark is loaded instead of a web search being executed"
1435083,[ServiceWorker] client.focus() brings wrong activity to the front
1435164,Intermittent testSessionHistory | application crashed [@ libc.so + 0x1d11c]
1435171,RTL layout cheange to LTR when autorotate feature of android is turned on
1435189,Disabling auto-play does not take effect for Youtube videos
1435205,Master password easily bypassed
1435236,Autocomplete not working
1435242,Floating text selection menu overlaps text selection handles
1435246,Switch to tab displayed in Private Browsing for URL opened in Normal Browsing
1435290,Images on image documents need shrinking to fit on screen
1435344,Send tab telemetry
1435416,"""Cancel"" button is not localizable in ""Clear private data"" screens"
1435420,Uninstalling desktop shortcut for PWA uninstalls Firefox!
1435428,Bookmark button disappeares in 3 dots menu
1435442,Addon self reinstall after uninstall
1435467,"Intermittent testIdnSupport | Exception caught - junit.framework.AssertionFailedError: View with id: '2131689749', resource name: 'browser_toolbar' is not found!"
1435486,Intermittent selection/extend-1b.html == selection/extend-1-ref.html | application ran for longer than allowed maximum time
1435492,Firefox focus redirects to random.org
1435494,"Implement right and middle clicks, doubleclicks and wheel for Android phones with a stilus"
1435505,I can't download by hold on a link to mp3 file via context menu
1435531,Password shown for 2 seconds after pasting it
1435544,Intermittent css-blending/background-blending-color-burn.html == css-blending/background-blending-color-burn-ref.svg | application ran for longer than allowed maximum time
1435809,Cannot sign in to Android after Firefox Sync account was locked
1435817,[meta] Leanplum priority bugs
1435972,Automatic zoom after visiting a website and coming back
1435988,disable the border raduis styling on range elements
1436183,Update hostutils for Android tests (again)
1436291,Context menu animation broken when "Delete from History" is added
1436314,Scroll end animation when using inertial scrolling
1436335,Webrtc page unresponsive after killing fennec while an audio/video stream is on - Samsung Note 4
1436379,Links do not work when Pocket stories are updated but the new content is not displayed
1436392,Intermittent bidi/dirAuto/dynamicDirAuto-setRTL-InvalidDir1.html == bidi/dirAuto/dynamicDirAuto-refRTL-NoDir.html | application ran for longer than allowed maximum time
1436561,Intermittent testActivityStreamPocketReferrer | Waiting for context menu to close after item selection. with timeout 5000. -
1436583,Intermittent testJavascriptBridge | Waiting for Toolbar to enter editing mode. -
1436631,Intermittent testUnifiedTelemetryClientId | java-exception java.util.concurrent.TimeoutException: org.apache.harmony.xnet.provider.jsse.OpenSSLKey.finalize() timed out after 10 seconds at
1436634,Firefox starts to download the file as soon as i click on it in the background without even asking.
1436640,Firefox for Android doesn't reject the promise returned by getUserMedia
1436647,Intermittent position-dynamic-changes/vertical/topN-heightN-bottomA.html?padding_parent == position-dynamic-changes/vertical/topN-heightN-bottomA-ref.html?padding_parent | application ran for longer than allowed maximum time
1436667,Crash in libhwui.so@0x2fe72
1436748,Intermittent backgrounds/vector/tall--cover--percent-width-percent-height.html == backgrounds/vector/ref-tall-lime256x384-aqua256x384.html | application ran for longer than allowed maximum time
1436874,Restrict device motion and orientation events to secure contexts
1436937,Intermittent testUnifiedTelemetryClientId | java-exception java.util.concurrent.RejectedExecutionException: Task android.support.v4.content.ModernAsyncTask$3@42158e50 rejected from java.util.concurrent.ThreadPoolExecutor@41a6a678
1437101,Intermittent testFilterOpenTab | application crashed [@ libdvm.so + 0x6bd1a]
1437330,No keyboard shortcut for location bar
1437331,No keyboard shortcut for switching tabs
1437350,Javascript does not find a tag in JSON
1437372,Clicking links with small touch areas may be difficult
1437376,Give users more direct control over font size scaling?
1437380,Intermittent bugs/550325-1.html == bugs/550325-1-ref.html | application ran for longer than allowed maximum time
1437382,Private tab updates shortly before backgrounding aren't guaranteed to make it into storage
1437386,Top Sites sometimes loses favicons
1437388,Remove differing session store write interval while in background
1437430,Make some immutable final fields static
1437504,[RTL] Tab tray not translated
1437566,Add a search engine option disabled for some pages
1437699,Expand Leanplum in other countries/locales for our Android users
1437702,Integrate onboarding slides into Leanplum as custom templates / variables
1437764,Intermittent position-dynamic-changes/vertical/fromauto-topA-heightA-bottomN.html?padding_abspos == position-dynamic-changes/vertical/topA-heightA-bottomN-ref.html?padding_abspos | application ran for longer than allowed maximum time
1437765,Intermittent position-dynamic-changes/vertical/fromauto-topA-heightA-bottomN.html?padding_abspos == position-dynamic-changes/vertical/topA-heightA-bottomN-ref.html?padding_abspos | application ran for longer than allowed maximum time
1437776,Intermittent position-dynamic-changes/horizontal/fromauto-leftN-widthN-rightA.html?padding_abspos == position-dynamic-changes/horizontal/leftN-widthN-rightA-ref.html?padding_abspos | application ran for longer than allowed maximum time
1437837,Add option to switch to desktop UI.
1437839,Add Firefox to Google Play Store for Android TV.
1437871,Release and Beta share granted runtime permissions
1437874,camera still working after firefox killed - user doesn't know
1437898,Intermittent svg/as-image/list-simple-1.html == svg/as-image/list-simple-1-ref.html | application ran for longer than allowed maximum time
1437900,Intermittent position-dynamic-changes/vertical/fromauto-topN-heightN-bottomA.html?padding_abspos == position-dynamic-changes/vertical/topN-heightN-bottomA-ref.html?padding_abspos | application ran for longer than allowed maximum time
1437930,Scrolling on images broken since bug 1435290
1438010,"""Open in app"" prompt doesn't support double tapping to launch an app"
1438029,window.href = sms:... doesn't open SMS app
1438080,"Build and publish 64-bit (arm64-v8a, x86_64) artifacts for Android"
1438362,Intermittent testPictureLinkContextMenu | Exception caught - junit.framework.AssertionFailedError: Text string: '^Image$' is not found!
1438413,Intermittent position-dynamic-changes/vertical/topN-heightA-bottomA.html?padding_parent == position-dynamic-changes/vertical/topN-heightA-bottomA-ref.html?padding_parent | application ran for longer than allowed maximum time
1438432,Intermittent position-dynamic-changes/vertical/toauto-topN-heightA-bottomA.html?padding_abspos == position-dynamic-changes/vertical/toauto-topN-heightA-bottomA-ref.html?padding_abspos | application ran for longer than allowed maximum time
1438547,Crash in libhwui.so@0x8249e (OnePlus One devices)
1438582,I literally don't have any idea how much papers for facing the same problem I do whenever I try to take the marks on any site that doesn't happen
1438626,Animation on tomshardware.com stutters with Firefox / Chrome is smooth as butter
1438661,Intermittent position-dynamic-changes/vertical/topA-heightN-bottomN.html?padding_parent == position-dynamic-changes/vertical/topA-heightN-bottomN-ref.html?padding_parent | application ran for longer than allowed maximum time
1438680,Leanplum Banners Missing Some Functions in Firefox Nightly
1438682,Google Pinyin IME duplicates text after switching focus
1438716,Upgrade Leanplum SDK
1438743,Intermittent w3c-css/submitted/shapes1/shape-outside-ellipse-035.html == w3c-css/submitted/shapes1/shape-outside-ellipse-035-ref.html | application ran for longer than allowed maximum time
1438808,Crash in android.content.res.Resources$NotFoundException: Resource is not a Drawable (color or path): TypedValue{t=0x12/d=0x0 a=1 r=0x10800d3} at android.content.res.Resources.loadDrawable(Resources.java)
1438856,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ 0x0]
1438875,Intermittent svg/smil/syncbase/changed-interval-simple-1.svg == svg/smil/syncbase/green-box-ref.svg | application ran for longer than allowed maximum time
1438890,Intermittent css-ui-invalid/input/input-url-valid.html == css-ui-invalid/input/input-url-ref.html | application ran for longer than allowed maximum time
1438924,Chromebook: Firefox Nightly Android only resizes to full screen or default size.
1438926,Chromebook: Allow for page resize when requesting desktop version of site
1438981,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ dalvik-jit-code-cache (deleted) + 0x6cc8]
1438997,Intermittent testSessionFilePreservation | failed to verify session JSON - org.mozilla.gecko.tests.SessionTest$AssertException: Could not read sessionstore.js
1439008,Intermittent marionette.py | application crashed [@ 0x4c465fa0]
1439065,Firefox Klar (Firefox Focus) is vulnerable to WebGL fingerprinting
1439075,Downloads still continue even after exiting or cancelling the app chooser dialogue
1439166,Intermittent testBug1217581 | application crashed [@ dalvik-jit-code-cache (deleted) + 0xfc58]
1439228,allow multiple select for file picker
1439259,textarea duplicates characters
1439380,Remove uses of Promise.jsm from mobile/android
1439513,about:home is blank when using picture in picture
1439639,Using Sync between PC and Android app with 2000+ items causes some bookmarks to delete/reorder with in sub folders
1439752,Add a test to verify getPackagedLocaleTags
1439804,Intermittent mobile/android/tests/browser/chrome/test_reader_view.html | java-exception java.util.concurrent.TimeoutException: org.mozilla.gecko.mozglue.NativeZip.finalize() timed out after 10 seconds at org.mozilla.gecko.mozglue.NativeZip
1439808,"Intermittent testReorderTabs | Tab 0 ids - got 0, expected 1"
1439831,Enable ESLint rule mozilla/use-services for mobile/android
1439838,Enable ESLint rule no-unused-vars for the same directories in mobile/android as no-undef
1439901,Intermittent Automation Error: Exception caught while running tests
1440071,Recommended by Pocket section no longer displayed in Canada
1440100,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ dalvik-jit-code-cache (deleted) + 0x7b3a]
1440304,Sharing an image produces an Android intent without the image
1440422,Enable Android Auto Backup
1440551,login page
1440623,Crash in java.lang.IllegalStateException: Unexpectedly missing any accounts of type org.mozilla.fennec_aurora_fxaccount at org.mozilla.gecko.fxa.authenticator.AndroidFxAccount.refreshAndroidAccount(AndroidFxAccount.java)
1440655,Crash in libhwui.so@0x4964e
1440657,Crash in libGLESv2_adreno.so@0x12cf5a
1440661,Adding PWA to Home screen is not performed
1440666,"With a download paused, tabs are restored"
1440674,remoteautomation.py could be tidier
1440684,'mach robocop' busted: TypeError: grant_runtime_permissions() takes exactly 2 arguments (1 given)
1440714,Migrate remaining clients of devicemanagerADB to adb.py
1440725,Add a pref for requesting a desktop version of websites by default
1440769,disconnecting Android device doesn't always disconnect device session from the FxA server.
1440861,Intermittent testNewTab | GeckoEventExpecter - blockForEvent timeout: Content:PageShow
1440960,Safebrowsing does not show provider when triggerred from custom tabs
1440999,Intermittent marionette.py | application crashed [@ dalvik-LinearAlloc (deleted) + 0x1a6a58]
1441103,Firefox can't search for a special type of query
1441116,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ libdvm.so + 0x81f52]
1441224,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ libdvm.so + 0x66c58]
1441281,Re-consider use of Atomic* variables in RecordsChannel
1441501,Counter icon not displayed
1441510,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ dalvik-jit-code-cache (deleted) + 0x14ada]
1441529,Switching between languages adds back search engines
1441673,Leakcanary complains about the UpdateServiceHelper runnable causing a "leak"
1441790,Android status bar appears in full screen mode on long tap
1442004,Move common images in searchplugins to resource urls
1442005,Add eBay to Fennec
1442054,Frequent Mn failures due to SingleLineTransformation | application crashed [@ dalvik-jit-code-cache (deleted) + 0x1bba][@ libdvm.so + 0x2de9a] when Gecko 60 merges to Beta on 2018-03-01
1442141,Horizontal Scrolling with Mouse wheel+ modifier key for Android
1442151,Intermittent Android 4.2 Return code: 1 | Failed to download android-sdk-linux.tar.xz
1442248,Crash in java.lang.NullPointerException: Attempt to invoke interface method 'java.lang.Object java.util.Map.get(java.lang.Object)' on a null object reference at org.mozilla.gecko.sync.GlobalSession.getSyncStageByName(GlobalSession.java)
1442326,Android sync event telemetry missing from ReDash
1442351,Crash in java.lang.NullPointerException: at org.mozilla.gecko.sync.GlobalSession.getSyncStageByName(GlobalSession.java)
1442578,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_navigation.py TestTLSNavigation.test_deactivation | application crashed [@ GeckoAppShellSupport::ReportJavaCrash]
1442727,Android debug crashtest crash report missing symbols
1442891,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_navigation.py TestRefresh.test_insecure_error | application crashed [@ dalvik-jit-code-cache (deleted) + 0x4bd4]
1442927,at certain system scalings (such as 300%) Firefox does not report or show the correct resolution
1442981,Icon for progressive web app is not added on my home scren
1443069,Intermittent testSessionPrivateBrowsing | got expected no change event - expected PASS | application crashed [@ mozilla::jni::Accessor::EndAccess<mozilla::java::AndroidGamepadManager::OnGamepadAdded_t> + 0x20]
1443131,URL bar is not displayed with "full-screen browsing" disabled
1443157,gUM capture doesn't display capture indicators in notification tray on Android
1443159,i need to view source page in phone
1443166,Tab queue prompt not displayed
1443324,Intermittent testICODecoder | application crashed [@ libdvm.so + 0x81f52]
1443436,Android dynamic toolbar code uses raw pointer to APZCTreeManager off the compositor thread (was getting CompositorBridgeParent in older versions)
1443629,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py TestScreenCaptureContent.test_capture_viewport | application crashed [@ dalvik-jit-code-cache (deleted) + 0xf2ce]
1443743,Pop-ups doorhanger not displayed in custom tabs
1443765,Fennec: Form changes invoke SessionStore more-or-less immediately causing low Speedometer scores
1443816,"""The proxy server is refusing connections"" when trying to run tests in android emulator in VirtualBox"
1443825,Update Sanitizing Method for Autocomplete list
1443963,Remove All Calls to FHR
1444051,"Why firefox focus can display full version of google search, and why firefox mobile can't?"
1444100,Intermittent text-decoration/underline-table-cell-quirks.html != text-decoration/underline-table-cell-quirks-notref.html | application ran for longer than allowed maximum time
1444209,Bump session restore failure telemetry
1444222,Consider using idleservice when deciding when or how long to wait to store sessiondata in Fennec
1444246,Android 'mach test' may not work with some host shells
1444318,Addons not shown in menu
1444343,Unable to edit question text on www.quora.com
1444381,Google Play Store update shows Firefox for Android beta even never installed beta
1444428,Remove unsafeSetInnerHTML in config.js
1444505,Firefox stable identified in Playstore as Firefox beta
1444549,Crash in java.lang.NumberFormatException: For input string: "@<addr>64" at java.lang.Integer.parseInt(Integer.java)
1444618,Exodus privacy mentions trackers in app (esp. DoubleClick/Google - adjust deps?)
1444683,No content://com.asus.filemanager.OpenFileProvider/file/sdcard/*/*.txt
1444719,Permafailing autophone-s1s2 | application crashed [@ MOZ_CrashOOL] and more with Error mmapping /data/app/org.mozilla.fennec_aurora-1.apk: Out of memory
1444768,Intermittently cannot search from the address bar until after restart
1444776,Tab Queue prompt needs to use APPLICATION_OVERLAY window type when targeting (and running on) Android O
1444832,Intermittent css-placeholder/css-background.html != css-placeholder/css-background-ref.html | application ran for longer than allowed maximum time
1444984,Add a pref to prevent progressive web application button appearing in toolbar
1444997,Click to chat using api.whatsapp.com does not work in Firefox Mobile (Android)
1445002,"Change the order of buttons in the toolbar (Reader Mode, PWA, etc) when there are more than two"
1445149,Eliminate the hardcoded notification ID for the current foreground notification
1445428,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ dalvik-jit-code-cache (deleted) + 0x14210]
1445462,Uploader may try to schedule a task on a queue that's been shutdown
1445535,moving background (parallax effect) only on fennec
1445564,often cannot open PDF files
1445578,Enable the import of user.js from storage on non-rooted devices
1445691,Ensure that Firefox for Android crash reports include android:versionCode
1445716,Run GeckoView junit tests in automation
1445722,User reports about unsolicited native notifications from Firefox for Android
1445798,Add Leanplum settings opt-out strings
1445799,User Attribute for Leanplum for Android Users that have Opted Out of Pocket in their Top Sites
1445840,Intermittent bugs/466395-1.html == bugs/466395-1-ref.html | application crashed [@ libc.so + 0x1b2d8]
1445846,Intermittent w3c-css/submitted/images3/object-fit-fill-svg-002o.html == w3c-css/submitted/images3/object-fit-fill-svg-002-ref.html | application ran for longer than allowed maximum time
1445847,Intermittent w3c-css/submitted/images3/object-fit-fill-svg-002o.html == w3c-css/submitted/images3/object-fit-fill-svg-002-ref.html | application ran for longer than allowed maximum time
1445851,Intermittent text-decoration/overline-style-inline-dotted-quirks.html != text-decoration/overline-style-inline-quirks-ref.html | application ran for longer than allowed maximum time
1445932,Intermittent testLinkContextMenu | application crashed [@ dalvik-jit-code-cache (deleted) + 0x808c]
1446000,Share menu uses next option if clicked one not available without informing the user
1446259,Intermittent css-grid/grid-fragmentation-008.html == css-grid/grid-fragmentation-008-ref.html | application ran for longer than allowed maximum time
1446327,Intermittent image/test/reftest/pngsuite-palettes/pp0n2c16.png == image/test/reftest/pngsuite-palettes/pp0n2c16.html | application ran for longer than allowed maximum time
1446487,"Screenshots of Firefox for Android in Play Market are for old version(<56) (country Ukraine, Russian localization)"
1446523,"Intermittent testActivityStreamPocketReferrer | Exception caught - junit.framework.AssertionFailedError: Click at (107.5, 27.0) can not be completed! (java.lang.SecurityException: Injecting to another application requires INJECT_EVENTS permission)"
1446542,Long-press on saved logins in about:logins should bring up context menu
1446565,Cleanup Android xpcshell test harness with some sort of process class
1446638,History hidden when releasing back button
1446728,360 video plays only audio
1446765,Firefox android stopped to hand over .m3u to vlc and fails playing it itself
1446769,SEC_ERROR_UNKNOWN_ISSUER even after importing CA certificate
1446874,Intermittent scrolling/less-than-scrollbar-height.html == scrolling/less-than-scrollbar-height-ref.html | application ran for longer than allowed maximum time
1447048,No equivalent of Shift + right click to override site-specific context menu handling
1447106,Intermittent w3c-css/submitted/shapes1/shape-outside-circle-038.html == w3c-css/submitted/shapes1/shape-outside-circle-036-ref.html | application ran for longer than allowed maximum time
1447107,Intermittent position-dynamic-changes/mixed-abspos-root/mixed-dimentionA.html?padding_parent == position-dynamic-changes/mixed-abspos-root/mixed-dimentionA-ref.html?padding_parent | application ran for longer than allowed maximum time
1447200,Intermittent testAboutHomeVisibility | application crashed [@ EVP_PKEY_CTX_free]
1447206,Mozilla enters some bad loops and does'nt work
1447223,pwa permission setting
1447419,Miserable performance on mobile.twitter.com
1447430,Intermittent mathml/tablespacing-3.html == mathml/tablespacing-3-ref.html | application ran for longer than allowed maximum time
1447437,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ libdvm.so + 0x21bdc]
1447478,Misplaced element on Microsoft news site (Request desktop site)
1447501,Intermittent bugs/307102-2.html == bugs/307102-2-ref.html | application ran for longer than allowed maximum time
1447510,Intermittent image-element/element-paint-paintserversize-rounding-01.html == image-element/element-paint-paintserversize-rounding-01-ref.html | application ran for longer than allowed maximum time
1447511,[PWA] Allow copying link URL
1447557,cursor
1447590,No way to force full screen on firefox for android
1447607,Crash in __fixunsdfsi
1447703,Firefox Focus possible memory leak when opening a lot of videos content
1447737,UI issues on split screen on high dpi (duplicate forward & back buttons and no address bar)
1447882,Intermittent position-dynamic-changes/vertical/fromauto-topN-heightA-bottomA.html?border_abspos == position-dynamic-changes/vertical/topN-heightA-bottomA-ref.html?border_abspos | application ran for longer than allowed maximum time
1447915,Intermittent autophone-s1s2 | java.util.concurrent.TimeoutException: org.mozilla.gecko.mozglue.NativeZip.finalize() timed out after 10 seconds at org.mozilla.gecko.mozglue.NativeZip._release(Native Method)
1447916,Missing VideoTexture and Skinned Meshes
1447936,Wrong toast notification when removing a bookmark
1448065,Pocket Recommendations not available in Fennec for en-CA
1448072,Duplicate panels settings items in Fennec after changing locale
1448079,"Layout bugs in search engine favicons on the Awesomescreen, some intermittent"
1448108,Clean up libstagefright leftovers
1448163,Web App scopes are broken
1448186,shoutcast.com doesn't work properly with Firefox android 59-60
1448211,Firefox android fails to render pages
1448305,Private browsing mode leaks site visits via cached favicons
1448315,Intermittent svg/smil/syncbase/sandwich-priority-8.svg == svg/smil/syncbase/green-box-ref.svg | After "application ran for longer than allowed maximum time"
1448375,Custom tabs launch an instance of Firefox on open
1448388,Poor discoverability & inconsistent behaviour on Top Sites
1448406,Firefox Android 59.0.1 - displays small rectangle part of whole display screen
1448422,Leanplum Banner cropped text
1448429,Leanplum Banner missing text
1448458,Intermittent box-ordinal/dynamic-1-remove-to-one-grouped-1.xul == box-ordinal/dynamic-1-ref.xul | application ran for longer than allowed maximum time
1448462,Intermittent testInputConnection | java-exception java.util.concurrent.TimeoutException: org.apache.harmony.xnet.provider.jsse.OpenSSLMessageDigestJDK$MD5.finalize() timed out after 10 seconds at org.apache.harmony.xnet.provider.jsse
1448486,Attempting to connect to a URL with subdomain "_" fails to resolve correctly
1448528,Missing exit full-screen button for videos
1448556,HTML media controls now include volume slider in landscape mode
1448558,Youtube search extremely slow with Request desktop mode and new youtube layout
1448617,"Intermittent testViewPageSource | Exception caught - junit.framework.AssertionFailedError: View with id: '2131689749', resource name: 'browser_toolbar' is not found!"
1448649,Useragent missing device name therefore breaking resolution detection code
1448696,Cannot run reftests locally
1448697,New code to kill already running Firefox instance doesn't work on my phone (kill: Operation not permitted)
1448698,"""ImportError: No module named fix_linux_stack"" after running android mochitest with debug build"
1448710,Firefox for Android has trouble displaying Gumtree website listings
1448729,"new tab page should be labeled ""New Tab"", not ""Firefox Home"""
1448800,Intermittent testDistribution | java-exception java.lang.NullPointerException at org.mozilla.gecko.tests.testDistribution$3.distributionNotFound(testDistribution.java:245)
1448864,Slow page loading on some URL
1448872,The password doorhanger appears when deleting an account
1448899,Focus: certain URLs are not parsed/recognized and fail to load
1448903,"Fennec should save ""request desktop site"" preference on a per-domain basis, not per-tab"
1449048,Page redirection is slow while loading links from shortened URLs on Firefox Android
1449110,"Closing application do not really close tab and when open application back, we have to close previous tabs before using app"
1449130,URL truncated in portrait mode
1449177,Crash in java.lang.ClassCastException: android.widget.FrameLayout cannot be cast to org.mozilla.gecko.activitystream.homepanel.stream.StreamOverridablePageIconLayout at org.mozilla.gecko.activitystream.homepanel.stream.WebpageItemRow.<init>(WebpageItem...
1449196,Intermittent testHistoryService | GeckoEventExpecter - blockForEvent timeout: Robocop:Java
1449212,Add enabled accessibility services to core ping.
1449257,Deadlock on start of Firefox 54.0.1 on Android 6.0.1
1449316,Data review for enabled accessibility services information in core ping
1449363,Intermittent testBrowserDatabaseHelperUpgrades | java-exception java.lang.NoSuchFieldError: ADDITIONAL at java.util.HashMap.get(HashMap.java:308)
1449396,Crashes on bing signin
1449450,unfortunatelyb service has beem\n stopped
1449463,Intermittent testHistoryService | application crashed [@ mozilla::net::nsSocketTransport::InitiateSocket]
1449467,please reduce the ads while browsing
1449471,i have an issue of redirecting to duplicate pages
1449535,Intermittent testPasswordProvider | application crashed [@ dalvik-jit-code-cache (deleted) + 0x1433c]
1449553,Android: "X" in address bar exits text input instead of clearing the text.
1449556,Vertical scrollbar not displayed for Top Sites Panel
1449567,Crash in java.lang.NullPointerException: NativeException NullHandle() [T = nsWindow::LayerViewSupport] at org.mozilla.gecko.mozglue.GeckoLoader.nativeRun(Native Method)
1449618,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_click_scrolling.py TestClickScrolling.test_scroll_radio_button_into_view | IOError: Process has been unexpectedly closed (Exit code: 0) (Reason: No data received over socket)
1449683,Crash in java.lang.ClassCastException: android.view.ViewStub cannot be cast to org.mozilla.gecko.home.HomeListView at org.mozilla.gecko.home.BrowserSearch.onCreateView(BrowserSearch.java)
1449695,Crash in java.lang.UnsupportedOperationException: Can't convert value at index 2 to dimension: type=0x3 at android.content.res.TypedArray.getDimensionPixelSize(TypedArray.java)
1449762,Incorrect argument to get_logcat(): unexpected keyword argument 'filterOutRegexps'
1449767,Error message when no robocop screenshots found: remote object '/mnt/sdcard/Robotium-Screenshots' does not exist
1449801,Intermittent position-dynamic-changes/vertical/fromauto-topA-heightN-bottomN.html?margin_parent == position-dynamic-changes/vertical/topA-heightN-bottomN-ref.html?margin_parent | application ran for longer than allowed maximum time
1449852,Intermittent autophone-s1s2 | Uncaught device error during autophone-s1s2.setup_job.
1449866,Address bar is visible at the bottom of the tab drawer on phones with very tall aspect ratios
1449943,AppRTC buttons are selected as text
1450013,Two loading throbbers shown for YouTube videos
1450076,Add shortcut for opening new private tab
1450105,[meta-ish] Unexplained crashes in release: 59.*
1450110,"Quit function is not working. App closes, but tabs still there when you reopen app."
1450140,Fullscreen New Tab Page Exposes Url Bar
1450176,Intermittent bidi/bidi-001-v.html == bidi/bidi-001-ref.html | application ran for longer than allowed maximum time
1450191,"While playing youtube video in full screen mode, it shifts the video screen to left(Firefox for Android)"
1450312,Nightly crashes on opening telegram app on android
1450332,Intermittent css-ui-invalid/button/button-disabled.html == css-ui-invalid/button/button-disabled-ref.html | application ran for longer than allowed maximum time
1450447,Start using notification channels
1450449,Review Uri.fromFile usage
1450450,[meta] Android API 26 Migration
1450456,Intermittent testICODecoder | application crashed [@ dalvik-jit-code-cache (deleted) + 0xeefc]
1450519,Intermittent testSessionOOMSave | java-exception java.lang.NullPointerException at java.lang.Daemons$Daemon.isRunning(Daemons.java:75)
1450536,add-ons name often won't show up on the menu.
1450581,Intermittent testAboutHomeVisibility | application crashed [@ dalvik-jit-code-cache (deleted) + 0x26b78]
1450793,Kernel changes on some devices are causing a huge crash spike (especially on S8)
1450836,Intermittent text-decoration/vertical-mode-decorations-1.html == text-decoration/vertical-mode-decorations-1-ref.html | application ran for longer than allowed maximum time
1450840,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ u_terminateChars_61]
1450846,Firefox Nightly 61 keeps crashing on Android
1450890,Intermittent ADBProcessError: args: adb -s emulator-5554 wait-for-device shell am start -W -n org.mozilla.fennec_aurora/org.mozilla.gecko.BrowserApp -a android.intent.action
1450895,[Fennec Bookmark Management] "Save"button enabled when "name" field is empty
1450928,Changing the display size to small gives you the tablet version of FF on Pixel
1450976,Crash in libGLES_mali.so@0x2f290
1451061,Review Permissions usage for Android 8 behaviour changes
1451077,Emulator log clutters test logs
1451100,Crash in libhwui.so@0x86c7e
1451230,Crash in dalvik-main space (region space) (deleted)@0x3bae221a
1451328,Intermittent flexbox/flexbox-dyn-changeFrameWidth-4.xhtml == flexbox/flexbox-dyn-changeFrameWidth-4-ref.xhtml | application ran for longer than allowed maximum time
1451509,Intermittent testSnackbarAPI | application timed out after 180 seconds with no output
1451525,Convert roboextender extension to a webextension
1451565,Upgrade to Robolectric 3.8
1451583,Intermittent testSessionOOMSave | application crashed [@ libdvm.so + 0x2aae4]
1451590,Add "bs" and "trs" in Fennec maemo-locale for multi-locale builds
1451674,Toolbar does not hide when showing bugzilla pages
1451730,Throbber is not shown when Youtube is in Full screen mode
1451751,Add setting to disable all notification permission prompts (Android)
1451855,"Intermittent testViewPageSource | The Toolbar title is view-source:about:firefox - got about:firefox, expected view-source:about:firefox"
1451891,More crashes in __fixunsdfsi
1451917,Intermittent bugs/635373-1.html == bugs/635373-1-ref.html | application ran for longer than allowed maximum time
1451924,Intermittent testAboutHomeVisibility | application crashed [@ libc.so + 0x1e524]
1451939,Intermittent testSettingsPages | Waiting for menu item ^General$ - ^General$ is present and enabled
1451979,Intermittent testUITelemetry | Exception caught - junit.framework.AssertionFailedError: TEST-UNEXPECTED-FAIL | testUITelemetry | GeckoEventExpecter - blockForEvent timeout: Robocop:Java
1451980,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_click_scrolling.py TestClickScrolling.test_scroll_radio_button_into_view | application crashed [@ GeckoAppShellSupport::ReportJavaCrash]
1452016,Firefox should also have option to select images from gallery
1452173,Add Leanplum documentation for Users Opting out of pocket in top sites
1452222,Intermittent position-dynamic-changes/horizontal/leftN-widthA-rightA-2.html == position-dynamic-changes/horizontal/leftN-widthA-rightA-2-ref.html | application ran for longer than allowed maximum time
1452344,Intermittent details-summary/open-details-first-line-2.html == details-summary/open-details-first-line-ref.html | application ran for longer than allowed maximum time
1452362,Intermittent testMailToContextMenu | application crashed [@ dalvik-jit-code-cache (deleted) + 0x98]
1452365,Intermittent bugs/1375315-11.html == bugs/1375315-11-ref.html | application ran for longer than allowed maximum time
1452396,no reaction on menu items and links at pica-marker.com
1452399,|mach mochitest (or reftest) <dir> --app=org.mozilla.geckoview.test| does not complete
1452425,Intermittent svg/as-image/svg-image-recursive-2a.svg == svg/as-image/svg-image-recursive-2-ref.svg | application ran for longer than allowed maximum time
1452427,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py TestScreenCaptureContent.test_capture_viewport | application crashed [@ libdvm.so + 0x26eec]
1452429,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py TestScreenCaptureContent.test_scroll_off | application crashed [@ dalvik-jit-code-cache (deleted) + 0x5ea4]
1452430,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py TestScreenCaptureContent.test_capture_element | application crashed [@ GeckoAppShellSupport::ReportJavaCrash]
1452435,Intermittent table-bordercollapse/frame_vsides_rules_cols.html == table-bordercollapse/frame_vsides_rules_cols_ref.html | application ran for longer than allowed maximum time
1452440,Nightly on Android stopped updating
1452443,Missing highlight when tabbing through awesome bar on Android
1452444,Ctrl +/- should scale pages like on desktop Firefox
1452456,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py TestScreenCaptureContent.test_highlight_elements | application crashed [@ dalvik-jit-code-cache (deleted) + 0x3468]
1452457,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_click_scrolling.py TestClickScrolling.test_do_not_scroll_again_if_element_is_already_in_view | application crashed [@ 0x6]
1452458,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_click_scrolling.py TestClickScrolling.test_do_not_scroll_again_if_element_is_already_in_view | application crashed [@ 0x6]
1452508,Intermittent testActivityStreamPocketReferrer | application crashed [@ dalvik-jit-code-cache (deleted) + 0x98]
1452510,Intermittent w3c-css/submitted/shapes1/shape-outside-ellipse-036.html == w3c-css/submitted/shapes1/shape-outside-ellipse-036-ref.html | application ran for longer than allowed maximum time
1452541,Intermittent svg/as-image/svg-image-simple-1.svg == svg/as-image/lime100x100.svg | application ran for longer than allowed maximum time
1452548,AddOn Menu entry disappears
1452554,Intermittent testViewPageSource | Waiting for menu item View Page Source to be enabled. -
1452555,Intermittent bugs/380227-1.html == bugs/380227-1-ref.html | application ran for longer than allowed maximum time
1452556,Intermittent position-dynamic-changes/vertical/toauto-topA-heightN-bottomN.html?padding_parent == position-dynamic-changes/vertical/toauto-topA-heightN-bottomN-ref.html?padding_parent | application ran for longer than allowed maximum time
1452694,Use TestRunnerActivity for geckoview mochitest/reftest
1452712,Printing in Reader View prints the Print Settings Icon on every page
1452778,Intermittent robocop_head.js | [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIPrefBranch.getBoolPref]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: resource://gre/modules/Deprecated.jsm :
1452783,Enable Report Site Issue menu button for Beta users
1452795,"Add ""lij"", and ""mix"" to Fennec all-locales for single-locale builds"
1452953,(Feature Request) Swipe over address bar to switch between tabs
1452956,Android test logs' logcat dump missing newlines
1452968,Syfy.com header bar is badly positioned after scrolling
1452983,Remove MOZ_MIN_CPU_VERSION
1453049,Crash in libhwui.so@0x8705e
1453154,Add Leanplum documentation for Users resuming the app from background
1453177,Intermittent testAboutHomeVisibility | java-exception java.lang.NullPointerException at android.content.ContextWrapper.getApplicationInfo(ContextWrapper.java:146)
1453182,Intermittent testReaderCacheMigration | application crashed [@ dalvik-jit-code-cache (deleted) + 0x1984]
1453188,Intermittent dom/tests/mochitest/dom-level1-core/test_nodegetnextsibling.html | application ran for longer than allowed maximum time
1453226,full-screen-api.warning.timeout ignored on Android
1453238,Fennec crash pings have the displayVersion field set incorrectly
1453276,Improve mma documentation for "Pocket in Top Sites"
1453330,Intermittent font-matching/localized-family-names-001.html == font-matching/localized-family-names-001-ref.html | application ran for longer than allowed maximum time
1453409,Mozilla Firefox Mobile and Mozilla Firefox Beta Mobile are sharing Apps permissions
1453481,Intermittent css-grid/grid-item-margin-left-auto-002.html == css-grid/grid-item-margin-left-auto-002-ref.html | application ran for longer than allowed maximum time
1453524,Setting system language resets the search engine to default
1453533,Add "oc" in Fennec maemo-locale for multi-locale builds
1453590,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ libc.so + 0x3b868]
1453593,Intermittent Return code: 1 after Unable to verify Android boot completion
1453652,Crash in libGLESv2_adreno.so@0x3415ca
1453663,Cannot drag video slider in IMDB desktop site
1453674,Intermittent svg/smil/anim-filter-size-01.svg == svg/smil/lime.svg | application ran for longer than allowed maximum time
1453734,Intermittent bugs/451876-2.html == bugs/451876-2-ref.html | application ran for longer than allowed maximum time
1453742,Intermittent dom/indexedDB/test/test_rename_index_errors.html | application ran for longer than allowed maximum time
1453784,Intent: link package parameter should only be used if package not installed
1453791,Scroll bounce effect without reaching end of page
1453823,Intermittent mobile/android/tests/browser/chrome/test_awsy_lite.html | Test timed out.
1453844,Intermittent w3c-css/submitted/variables/variable-declaration-11.html == w3c-css/submitted/variables/support/color-green-ref.html | application ran for longer than allowed maximum time
1453875,Updating Firefox Nightly on Android re-installs recently uninstalled extensions
1453882,Unable to chmod /storage/sdcard0/tests/modules: Operation not permitted
1453926,Service Worker events not fired when app is opened from home screen
1453939,[RTL]Mirroring is incorrect after changing between Portrait-Landscape mode in the Browser language menu
1454049,Tapping back via Android's navigation bar while in a folder in bookmarks brings up the long press back popup
1454101,Provide a mechanism for specifying profile and gecko environment to geckoview junit tests
1454113,Fixed-position elements possibly shouldn't scale when zooming
1454173,Intermittent bugs/978911-1.svg == bugs/978911-1-ref.svg | application ran for longer than allowed maximum time
1454228,PWA fails launching with "Insecure connection"
1454291,Can't interact with picture properly - JuxtaposeJS
1454303,Firefox Nightly on Android fails to save home screen shortcuts on Oreo without any error when the launcher doesn't support the new shortcut API
1454366,Intermittent testReadingListToBookmarksMigration | application crashed [@ 0x0]
1454393,Stored passwords are visible by default
1454404,"./mach should use `adb` from `.mozbuild` as setup through ./mach bootstrap, not try to find it in $PATH and fail with cryptic error messages (ADBError: [Errno 2] No such file or directory: adb is not executable.)"
1454518,CSS filters are slow
1454532,multi second delay between visual page load finish and progress bar animation finish
1454577,Intermittent testEventDispatcher | GeckoEventExpecter - blockForEvent timeout: Robocop:Java
1454617,Toolbar does not auto hide on Accelerated Mobile Pages
1454643,Rightmove is very slow to load on Android
1454680,"Mn failures due to Zygote: Process 742 terminated by signal (11) | application crashed [@ libdvm.so + 0x21bdc], e.g. test_click_scrolling.py"
1454686,Apply App Level Push Notifications Opt-out for Leanplum for Android Users
1454709,Don't keep MediaControlService running on unsupported Android versions
1454712,Avoid unnecessarily launching MediaControlService when tab is closed
1454732,geckoview-junit PROCESS-CRASH | forCallbacksDuringWait_multipleOrder | application crashed [@ mozilla::net::nsSocketTransport::InitiateSocket]
1454804,No ability to select year in standard date picker
1454812,Intermittent testReaderModeTitle | application crashed [@ dalvik-jit-code-cache (deleted) + 0x28514]
1454915,"""Report Site Issue"" is not translated when changing language"
1454989,Sync does not use SNI in the TLS handshake to the token server
1455165,Firefox lists external apps even if the network.protocol-handler.external-default is false
1455205,"Intermittent testReorderTabs | All tabs are visible - got 2, expected 3"
1455209,Intermittent testSessionHistory | application crashed [@ dalvik-jit-code-cache (deleted) + 0x124bc]
1455253,Back arrow is missing from the Firefox custom tab three dot menu
1455254,Feedback page not displayed correctly
1455262,Implement site security info like desktop
1455274,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py TestScreenCaptureContent.test_highlight_elements | application crashed [@ dalvik-jit-code-cache (deleted) + 0x7646]
1455285,Blank space shows at the the bottom while dynamic toolbar is partially onscreen
1455441,no update since 20180403100100
1455456,Intermittent testEventDispatcher | Waiting for Toolbar to enter editing mode. -
1455478,Intermittent dom/media/test/reftest/gizmo.mp4.seek.html == dom/media/test/reftest/gizmo.mp4.55thframe-ref.html | application ran for longer than allowed maximum time
1455484,Intermittent position-dynamic-changes/vertical/fromauto-topA-heightN-bottomA.html?padding_abspos == position-dynamic-changes/vertical/topA-heightN-bottomA-ref.html?padding_abspos | application ran for longer than allowed maximum time
1455486,Intermittent bidi/numeral/bug467672-3.html == bidi/numeral/bug467672-3-ref.html | application ran for longer than allowed maximum time
1455506,Option to open external links in the same tab
1455537,Intermittent 391 ERROR Automation Error: Received unexpected exception while running application | exit code -1
1455580,Intermittent testSessionOOMSave | application crashed [@ libc.so + 0x1e524]
1455618,Connection times out
1455662,mprotect() failure in linker causing crashes on S8
1455671,Intermittent css-blending/background-blending-background-size-cover.html == css-blending/background-blending-background-size-ref.html | application ran for longer than allowed maximum time
1455744,Crash in java.lang.UnsatisfiedLinkError: Native method not found: android.media.AudioSystem.getOutputLatency:(I)I at android.media.AudioSystem.getOutputLatency(Native Method)
1455797,Intermittent testReorderTabs | Waiting for tabs panel to open. -
1455814,"Firefox Beta shows an advertisement for Pocket in a notification, even with the spam notifications setting turned off"
1455949,"Yandex search engine is default, but it is blocked in my country (Ukraine)"
1456008,Query starting with site: cannot be submitting using Go
1456055,HTTP redirects on start_url triggers an insecure warning from Firefox Android
1456110,Hide Notification settings entry when aimless
1456130,Extension 'GL_EXT_shader_texture_lod' is not supported on Firefox Android version greater or equal to 57
1456152,Add-on hamburger menu items are not loaded after phone reboot
1456216,Private data not successfully deleted
1456310,Intermittent PROCESS-CRASH | remoteautomation.py | java-exception java.lang.NullPointerException at android.app.ContextImpl.getApplicationInfo(ContextImpl.java:644)
1456312,Intermittent testReorderTabs | The tab at tabIndex 2 is visible -
1456352,I can't open www uidai.gov.in second tab
1456371,Intermittent testStateWhileLoading | application crashed [@ dalvik-jit-code-cache (deleted) + 0x170]
1456391,Support arbitrary frame-nesting in Fennec session store
1456410,https://license.skylined.nl/ Completely freezes Firefox for Android
1456487,Cannot re-connect Firefox Account after "Clear data" in Android Settings
1456557,Multiple files won't upload after selecting for HTML input element
1456683,there's no option to download link
1456701,Android sync HMAC verification check should be done using a consant time comparison
1457012,Update hostutils for Android tests
1457062,Handle ongoing memory pressure
1457078,Default theme image is broken in about:addons
1457182,"""Send tab to device"" to Android opens link in default system browser instead of the Firefox instance it was sent to"
1457273,Crash in java.lang.IllegalArgumentException: invalid selection notification range at org.mozilla.gecko.GeckoEditableChild.onSelectionChange(GeckoEditableChild.java)
1457368,Intermittent box/flexbox-child-is-abspos-container-2.html == box/flexbox-child-is-abspos-container-2-ref.html | application ran for longer than allowed maximum time
1457376,Remove Search Activity section from Wikipedia searchplugins
1457377,Amazon searchplugins are inconsistent
1457398,Incorrect handling of ":" in address bar
1457587,Cannot use annualcreditreport.com with Firefox Android 59
1457591,Intermittent mobile/android/tests/browser/chrome/test_media_playback.html | application crashed [@ libc.so + 0x27a76]
1457647,Intermittent css-grid/grid-row-gap-002.html == css-grid/grid-row-gap-002-ref.html | application ran for longer than allowed maximum time
1457685,60 beta will not accept correct master password
1457696,Popup of addon (WebExtension) has unexpected top and left margin
1457702,Android: Drag scroll stutters slightly when toolbar hides
1457724,* NSFW* - soniadane.com - Slow page load/page not loading
1457811,PWA with a port specified in the url is opened in custom tab
1457831,Intermittent position-dynamic-changes/vertical/topA-heightN-bottomN.html?padding_abspos == position-dynamic-changes/vertical/topA-heightN-bottomN-ref.html?padding_abspos | application ran for longer than allowed maximum time
1457851,Firefox accounts should log out sessions from other devices when changing firefox account password
1457872,"Intermittent mozdevice.adb.ADBProcessError: args: adb -s emulator-5554 wait-for-device shell am force-stop org.mozilla.fennec_aurora; echo rc=$?, exitcode: 137, stdout: Killed"
1457878,"Intermittent mozdevice.adb.ADBProcessError: args: adb -s emulator-5554 wait-for-device shell am force-stop org.mozilla.fennec_aurora; echo rc=$?, exitcode: 139, stdout: Segmentation fault"
1457971,Split debug geckoview-junit into multiple test chunks
1457973,"Enable navigator.storage API on Firefox Android (Fennec), enabling navigator.storage() and navigator.persist()"
1458305,Downloads Options Are Too Limited
1458311,YouTube and other mobile websites doesn't automatically open app installed on phone
1458348,Long pressing a Download should always offer an option to see a copiable link to the URL
1458349,Long pressing a Download should always offer an option to Re-attempt the download.
1458430,Intermittent css-animations/background-position-after-finish.html == css-animations/background-position-ref.html | application ran for longer than allowed maximum time
1458441,Huge battery drain
1458643,"os name for crash pings on fennec is ""Linux"", could it be Android?"
1458656,./mach mochitest complains about missing robocop-apk
1458694,(android) ensure context menu works with ShadowDOM
1458697,Intermittent testSessionPrivateBrowsing | java-exception junit.framework.AssertionFailedError: TEST-UNEXPECTED-FAIL | testSessionPrivateBrowsing | got expected no change event - null at junit.framework.Assert.fail(Assert.java:50)
1458931,Intermittent position-dynamic-changes/horizontal/toauto-leftA-widthA-rightN.html == position-dynamic-changes/horizontal/toauto-leftA-widthA-rightN-ref.html | application ran for longer than allowed maximum time
1458983,Move OfflineCache into the Android cache directory?
1459020,Intermittent testSessionOOMSave | java-exception java.lang.NullPointerException at android.view.Choreographer.doCallbacks(Choreographer.java:549)
1459089,"Even when resistFingerprinting is enabled, FF leaks the OS locale in the accept headers"
1459115,Intermittent testSessionOOMSave | java-exception java.lang.NullPointerException at android.animation.ValueAnimator$AnimationHandler.doAnimationFrame(ValueAnimator.java:640)
1459210,"""Synced tabs"" option is not selected after the first tap from the ""Clear private data on exit"""
1459232,Intermittent org.mozilla.geckoview.test.SessionLifecycleTest.readFromParcel_chained | status -2
1459236,Intermittent position-dynamic-changes/vertical/fromauto-topN-heightA-bottomA.html?margin_abspos == position-dynamic-changes/vertical/topN-heightA-bottomA-ref.html?margin_abspos | application ran for longer than allowed maximum time
1459351,"Warn if 'mach android-emulator' is requested to start an x86 emulator without kvm-ok, on linux"
1459370,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py TestScreenCaptureContent.test_highlight_elements | application crashed [@ dalvik-jit-code-cache (deleted) + 0x8c70]
1459416,Pinch zoom in Reader mode causes Floating Action Button to zoom as well
1459420,HLS Player doesn't use the centralized Proxy Selector
1459421,Links on cbc.ca/news slow to respond
1459458,Firefox does not store login/pw anymore for Roundcubemail
1459459,Why does Firefox on Android not support Android's Adoptable Storage?
1459501,Intermittent org.mozilla.geckoview.test.SessionLifecycleTest.readFromParcel_canLoadPageAfterRead | status -2
1459510,Horizontal "trackpad scrolling" is inverted
1459511,Cannot confirm master password with enter key
1459512,Keyboard input on homepage is undefined
1459513,Crash in java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference at org.mozilla.gecko.webapps.WebAppManifest.isInScope(WebAppManifest.java)
1459579,Support shouldAlwaysUseBrowserUI from custom tab intent
1459590,(Android) Check that things handled by SelectHelper.jsm (<select> elements etc.) work with ShadowDOM
1459630,Intermittent testActivityStreamPocketReferrer | GeckoEventExpecter - blockForEvent timeout: Robocop:Java
1459632,Update Notifications settings summary
1459679,Intermittent testSessionPrivateBrowsing | got expected no change event - expected PASS
1459718,Test-verify failures on Android with TinderboxPrint: Per-test run of .../test_evalscript_blocked_by_strict_dynamic.html<br/>: FAILURE
1459732,Stop killing compiz for android emulator tests
1459808,weather.com - Unable to type in the Email Address field (depending on device?)
1459863,Welcome screen slides' options are not fully visible in landscape mode
1459864,Modify <Product and feature tips> setting summary when disabled
1459921,Fennec crashes on startup
1459934,Update notification settings explanation string
1460028,java.lang.NullPointerException at org.mozilla.gecko.tests.SessionTest.createTestSession(SessionTest.java:141)
1460078,Date picker year selection list doesn't default to current year for empty <input>
1460122,Add "en-CA" to Fennec all-locales for single-locale builds
1460128,Long Img Titles get cut off
1460179,Intermittent testAboutPage | java-exception java.util.concurrent.TimeoutException: org.mozilla.gecko.mozglue.NativeZip.finalize() timed out after 10 seconds at org.mozilla.gecko.mozglue.NativeZip._release(Native Method)
1460213,Intermittent testUITelemetry | application crashed [@ dalvik-jit-code-cache (deleted) + 0x2518]
1460227,Web app's language changes back to the browser's language after restart
1460399,More android_emulator_unittest refactoring
1460411,Run mochitests in TestRunnerActivity on packet.net
1460473,When screen casting to AndroidTV (or I imagine Chromecast) page is cropped in Android device
1460504,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_navigation.py TestTLSNavigation.test_navigate_by_click | application crashed [@ GeckoAppShellSupport::ReportJavaCrash][@ ToolbarEditText.setText(ToolbarEditText.java:141)]
1460519,Turning off images ends up obscuring text
1460551,"Cannot disable search suggestions, shows ads instead"
1460567,Permissions popup dismissable by clicking outside of it
1460585,Character spacing between the numbers is condensed (date picker on Android 4.x)
1460588,A white screen is displayed in drawer instead of about:home
1460823,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ libdvm.so + 0x1e5a0]
1460827,Copy URL while viewing page in reader mode will copy reader url
1460836,Firefox Android Nightly cannot add search engines
1460852,The web page is truncated when switching between Fennec and drawer
1460853,window.open() attempts to download local file even if it could be viewed within Firefox itself
1460975,Sometimes websites appear zoomed in and cannot be restored to normal size
1460989,Galaxy S8 SEGV_ACCERR crash in v60+
1461024,Intermittent testPrivateBrowsing | Checking that the option: Open Link in Private Tab is available - The option is available
1461030,Intermittent testPictureLinkContextMenu | application crashed [@ dalvik-heap (deleted) + 0x610508]
1461147,Intermittent org.mozilla.geckoview.test.NavigationDelegateTest.onNewSession_childShouldLoad | status -2
1461169,All search engines gone on latest Nightly
1461179,Bookmarks and browsing history is blank
1461190,Sounds recordings very distorted
1461224,Allow user to rename search engine
1461254,"Since last version, intermittent sound crash with euronews.com French version"
1461255,password sync doesn't work on Android device
1461259,Searching/navigation from the empty tab list edit box does not respect privacy choice
1461343,Master Password not displayed
1461393,Some Android test task runtimes nearing task timeout
1461432,Remove browsersearch.json
1461442,"Android mochitest runs toolkit/components/extensions/test/mochitest twice, maybe?"
1461646,Download options buttons are missing from the control notification bar
1461655,Intermittent testIdnSupport | application crashed [@ libc.so + 0x1e524]
1461760,wrong number of saved pages in reader mode
1461772,Fennec core pings do not contain enough information to easily distinguish betas
1461778,Intermittent PROCESS-CRASH | remoteautomation.py | java-exception java.lang.NullPointerException at android.view.View.isLayoutModeOptical(View.java:14246)
1461924,checkboxes default border barely visible
1462200,Intermittent floats/logical-float-side-3.html == floats/logical-float-side-3-ref.html | application ran for longer than allowed maximum time
1462226,Cannot select text on Android on MDN wiki pages
1462347,Form assistant zoom should be configurable
1462356,Switching browser language after upgrade does not work properly
1462408,Volume of submitted crashes dropped significantly on Fennec 62.0a1 recently
1462577,The PWA button position is changing after enterIng/leaveIng the Reader Mode
1462594,"Settings: General, Accessibility and Advanced menus cannot be accessed"
1462597,UX: Make home screen pages more distinguishable visually (like tabs)
1462603,No selection list for stored credentials anymore
1462657,Page is loading but remains blank
1462670,Autofocused input field gets improperly autofilled when submitting form using Enter key
1462679,"Private method org.mozilla.gecko.EventDispatcher.dispatchToThreads(String, GeckoBundle, EventCallback) is never called."
1462796,Remove unused Fennec BlocklistPrompt
1462867,Toolbar menus from addons should be included in a sub-menu
1462872,ship Firefox screenshot to android
1462934,"""mach android-emulator"" for x86 shows dialog ""Running an x86 based android virtual device (AVD) is 10x faster."
1462936,"""mach android-emulator"" with x86-6.0 and x86-7.0 does not work on macOS"
1462984,Intermittent testEventDispatcher | Should have completed event before timeout -
1463010,Load website is taking much longer then other browsers. It starts loading and halfway on the loading bar it stops from 3-5 seconds and starts again.
1463164,[meta] Android Beta P issues
1463325,Intermittent testUnifiedTelemetryClientId | application crashed [@ libdvm.so + 0x81f52] [@ dalvik-jit-code-cache (deleted) + 0x2b4e0]
1463376,Update to latest Google Play Services version
1463464,Twitch live video cannot be restarted from the Android media control notification
1463531,Firefox used 1.68 GB of Background Data when I wasn't using my phone or Firefox
1463620,Fennec Custom Tabs do not correctly handle app links
1463689,Intermittent testActivityStreamPocketReferrer | Exception caught - junit.framework.AssertionFailedError: Text string: 'Placeholder ' is not found!
1463719,Intermittent image/image-orientation-border-image.html?90&flip == image/image-orientation-border-image.html?0 | application ran for longer than allowed maximum time
1463733,Unload/zombify tabs when running low on memory
1463869,Push signal is lost when Firefox is closed
1463909,mozemulator-4.3 does not boot with emulator 27.2.9
1463958,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py TestScreenCaptureContent.test_format_unknown | application crashed [@ mozilla::jni::Accessor::EndAccess<mozilla::java::AndroidGamepadManager::OnGamepadAdded_t> +
1463994,Intermittent testDistribution | application crashed [@ libdvm.so + 0x81f52]
1464003,User appears incorrectly signed out from FxA after changing browser language
1464114,Android: scroll jank on bikeradar.com due to long paints
1464367,WebRTC notification remains displayed after the browser is closed
1464508,Guest browsing bypass my parental control in mozilla firefox
1464600,ff nightly 62.0a1: cannot permanently disable cookies
1464610,All pages are blank on some Android versions
1464622,"When using a phone with tall screen (18:9) and have the navigation bar disabled, at the overview of the open tabs the top of the Firefox bar is showing at the bottom of the screen."
1464672,App doesn't correctly handle change of device language in run-time
1464676,Suggestion: Sync cached favicons across devices
1464696,PWA: Status bar on Firefox does not change dynamically
1464701,Intermittent IOError: [Errno 2] No such file or directory: 'robocop.log'
1464788,Content seems to be rendered but not shown
1464792,pressing buttons or checkboxes shows text selection overlay
1464843,Intermittent marionette.py | application crashed [@ dalvik-jit-code-cache (deleted) + 0x177c6]
1464866,Android time-outs report "...seconds withno output" (missing space)
1464873,Allow disabling Guest mode
1464932,Full screen video - Android status bar at the top does not disappear
1464970,Intermittent http://10.0.2.2:8888/tests/layout/reftests/text/overflowwrap-04.html == http://10.0.2.2:8888/tests/layout/reftests/text/wordwrap-04-ref.html | application ran for longer than allowed maximum time
1464990,Allow easier testing Switchboard experiments
1464997,[meta] DatePicker and TimePicker layout issues
1465053,Remove confusing README files from /mobile/android/services
1465102,Android O NotificationService startForeground changes
1465137,the ellipsis menu is a confusing mix of things
1465210,Validate 'mach android-emulator' against emulator 27.2.9
1465214,"Intermittent testViewPageSource | The Toolbar title is view-source:about:firefox - got about:blank, expected view-source:about:firefox"
1465323,Abide by Android Oreo broadcast policy
1465339,Media control notification not displayed in private browsing
1465431,Unable to install PWAs on Google Pixel C
1465463,Top Sites seem to repeat themselves
1465499,Navigation bar overlaps the HTML5 video controls in fullscreen on Google devices
1465539,Introduce automated accessibility testing
1465550,Create and localize standard text for Fennec for the Play Store
1465732,The handling of web pages with too wide elements could be improved
1465877,Some options are not getting disabled or enabled; Tracking Protection does not work
1465881,Intermittent testSessionFilePreservation | application crashed [@ libdvm.so + 0x81f52]
1466026,62.0a1 (2018-05-31) resets "Clear private data on exit" settings
1466047,There's no way to remove cookies in Firefox/Android
1466106,Intermittent testing/marionette/harness/marionette_harness/tests/unit/test_cookies.py CookieTest.test_get_all_cookies | application crashed [@ libdvm.so + 0x81f52]
1466130,Use nsIClearDataService in Sanitizer.jsm for android
1466153,Reader Mode tabs sent from Desktop don't open properly in Android
1466193,Sync stops after a few days
1466395,password manager issues with fennec
1466424,Sync does not connect on some Android devices
1466511,Shield icon for tracking protection not displayed in private browsing
1466729,The Login overlay is stuttering when scrolling the background page
1466734,Implement ImageBlockingPolicy.js in C++
1466839,Selecting all text on certain pages does not trigger the floating action bar
1466958,Android 'mach mochitest'/'mach robocop' fails: "IOError: Add-on path does not exist: <objdir>/_tests/testing/mochitest/mochijar"
1466992,Menu items are poorly rendered when scrolling.
1466996,Embed device list to share menu directly
1466997,Twitter app doesn't open link in custom tabs
1466999,Custom tab window from Telegram doesn't close when return to the app
1467021,Intermittent testSessionPrivateBrowsing | got expected no change event - expected PASS
1467074,Cannot set exceptions for blocking cookies
1467101,Users should be informed if no app is available when attempting to launch a downloaded file
1467138,Disabled extensions are re-enabled after a refresh of the web page
1467250,remove mobile/android/docs/conf.py
1467265,Intermittent testUnifiedTelemetryClientId | Exception caught - junit.framework.AssertionFailedError: TEST-UNEXPECTED-FAIL | testUnifiedTelemetryClientId | Waiting for Toolbar to enter editing mode. -
1467301,Intermittent testBrowserDatabaseHelperUpgrades | application crashed [@ libdvm.so + 0x81f52]
1467361,Aliases for common fonts to fall-back on sans-serif and serif
1467418,"Intermittent testAudioFocus | Checking the audio playing state of tab, isTabPlaying = true - Tab's audio playing state is correct."
1467420,When i scroll in android up or down black bars appear in up and right for scroll up and down left after i stop scroll bars dissappear.
1467425,"""Request desktop site"" is not enabled after changing to Youtube desktop version from site itself"
1467461,Migrate CrashReportingService to JobIntentService
1467633,Intermittent testStateWhileLoading | application crashed [@ libdvm.so + 0x21bdc]
1467637,"Intermittent testSessionPrivateBrowsing | application crashed [@ mozilla::jni::Accessor::EndAccess<mozilla::java::AndroidGamepadManager::OnGamepadAdded_t>(mozilla::java::AndroidGamepadManager::OnGamepadAdded_t::Owner::Context const&, nsresult*) + 0x20]"
1467662,Auto-sync doesn’t happen (must open settings and tap sync manually)
1467663,Add a Save to Pocket link in Reading View
1467699,video landscape mode not always working
1467703,Clear private data on exit references non-existent quit option
1467716,Restore tabs OFF - when camera&mic is shared the tabs are restored
1467840,Use JobIntentService for other background work
1467881,cannot mute website audio notifications on Facebook.com
1467960,Firefox on Android Crashes constantly
1467995,firefox don't respect meta viewport except after document ready
1468024,"""media.videocontrols.lock-video-orientation"" doesn't work for pages using custom video controls"
1468028,video fit to screen
1468055,Intermittent testViewPageSource | Exception caught - junit.framework.AssertionFailedError: TEST-UNEXPECTED-FAIL | testViewPageSource | Waiting for menu item View Page Source to be enabled. -
1468056,Filter awesome bar search results by typing special characters (as on desktop)
1468070,Enabled "remote debugging via USB" setting is ignored after Firefox restart and needs to be re-toggled
1468075,Review usage of Reflection for accessing private SDK interfaces on Android P
1468284,Investigate stopSelf() in TelemetryUploadService
1468298,Deprecated lightweight theme footer defines notification bar color
1468306,[Sony Xperia Z2]Characters from URL are written or deleted from the wrong position
1468346,"""Quit"" from firefox main menu does not close firefox"
1468388,Intermittent testHistoryService | application crashed [@ 0x8]
1468428,Firefox gets confused with port numbers and misredirects to HTTPS
1468450,Empty screen after resume
1468472,awesome screen stays open when tapping links
1468532,Prevent chatty from dropping logcat messages (packet.net)
1468594,Intermittent w3c-css/submitted/masking/clip-path-mix-blend-mode-1.html | application timed out after 370 seconds with no output
1468647,Intermittent testPrivateBrowsing | application timed out after 180 seconds with no output
1469086,Crash in android.app.RemoteServiceException: Context.startForegroundService() did not then call Service.startForeground() at android.app.ActivityThread$H.handleMessage(ActivityThread.java)
1469099,Intermittent PROCESS-CRASH | remoteautomation.py | application crashed [@ dalvik-jit-code-cache (deleted) + 0x19e92]
1469101,Links from WhatsApp open in the same tab
1469224,"Selecting image to download displays Copy/Paste controls, not Save As"
1469471,Intermittent testBrowserDatabaseHelperUpgrades | Exception caught - android.database.sqlite.SQLiteCantOpenDatabaseException: unknown error (code 14): Could not open database
1469484,Intermittent PROCESS-CRASH | remoteautomation.py | java-exception org.xmlpull.v1.XmlPullParserException: Binary XML file line #0: invalid drawable tag vector at android.graphics.drawable.Drawable.createFromXmlInner(Drawable.java:897)
1469515,Duckduckgo site is stuck after a pinch-to-zoom in
1469780,Unable to install PWAs on Xiaomi Redmi Note 3
1470032,Find In Page doesn't show you when nothing was found
1470117,"Intermittent dom/ipc/tests/test_child_docshell.html | application crashed [@ mozilla::jni::Accessor::EndAccess<mozilla::java::AndroidGamepadManager::OnGamepadAdded_t>(mozilla::java::AndroidGamepadManager::OnGamepadAdded_t::Owner::Context const&, nsre"
1470248,Intermittent dom/cache/test/mochitest/test_chrome_constructor.html | application crashed [@ dalvik-LinearAlloc (deleted) + 0x4d70]
1470305,Intermittent PROCESS-CRASH | remoteautomation.py | java-exception java.lang.ArrayIndexOutOfBoundsException: length=0; index=21 at android.widget.RelativeLayout.onMeasure(RelativeLayout.java:646)
1470413,National geographic videos don't play
1470627,Intermittent testReaderCacheMigration | java-exception java.util.concurrent.RejectedExecutionException: Task android.support.v4.content.ModernAsyncTask$3@42178c38 rejected
1470663,Blank webpages on Android 6.0 with Firefox Nightly 62.0a1
1470676,blank screen on web content
1470722,360 video plays only audio
1470867,Default checkbox border nearly imperceptible
1470879,Soundcloud progress bar timer is stuck after pausing/playing a song from the media notification bar
1470925,Crash in _$LT$rayon_core..job..HeapJob$LT$BODY$GT$$u20$as$u20$rayon_core..job..Job$GT$::execute
1471026,Crash in java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference at org.mozilla.gecko.home.TwoLinePageRow.update(TwoLinePageRow.java)
1471273,Intermittent testViewPageSource | java-exception java.util.concurrent.TimeoutException: org.mozilla.gecko.mozglue.NativeZip.finalize() timed out after 10 seconds at org.mozilla.gecko.mozglue.NativeZip._release(Native Method)
1471408,Multiple top level Java classes inside .java files
1471505,Cannot disable URL autocomplete with "top domains list" (useless for my browsing history)
1471646,Java checkstyle should enforce OneTopLevelClass
1471703,Intermittent testLinkContextMenu | Exception caught - java.lang.NullPointerException
1471739,Intermittent PROCESS-CRASH | remoteautomation.py | java-exception java.lang.NullPointerException at android.support.graphics.drawable.PathParser$PathDataNode.nodesToPath(PathParser.java:317)
1471742,Intermittent css-invalid/input/input-dyn-disabled.html == css-invalid/input/input-ref.html | application ran for longer than allowed maximum time
1471746,Intermittent css-display/display-contents-xbl-7.xhtml == css-display/display-contents-xbl-7-ref.html | application ran for longer than allowed maximum time
1471785,Some settings always backs to default after restarting Fennec
1471868,Backspace deletes wrong chunk when deleting autocompleted URL
1471923,"Intermittent testActivityStreamPocketReferrer | java-exception java.util.concurrent.RejectedExecutionException: Task android.support.v4.content.ModernAsyncTask$3@41fb86d0 rejected from java.util.concurrent.ThreadPoolExecutor@41aae580[Running,"
1472013,Intermittent WARNING - PROCESS-CRASH | Automation Error: Missing end of test marker (process crashed?)
1472041,Intermittent testSnackbarAPI | application crashed [@ dalvik-jit-code-cache (deleted) + 0xc3d4]
1472176,Youtube automatic captions are not visible
1472311,Consolidate mozharness configs for android emulator and hardware tests
1472320,audio element title on lockscreen not updated
1472337,"Cookie settings are not preserved after restart. Defaults back to 'cookies, enabled'"
1472372,Intermittent autophone-s1s2 | java.util.concurrent.TimeoutException: org.mozilla.gecko.mozglue.NativeZip.finalize() timed out after 10 seconds at org.mozilla.gecko.mozglue.NativeZip._release(Native Method)
1472418,Man in the middle
1472499,Intermittent testInputUrlBar | java-exception java.util.concurrent.TimeoutException: org.mozilla.gecko.mozglue.NativeZip.finalize() timed out after 10 seconds at org.mozilla.gecko.mozglue.NativeZip._release(Native Method)
1472543,"Mozilla Firefox Mobile 62 reset ""Cookies"" setting from ""Enabled, excluding 3rd party"" to ""Enabled"" value at restart"
1472625,Crash in java.lang.IllegalArgumentException: Invalid int: "OS" at android.os.Parcel.readException(Parcel.java)
1472674,All page are blank even about:addons
1472826,Firefox for Android Beta and Nightly (62 and 63) render only blank pages
1472957,"""Auto"" option from Reading Mode is not responsive"
1472958,Intermittent WARNING - PROCESS-CRASH | remoteautomation.py | java-exception java.lang.NullPointerException at android.view.View.measure(View.java:15863)
1472984,custom tab should adhere tab status
1472996,Crash in java.lang.NoSuchMethodError: android.view.accessibility.AccessibilityNodeInfo.removeAction at org.mozilla.geckoview.SessionAccessibility.populateNodeInfoFromJSON(SessionAccessibility.java)
1473033,Custom menu's language is not updated after changing browser language and navigating to About
1473053,Form input cursor disapears after few seconds (using jquery.focus() on document load)
1473057,Intermittent testReorderTabs | The tab at index 1 is visible -
1473066,firefox android beta 62.0b3 update resets homepage settings
1473162,With Google Tier1 experience: brief taps on Google's hamburger button will frequently trigger text-selection and a "Select All" popup
1473204,The cursor can't move after change mail page.
1473207,Intermittent WARNING - PROCESS-CRASH | remoteautomation.py | application crashed [@ libc.so + 0x1c3dc]
1473221,Viewport Height changes when address bar hides or shows
1473232,Semantic UI modals are not rendering correctly when scrolling is required. They start patching randomly
1473254,AsyncConfigLoader could leak the Activity
1473260,Remove "link-visited" observer notifications from Firefox for Android's history
1473354,cannot use Google search in Firefox Nightly 63 Android
1473368,Review fennec emulator unit tests
1473460,Intermittent WARNING - PROCESS-CRASH | remoteautomation.py | java-exception java.util.concurrent.TimeoutException: org.mozilla.gecko.mozglue.NativeZip.finalize() timed out after 10 seconds at org.mozilla.gecko.mozglue.NativeZip._release(Native Method)
1473470,"""Clear Private Data -> Saved Logins"" interacts poorly with Sync"
1473486,The games thumbnails are displayed black when scrolling on hhtp://m.twitch.tv
1473503,"crates.io download graphs don't show in Fx Nightly, work in Chrome"
1473508,Intermittent testSessionOOMSave | java-exception java.lang.IllegalMonitorStateException: unlock of unowned monitor at java.lang.ref.FinalizerReference.remove(FinalizerReference.java:79)
1473518,Abide by Android Oreo background execution limits [Leanplum after upgrade]
1473558,Intermittent WARNING - PROCESS-CRASH | remoteautomation.py | java-exception java.lang.NoClassDefFoundError: [generic] at dalvik.system.NativeStart.main(Native Method)
1473563,About:home appears after tapping on Youtube favicon
1473649,Intermittent testIdnSupport | application crashed [@ dalvik-jit-code-cache (deleted) + 0x216e8]
1473831,Can't click submenu of sony.co.in mobile website
1473872,Start targetting API 26
1473887,allow tab queue load page content immediately
1474017,Determine if RCWN (Race Cache with Network) optimization should be turned on for mobile (wifi only)
1474203,Firefox produces considerable CPU load in background
1474230,"Intermittent mobile/android/tests/browser/chrome/test_media_playback.html | application crashed [@ dl_iterate_callback(dl_phdr_info*, unsigned int, void*)]"
1474336,Sync Push Notifications Cannot Be Stopped
1474485,Digest authentication fails after server restart
1474584,Search engines icons vary in size
1474633,Crash in java.lang.NullPointerException: Attempt to invoke interface method 'void org.mozilla.gecko.firstrun.FirstrunPanel$PagerNavigation.next()' on a null object reference at org.mozilla.gecko.firstrun.FirstrunPanel$1.onClick(FirstrunPanel.java)
1474758,Intermittent Android 7.0 jsreftest | application ran for longer than allowed maximum time
1474770,Scroll judder when chrome expands or contracts
1474831,writing "trt" on android on a new tab causes crash
1474859,Enable Multidex for official flavours
1474872,Nightly on Android shows up as "Web Session" and does not sync
1474901,failed resources are visible in page printing
1474961,Change StumblerService to a foreground service when targeting Android O
1475108,Use localized root titles in the UI instead of pulling them from the database
1475167,Move stop button to menu
1475244,allow multiselection of bookmark
1475253,Add-ons are not loaded early enough to affect pages loaded by an external launcher app
1475266,Preview of site address should be shown when typing bookmark keyword
1475288,Touch scrolling cause page's elements overlaps with MDC Web
1475310,Difficult to open hamburger menu on engadget.com
1475552,Expose a preference to enable desktop mode by default
1475592,[NOT A BUG] Test GPS rebasing against Support26
1475738,Fennec and Geckoview do not fire letter or number keypress events while typing into a contenteditable element.
1476077,Crash in libhwui.so@0x86d4e
1476164,Tapping on SVGs triggers a 'select all' on the whole page
1476165,Update Android Gradle plugin to version 3.1.0
1476221,The autocomplete form pop-up doesn't appear directly next to the related input field on some pages
1476225,The Amazon page it's zoomed on tablet devices
1476237,Fix TestFileCleanupController after the Oreo migration
1476315,java-exception android.app.RemoteServiceException: Context.startForegroundService did not then call Service.startForeground() at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1778)
1476352,Building Fennec fails with crash reporting off
1476424,Crash in android.os.TransactionTooLargeException: data parcel size 3124056 bytes at android.os.BinderProxy.transactNative(Native Method)
1476635,Intermittent PROCESS-CRASH | Automation Error: Missing end of test marker (process crashed?) during testActivityStreamPocketReferrer
1476663,"Crash in java.lang.IllegalThreadStateException: Expected thread 2 (""main""), but running on thread 2525 (""AsyncTask #1"") at org.mozilla.gecko.util.ThreadUtils.assertOnThreadComparison(ThreadUtils.java)"
1476720,"Persistent notification for ""Mozilla Location Service running"", which does nothing when I tap it"
1476749,Firefox nightly icon is a different color when preview is shown running Android P
1476751,Crash in java.lang.IllegalArgumentException: null notification at android.os.Parcel.readException(Parcel.java)
1476766,Crash in java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference at org.mozilla.gecko.CrashReporterActivity.getProfileName(CrashReporterActivity.java)
1476785,White strip in bottom of tabs overview screen on all-screen display of device
1476862,Allow stopping location service when stopping app
1476900,Can't update Nightly from about:firefox or notification bar
1476935,Build error: cannot find symbol CrashReporterService during Firefox for Android build
1476966,Constant notification ringing when downloading a file
1476970,Themes are not applied
1477177,Install is failing on the Samsung store with "Unable to install application due to error popup"
1477218,Create a prototype for testing sync integration between Android and desktop
1477241,Drag and Drop funktion for sorting bookmarks
1477249,Turning on 'Allow autoplay ' doesn't take any effect
1477298,tons of issue with viewport with latest Firefox 63 nighlty for Android
1477528,Context menu doesn't work for images in Google image search (full version with spoofed UA)
1477664,Media control notification issues
1477681,Intermittent testHomeBanner | application crashed [@ libdvm.so + 0x54d2a]
1477682,Intermittent testHomeBanner | application crashed [@ libdvm.so + 0x54d2a]
1477686,Intermittent testSessionPrivateBrowsing | got expected no change event - expected PASS | PROCESS-CRASH | testSessionPrivateBrowsing | application crashed [@ mozilla::jni::Accessor::EndAccess<mozilla::java::AndroidGamepadManager::OnGamepadAdded_t>
1477694,HTTP Basic auth prompts are unusably small
1477695,Icon sizes in the Share Link dialog are unconstrained and inconsistent
1477700,Android media notification appears swiped down after video starts
1477947,Intermittent testFormHistory | application crashed [@ dalvik-jit-code-cache (deleted) + 0x4b08]
1478017,Add "en-CA" Fennec maemo-locale for multi-locale builds
1478018,view full history
1478053,Download progress notification can't be dismissed after closing app
1478082,Window.close does not close popup in android firefox
1478186,Casino Game warlords from netent does Not Work properly
1478189,Intermittent autophone-s1s2 | application crashed [@ mozilla::net::nsSocketTransport::InitiateSocket()]
1478274,Android TV Port
1478288,history show source device next to tab
1478292,history: show date while scrolling and filter list by date
1478294,Intermittent testMailToContextMenu | application crashed [@ libdvm.so + 0x1f7e4]
1478320,Consider future of feed subscription support in Fennec
1478363,Pan is enabled after the context menu is triggered in Top sites/History Panel
1478412,"Add to home screen button present, but it doesn't do anything"
1478438,Remove unused mobile/android config variables
1478590,Add "lij" to Fennec maemo-locale for multi-locale builds