Closed Bug 1488879 Opened 6 years ago Closed 6 years ago

Address bar does not autofill unvisited bookmark URLs

Categories

(Firefox :: Address Bar, defect, P1)

62 Branch
defect

Tracking

()

VERIFIED FIXED
Firefox 64
Tracking Status
relnote-firefox --- 62+
firefox-esr60 --- unaffected
firefox62 + verified
firefox63 + verified
firefox64 + verified

People

(Reporter: github_11837948, Assigned: adw)

References

()

Details

(Keywords: regression)

Attachments

(3 files)

User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:60.0) Gecko/20100101 Firefox/60.0
Build ID: 20100101

Steps to reproduce:

1) Save a bookmark (e.g. mozilla.org)
2) Clear browser history
3) Start typing the URL in the address bar, e.g. "moz"


Actual results:

The URL is not autocompleted. The bookmark can be selected with arrow-down


Expected results:

Autocomplete the URL, e.g. "moz" is completed to "mozilla.org"
Version: 60 Branch → 62 Branch
Component: Untriaged → Address Bar
Since update to Quantum 62.0, no predictive URL is added to the Address Bar as I begin to type in the bar e.g. I have bookmarked flightaware.com which used appear in the address bar by the time I typed fligh, but now I have to go through the search results below the bar and select the URL I want.
This is a pain.
Hi, Here is the regression range for this issue:

INFO: Last good revision: 73c2c4c8ce60283ddf16f38f91812b3ac23d506f
INFO: First bad revision: 6f0272415280e8daf91c2dca961e6da3d189f684
INFO: Pushlog:
https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=73c2c4c8ce60283ddf16f38f91812b3ac23d506f&tochange=6f0272415280e8daf91c2dca961e6da3d189f684

I hope this helps.
Blocks: 1239708
Flags: needinfo?(adw)
Keywords: regression
Looks like it is a recent change, not sure it was intentional.
It's possible that single bookmark is not passing the frecency threshold, it's not enough to bookmark a page for it to be autofilled. Or it's possible your profile is just broken.

I see 3 different reports here in comment 0, comment 1 and comment 2, each may have a different reason behind it.
We need more details from each of you, did you all clear history, does any of you use permanent private browsing?
Have you tried going to about:support and running the Places Database Integrity Check?

We'll investigate the steps in comment 0, and will surely need more information.
(In reply to Marco Bonardo [::mak] from comment #5)
> it's not enough to bookmark a page for it to be autofilled

Maybe that is the cause.

I am not browsing private, but everytime I close the browser the history is cleared. When I start the browser, the auto fill does not work for any bookmark. As soon as I visited a website once, the completion does work for this website.
Comment 0 -- after clearing history, all origins/places end up with zero frecency.  The autofill threshold is also zero.  The threshold logic is >=, so in this case, all origins should be autofilled, except for the fact that we never autofill origins/URLs with <= 0 frecency: https://hg.mozilla.org/mozilla-central/annotate/c2e3be6a1dd352b969a45f0b85e87674e24ad284/toolkit/components/places/UnifiedComplete.js#l267

Maybe we should autofill origins that are bookmarked even when their frecencies are zero?

As comment 6 says, as soon as you visit one of these origins, it will start autofilling because it will have a non-zero frecency.
Flags: needinfo?(adw)
Status: UNCONFIRMED → NEW
Ever confirmed: true
(In reply to Drew Willcoxon :adw from comment #7)
> Maybe we should autofill origins that are bookmarked even when their
> frecencies are zero?

Or just autofill origins with >= 0 frecency -- ignore only those with -1 frecency.  Normally the threshold will be well above zero, so excluding origins with zero frecency will happen "naturally."  But in this case, that's not true, but there's no reason we should exclude those zero-origin frecencies.

What do you think, Marco?
For the urlbar we should filter on hidden, not on a zero frecency, I agree the threshold should be enough to filter...
Assignee: nobody → adw
Status: NEW → ASSIGNED
(1) Modify the threshold calculation so the minimum threshold is 0, not 1.  That means that no moz_origins will be excluded from consideration because their frecencies are 0.  moz_origins always have frecencies >= 0.

(2) Modify the urlQuery to include moz_places with -1 frecencies but that aren't hidden.
The test_zero_frecency.js failure is fixed in the latest Phabricator diff (by removing that test)
Bug #1489090 was marked as duplicate but I understand they are actually different. Can pls somebody review and unmark duplicity?
Priority: -- → P1
Added to the release notes as a known issue with the following wording:
"Bookmarks might be not suggested as suggestions in the address bar (bug 1488232)"
(In reply to Sylvestre Ledru [:sylvestre] from comment #14)
> Added to the release notes as a known issue with the following wording:
> "Bookmarks might be not suggested as suggestions in the address bar (bug
> 1488232)"
Wrong bug number!
Flags: needinfo?(sledru)
Thanks, fixed!
Flags: needinfo?(sledru)
Comment on attachment 9007346 [details]
Bug 1488879 - Autofill non-hidden origins and URLs with frecencies <= 0.

Marco Bonardo [::mak] has approved the revision.
Attachment #9007346 - Flags: review+
(In reply to Sylvestre Ledru [:sylvestre] from comment #14)
> Added to the release notes as a known issue with the following wording:
> "Bookmarks might be not suggested as suggestions in the address bar (bug
> 1488232)"

Please use "autofill" or "autocompleted" instead of "suggested".  "Suggested" makes it sound like the results that appear in the popup, and this bug is not about that.

Also, it's true to say "Bookmarks might not be autofilled", but it would be more accurate to say that "Unvisited bookmarks will not be autofilled".  This doesn't apply to all bookmarks, only unvisited bookmarks.
Flags: needinfo?(sledru)
Summary: Address bar does not auto fill with bookmark URLs → Address bar does not autofill unvisited bookmark URLs
Pushed by dwillcoxon@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/f4f0af49af15
Autofill non-hidden origins and URLs with frecencies <= 0. r=mak
thanks, updated to "Unvisited bookmarks will not be autofilled in the address bar (bug 1488879)", wfy?
Sounds good, thanks
Flags: qe-verify+
https://hg.mozilla.org/mozilla-central/rev/f4f0af49af15
Status: ASSIGNED → RESOLVED
Closed: 6 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 64
Attached patch Beta/63 patchSplinter Review
Approval Request Comment
[Feature/Bug causing the regression]:
New autofill algorithm, bug 1239708

[User impact if declined]:
The URLs of unvisited bookmarks will not be autofilled in the urlbar

[Is this code covered by automated tests?]:
Yes

[Has the fix been verified in Nightly?]:
Not yet

[Needs manual test from QE? If yes, steps to reproduce]:
Please see comment 0, it should be sufficient

[List of other uplifts needed for the feature/fix]:
None

[Is the change risky?]:
Low risk

[Why is the change risky/not risky?]:
We're just tweaking some threshold values, basically

[String changes made/needed]:
None
Attachment #9007952 - Flags: approval-mozilla-beta?
Attached patch Release/62 patchSplinter Review
This doesn't warrant a dot release by itself (IMO), but it would be nice to include it in the next dot release if possible.

Approval Request Comment
[Feature/Bug causing the regression]:
New autofill algorithm, bug 1239708

[User impact if declined]:
Unvisited bookmarks will not be autofilled in the urlbar

[Is this code covered by automated tests?]:
Yes

[Has the fix been verified in Nightly?]:
Not yet

[Needs manual test from QE? If yes, steps to reproduce]:
Please see comment 0, it should be sufficient

[List of other uplifts needed for the feature/fix]:
None

[Is the change risky?]:
Low risk

[Why is the change risky/not risky?]:
We're just tweaking some threshold values, basically

[String changes made/needed]:
None
Attachment #9007953 - Flags: approval-mozilla-release?
Hi, I verified this issue using Firefox Nightly 64.0a1 (2018-09-10) and I can Confirm it as fixed. I will mark this issue accordingly.
Comment on attachment 9007952 [details] [diff] [review]
Beta/63 patch

P1 regression, verified in Nightly, uplift approved for 63 beta 6. Thanks
Attachment #9007952 - Flags: approval-mozilla-beta? → approval-mozilla-beta+
Flags: needinfo?(sledru)
I still have this Problem in b6!
This issue is fixed for me in Nightly v64.0a1 (2018-09-16) and Beta v63.0b6 (while it reproduced in Beta v63.0b5).

Considering that if the link has a redirect the STR isn't valid, this is the STR I used:
1. The open browser in a newly created profile;
2. Open the page "reddit.com";
3. Bookmark the page (https://www.reddit.com/);
4. Open a new tab and close the reddit tab;
5. Open settings and clear ALL browser history;
6. Open a new tab and write "red" in the address bar;
Expected: The "reddit.com" is auto-filled.

@Kokujou, could you comment the exact steps you took to reproduce the issue?
Which OS are you using?

Thanks!
Flags: needinfo?(Kokujou)
i wanted to take a picture but it seems you can't upload screenshots here so you need to believe me. 
I'm using Windows 10.
I updated to the latest Beta version and i even cleaned my browser from all addons and resetted all settings.
then i even visited EVERY bookmark i had. which was quite the stress test for my browser.

but even with just using facebook as a reference, which definitely has no redirect, i don't get the autofill when entering the first letters.

i have about 200 bookmarks and it DOES work when i first visit the site. but, as before, after cleaning my browser history it's all gone again...
btw i deleted all bookmarks and added them anew, i even deleted the places.sql which was suggested somewhere....

i think i did everything.
Flags: needinfo?(Kokujou)
(In reply to Bodea Daniel [:danibodea] from comment #29)
I tested your steps with v63.0b6 on macOS 10.13.6 exactly as you described. The autocompletion does not work for me. Neither does it work with my existing profile.
I kept retrying and it seems fixed on my side, on both Windows 10 and Mac OS X 10.13.6. I have no idea what we are doing differently.

I will try and write the STR in best detail I can so we can spot the difference:
1. Open Firefox Beta v63.0b6 on a FRESH PROFILE;
(Steps here: https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles?redirectlocale=en-US&redirectslug=Managing-profiles#w_starting-the-profile-manager)
2. Select the address bar, input "facebook.com" and tap Enter.
3. Bookmark the page. (Click on the star icon and the done button; "https://www.facebook.com/" gets saved in "Other bookmarks" folder;
4. Open a new tab and close the previous tab (https://www.facebook.com/);
5. Select the address bar, input "about:preferences#privacy" and tap Enter;
6. Scroll down to the "History" section, click on the "Clear History..." button.
7. Select Time range to clear: "Everything" from the drop-down, tick/select every checkbox and click on the "Clear now" button;
8. Open a new tab and close the previous tab (about:preferences#privacy);
9. Select the address bar and input "face".
Expected: The address bar gets an autocomplete suggestion as "facebook.com".
Actual: The browser does not suggest the previously saved bookmark.

@Kokujou @Johannes Schleger: Do you spot any differences from my steps to reproduce/verify to your own?
Flags: needinfo?(github_11837948)
Flags: needinfo?(Kokujou)
Also, it it fixed in the case of the last Nightly build on your side?
(In reply to Bodea Daniel [:danibodea] from comment #32)

I followed your steps exactly and can confirm that the autocompletion works when following your steps.

It does not work, however, if you clear the history with the default settings (so step 7 is to click the "Clear now" button only). It seems to me that delete "everything" deletes less than delete "last hour".
Flags: needinfo?(github_11837948)
Flags: needinfo?(adw)
Thanks for pointing out that this bug doesn't seem fixed on b6.  This is kind of an interesting case, but it's working as expected.  The reason facebook.com isn't autofilled in the latest STR with the modification from comment 34 is that its frecency doesn't meet the autofill threshold.  At the end of the STR, we end up with 3 origins in the places database:

id|prefix|host|frecency
1|https://|support.mozilla.org|280
2|https://|www.mozilla.org|420
5|https://|www.facebook.com|140

The moz_meta table is:

key|value
origin_frecency_count|3
origin_frecency_sum|840

Which means that the autofill threshold is 840 / 3 = 280, the average of all origin frecencies.  The www.facebook.com origin has a frecency of 140, and 140 < 280, so that's why it's not autofilled.  If you type "moz" instead, mozilla.org gets autofilled since www.mozilla.org's frecency meets the threshold.  Same for support.mozilla.org.

If you clear "everything" in history instead of just the last hour, then the frecencies of the origins in your database all become zero:

id|prefix|host|frecency
1|https://|www.mozilla.org|0
2|https://|support.mozilla.org|0
5|https://|www.facebook.com|0

Which means that they'll get autofilled -- and this is the case that was fixed in this bug, and that's why the original STR work.

Also, if you do the STR with the default "last hour" option on Nightly, facebook.com gets autofilled.  That's because the places database created on Nightly has some extra bookmarks/places, so the frecency calculations are different.

This threshold comparison is new to the new autofill algorithm, and it can make it really hard to compare different people's results or figure out why they're different.  As you build up a real-world browsing history and database of URLs and origins, autofill will adapt to the URLs and origins that you more often visit and use.
Flags: needinfo?(adw)
Thank you, Drew, for clarification. I have to say that this process does not really satisfy me as I would personally like addresses saved as bookmarks to get auto-filled by default, indifferent to the frequency of their visitation. On the other hand, I see the advantages of taking frequency into consideration and I trust this was well thought through.

Considering all the above, I will consider this issue as verified.

Thank you, Kokujou and Johannes Schleger for your contribution!
Status: RESOLVED → VERIFIED
Flags: qe-verify+
Flags: needinfo?(Kokujou)
just to mention... it's still not solved in 7b, just upgraded and tested it...
where'll this issue be worked out first? nightly or beta? or doesn't it matter?
Kokujou, you're probably seeing what I described in comment 35.
maybe but i don't see anything getting auto filled... basically nothing has changed, because nothing get's auto filled, the moment i restart my browser.
it just gets auto filled when i visit those sites and this should be exactly the kind of bug that should be fixed right now...
(In reply to Drew Willcoxon :adw from comment #35)
(In reply to Kokujou from comment #39)
Because it did not work in my existing profile, I kind of figured out the differences.

First difference: My moz_origins table contained many negative values although I clean the complete history (not sure why this is the case?).

  prefix|host|frecency
  https://|github.com|-820
  https://|mozilla.org|-137
  https://|en.wikipedia.org|-299

After deleting the places.sqlite, I had the expected zero frecency.

  prefix|host|frecency
  https://|github.com|0
  https://|avherald.com|0
  https://|en.wikipedia.org|0


Second difference: If I have no startpage configured, the autocompletion works for all bookmarks. After I visited any bookmark the autocompletion does not work for any other bookmark anymore (threshold becomes greater 0 I believe). Similarly, if you have a startpage configured, the threshold becomes greater 0 immediately after browser startup and therefore no bookmarks are filled (except your configured startpage).


I am not sure why the old algorithm got replaced, but so far the new one does not work for my use case.
Flags: needinfo?(adw)
What is the disadvantage of having a constant 0 threshold? Does it annoy "normal" users if the autocompletion suggests websites they hardly visit?
I just registered to post my feedback on this issue. I still have this problem in beta 7 and I think this new algorithm is terrible. It doesn't autofill anything anymore, except for google (which I don't even use that often, mostly DuckDuckGo). I have almost everything at default settings, except for the following urlbar related properties:
browser.urlbar.unifiedcomplete;false
browser.urlbar.suggest.openpage;false
browser.urlbar.searchSuggestionsChoice;true
browser.urlbar.placeholderName;DuckDuckGo

Changing these to their default doesn't help. I also tried to delete places.sqlite but that doesn't help either. I clear Browsing & Download History + Form & Search History on close. Even when I visit websites during a session, such as some reddit pages, nothing will ever get autofilled, no matter how often I visit a site.
Comment on attachment 9007953 [details] [diff] [review]
Release/62 patch

fix autofill regression with bookmarks in 62; approved for 62.0.2
Attachment #9007953 - Flags: approval-mozilla-release? → approval-mozilla-release+
When can we test that Julien? If you need help with the test.
Putting the qe-verify+ flag back for verification process.
Flags: qe-verify+
Flags: needinfo?(adw)
i just read something about verification... 
what version shall i download to test if it's done this time?

just a simple suggestion from my side:
why not just save the visits to the bookmarks in the actual bookmark file?

as far as i understand you're currently mixing the bookmarks with the visited cache up, so everytime you clear the cache you clear the count, we visit one of our bookmarks too.

but there definitely is some kind of file, the bookmarks are read from, otherwise they would be deleted at every start too.
so why not just put the visits there too? this would pretty easily solve this problem as far as i even understand it. and some little integers shouldn't make the file much larger... 

if you are unsure maybe about some setting in the about:config
I have reproduced the issue on Firefox Release v62.0 and I have verified the fix in Firefox Release Candidate v62.0.2 using the STR from comment 32, on Windows 10.
Uplift successful. Thank you.
Flags: qe-verify+
It's not completely fixed yet in 62.0.2.
This can be reproduced if I have two or more bookmarks of same domain.

Steps to reproduce:
1. Clear browser history and uncheck "remember my history"
2. Save two bookmark of different domains, https://www.mozilla.org/ and https://www.youtube.com/ (autofill should work properly for now)
3. Save another bookmark to https://www.youtube.com/user/Mozilla
4. Type "moz" in the address bar. The URL shoudld be autofilled as mozilla.org, but it does not.
5. Type "you" in the address bar. The URL shoudld is autofilled as youtube.com.

Actual results:
It turns out If I have two or more bookmarks of same domain, other bookmarks of unique domains can not be autofilled.
It is not fixed yet in 62.0.2.
Updated to 62.0.2, not working properly for me either.

When you start typing to bookmark URL...
- In 61, if there was a bookmark match, it put the bookmark URL in the address bar. (Only had to press Enter to visit)
- Starting 62.0.0 (and in 62.0.2 still), if there's a bookmark match, it puts "Search with Google" in the address bar. The matched bookmark URL is in the second row. (You have to press the down arrow, then Enter.)
maybe someone can tell me how to properly downgrade firefox to 61 and disabling the auto update.
for me this "little" bug is more important than any of the changes made from 61 to 62.

i have about 200 bookmarks and i'm already implicity used to just entering small keywords to navigate to certain sites. so i automatically enter them and now i just get redirected to google which doesn't even know what i want XD

so please tell me.
(In reply to roviavas from comment #49)
> Actual results:
> It turns out If I have two or more bookmarks of same domain, other bookmarks
> of unique domains can not be autofilled.

This is actually expected per the current code, even if probably not what we want.
I think we should revise how things work when history is disabled, but what you report is not this bug, and as such it should be filed apart. Please file a new bug for your case.

(In reply to Kokujou from comment #52)
> maybe someone can tell me how to properly downgrade firefox to 61 and
> disabling the auto update.

Any broken functionality can't be as important as security fixes; as such no, you should not downgrade. If you need a more stable product you can use ESR that updates less often but has security fixes.
It's not fixed for me either in 62.0.2, absolutely nothing gets autofilled here, very annoying, please revert this terrible change.
(In reply to maarnuwels from comment #55)
> It's not fixed for me either in 62.0.2, absolutely nothing gets autofilled
> here, very annoying, please revert this terrible change.

same here, 62.0.2 did not fix this issue.
Not fixed for me either.
I already suggested to file a new bug. Anyway, someone filed bug 1493543, that is pretty much the same problem you report. So please follow that.
See Also: → 1493636
This issue will be considered as verified based on comment 35, comment 36 and comment 48. Another bug was logged for the dissatisfaction of the new auto-fill process: bug 1493636.

Thank you!
I saw your comment after I've logged it. Sorry for the confusion. Please set one of them as ivalid/duplicate, so the better one would be addressed. Thank you!
Flags: needinfo?(mak77)
I will coalesce everything on your bug report. thanks.
Flags: needinfo?(mak77)
Depends on: 1497058
No longer depends on: 1497058
See Also: → 1497058
Note added to the 63 release notes to mention that this issue which was mentionned in the 62 release notes as a known issue is now fixed. Wording:
Resolved an issue that prevented the address bar from autofilling bookmarked URLs in certain cases
I think that this is not fixed yet for me in Firefox 63 in GNU/Linux. I can't get no single autofill now.

{
  "application": {
    "name": "Firefox",
    "osVersion": "Linux 4.15.0-38-generic",
    "version": "63.0",
    "buildID": "20181025160204",
    "userAgent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0",
    "safeMode": false,
    "supportURL": "https://support.mozilla.org/1/firefox/63.0/Linux/es-ES/",
    "numTotalWindows": 1,
    "numRemoteWindows": 1,
    "remoteAutoStart": true,
    "currentContentProcesses": 5,
    "maxContentProcesses": 4,
    "autoStartStatus": 1,
    "policiesStatus": 0,
    "keyGoogleFound": true,
    "keyMozillaFound": false
  },
  "securitySoftware": {
    "registeredAntiVirus": "",
    "registeredAntiSpyware": "",
    "registeredFirewall": ""
  },
  "modifiedPreferences": {
    "accessibility.typeaheadfind.flashBar": 0,
    "browser.cache.disk.capacity": 153600,
    "browser.cache.disk.filesystem_reported": 1,
    "browser.cache.disk.hashstats_reported": 1,
    "browser.cache.disk.smart_size.first_run": false,
    "browser.cache.frecency_experiment": 3,
    "browser.download.useDownloadDir": false,
    "browser.places.smartBookmarksVersion": 8,
    "browser.search.suggest.enabled": false,
    "browser.search.useDBForOrder": true,
    "browser.sessionstore.upgradeBackup.latestBuildID": "20180518175514",
    "browser.startup.homepage_override.buildID": "20181025160204",
    "browser.startup.homepage_override.mstone": "63.0",
    "browser.tabs.remote.autostart.2": true,
    "browser.urlbar.daysBeforeHidingSuggestionsPrompt": 3,
    "browser.urlbar.lastSuggestionsPromptDate": 20170805,
    "browser.urlbar.matchBuckets": "general:5,suggestion:Infinity",
    "browser.urlbar.placeholderName": "DuckDuckGo",
    "browser.urlbar.searchSuggestionsChoice": false,
    "browser.urlbar.suggest.searches": false,
    "browser.urlbar.userMadeSearchSuggestionsChoice": true,
    "dom.ipc.processCount.web": 4,
    "dom.push.userAgentID": "dd4d0831831d486293b9f4effe36ef8b",
    "extensions.lastAppVersion": "63.0",
    "font.default.x-western": "sans-serif",
    "font.internaluseonly.changed": true,
    "font.name.monospace.x-western": "Fira Code",
    "font.name.sans-serif.x-western": "Noto Sans UI",
    "font.name.serif.x-western": "Noto Sans",
    "media.autoplay.enabled": false,
    "media.eme.enabled": true,
    "media.gmp-gmpopenh264.abi": "x86_64-gcc3",
    "media.gmp-gmpopenh264.lastUpdate": 1530770010,
    "media.gmp-gmpopenh264.version": "1.7.1",
    "media.gmp-manager.buildID": "20181025160204",
    "media.gmp-manager.lastCheck": 1540804295,
    "media.gmp-widevinecdm.abi": "x86_64-gcc3",
    "media.gmp-widevinecdm.lastUpdate": 1540804297,
    "media.gmp-widevinecdm.version": "1.4.9.1088",
    "media.gmp.storage.version.observed": 1,
    "network.cookie.cookieBehavior": 4,
    "network.cookie.lifetimePolicy": 2,
    "network.cookie.prefsMigrated": true,
    "network.predictor.cleaned-up": true,
    "places.history.expiration.transient_current_max_pages": 112348,
    "places.database.lastMaintenance": 1540740116,
    "plugin.disable_full_page_plugin_for_types": "application/pdf",
    "plugins.ctprollout.cohort": "user-changed-from-test",
    "plugins.ctprollout.cohortSample": "0.519165",
    "print.print_bgcolor": false,
    "print.print_bgimages": false,
    "print.print_duplex": 0,
    "print.print_evenpages": true,
    "print.print_margin_bottom": "0.5",
    "print.print_margin_left": "0.5",
    "print.print_margin_right": "0.5",
    "print.print_margin_top": "0.5",
    "print.print_oddpages": true,
    "print.print_orientation": 0,
    "print.print_page_delay": 50,
    "print.print_paper_data": 0,
    "print.print_paper_height": " 11,69",
    "print.print_paper_name": "iso_a4",
    "print.print_paper_size_unit": 0,
    "print.print_paper_width": "  8,27",
    "print.print_resolution": 600,
    "print.print_scaling": "  1,00",
    "print.print_shrink_to_fit": true,
    "print.print_to_file": false,
    "print.print_unwriteable_margin_bottom": 56,
    "print.print_unwriteable_margin_left": 25,
    "print.print_unwriteable_margin_right": 25,
    "print.print_unwriteable_margin_top": 25,
    "privacy.sanitize.timeSpan": 0,
    "privacy.sanitize.pending": "[{\"id\":\"shutdown\",\"itemsToClear\":[\"cache\",\"cookies\",\"history\",\"formdata\",\"downloads\",\"sessions\"],\"options\":{}},{\"id\":\"newtab-container\",\"itemsToClear\":[],\"options\":{}}]",
    "privacy.donottrackheader.enabled": true,
    "privacy.history.custom": true,
    "privacy.sanitize.didShutdownSanitize": true,
    "privacy.sanitize.sanitizeOnShutdown": true,
    "privacy.trackingprotection.enabled": true,
    "privacy.trackingprotection.introCount": 20,
    "security.disable_button.openDeviceManager": false,
    "security.sandbox.content.tempDirSuffix": "d6dfc010-0440-4fb8-b054-d33ce346e8bd",
    "services.sync.declinedEngines": "",
    "signon.importedFromSqlite": true,
    "storage.vacuum.last.index": 1,
    "storage.vacuum.last.places.sqlite": 1539946439
  },
  "lockedPreferences": {},
  "media": {
    "currentAudioBackend": "remote",
    "currentMaxAudioChannels": 2,
    "currentPreferredSampleRate": 44100,
    "audioOutputDevices": [
      {
        "name": "Audio Interno Estéreo analógico",
        "groupId": "/devices/pci0000:00/0000:00:1f.3/sound/card0",
        "vendor": "Intel Corporation",
        "type": 2,
        "state": 2,
        "preferred": 15,
        "supportedFormat": 12336,
        "defaultFormat": 16,
        "maxChannels": 2,
        "defaultRate": 44100,
        "maxRate": 384000,
        "minRate": 1,
        "maxLatency": 0,
        "minLatency": 0
      },
      {
        "name": "PulseEffects",
        "groupId": "",
        "vendor": "",
        "type": 2,
        "state": 2,
        "preferred": 0,
        "supportedFormat": 12336,
        "defaultFormat": 16,
        "maxChannels": 2,
        "defaultRate": 44100,
        "maxRate": 384000,
        "minRate": 1,
        "maxLatency": 0,
        "minLatency": 0
      }
    ],
    "audioInputDevices": [
      {
        "name": "Monitor of Audio Interno Estéreo analógico",
        "groupId": "/devices/pci0000:00/0000:00:1f.3/sound/card0",
        "vendor": "Intel Corporation",
        "type": 1,
        "state": 2,
        "preferred": 0,
        "supportedFormat": 12336,
        "defaultFormat": 16,
        "maxChannels": 2,
        "defaultRate": 44100,
        "maxRate": 384000,
        "minRate": 1,
        "maxLatency": 0,
        "minLatency": 0
      },
      {
        "name": "Audio Interno Estéreo analógico",
        "groupId": "/devices/pci0000:00/0000:00:1f.3/sound/card0",
        "vendor": "Intel Corporation",
        "type": 1,
        "state": 2,
        "preferred": 15,
        "supportedFormat": 12336,
        "defaultFormat": 16,
        "maxChannels": 2,
        "defaultRate": 44100,
        "maxRate": 384000,
        "minRate": 1,
        "maxLatency": 0,
        "minLatency": 0
      },
      {
        "name": "Monitor of PulseEffects",
        "groupId": "",
        "vendor": "",
        "type": 1,
        "state": 2,
        "preferred": 0,
        "supportedFormat": 12336,
        "defaultFormat": 16,
        "maxChannels": 2,
        "defaultRate": 44100,
        "maxRate": 384000,
        "minRate": 1,
        "maxLatency": 0,
        "minLatency": 0
      }
    ]
  },
  "javaScript": {
    "incrementalGCEnabled": true
  },
  "accessibility": {
    "isActive": false,
    "forceDisabled": 0,
    "handlerUsed": false,
    "instantiator": ""
  },
  "libraryVersions": {
    "NSPR": {
      "minVersion": "4.20",
      "version": "4.20"
    },
    "NSS": {
      "minVersion": "3.39",
      "version": "3.39"
    },
    "NSSUTIL": {
      "minVersion": "3.39",
      "version": "3.39"
    },
    "NSSSSL": {
      "minVersion": "3.39",
      "version": "3.39"
    },
    "NSSSMIME": {
      "minVersion": "3.39",
      "version": "3.39"
    }
  },
  "userJS": {
    "exists": false
  },
  "intl": {
    "localeService": {
      "requested": [
        "es-ES",
        "en-US"
      ],
      "available": [
        "en-CA",
        "en-GB",
        "en-ZA",
        "es-AR",
        "es-CL",
        "es-ES",
        "es-MX",
        "en-US"
      ],
      "supported": [
        "es-ES",
        "es-AR",
        "es-CL",
        "es-MX",
        "en-US",
        "en-CA",
        "en-GB",
        "en-ZA",
        "und"
      ],
      "regionalPrefs": [
        "es-ES"
      ],
      "defaultLocale": "und"
    },
    "osPrefs": {
      "systemLocales": [
        "es-ES"
      ],
      "regionalPrefsLocales": [
        "es-ES"
      ]
    }
  },
  "crashes": {
    "submitted": [],
    "pending": 5
  },
  "sandbox": {
    "hasSeccompBPF": true,
    "hasSeccompTSync": true,
    "hasPrivilegedUserNamespaces": true,
    "hasUserNamespaces": true,
    "canSandboxContent": true,
    "canSandboxMedia": true,
    "syscallLog": [],
    "contentSandboxLevel": 4,
    "effectiveContentSandboxLevel": 4
  },
  "graphics": {
    "numTotalWindows": 1,
    "numAcceleratedWindows": 0,
    "windowLayerManagerType": "Basic",
    "windowLayerManagerRemote": true,
    "windowUsingAdvancedLayers": false,
    "numAcceleratedWindowsMessage": [
      ""
    ],
    "adapterDescription": "Intel Open Source Technology Center -- Mesa DRI Intel(R) Iris Plus Graphics 640 (Kaby Lake GT3e) ",
    "adapterVendorID": "Intel Open Source Technology Center",
    "adapterDeviceID": "Mesa DRI Intel(R) Iris Plus Graphics 640 (Kaby Lake GT3e) ",
    "adapterRAM": "",
    "adapterDrivers": "",
    "driverVersion": "3.0 Mesa 18.0.5",
    "driverDate": "",
    "usesTiling": false,
    "contentUsesTiling": false,
    "offMainThreadPaintEnabled": true,
    "offMainThreadPaintWorkerCount": 3,
    "webgl1Renderer": "Intel Open Source Technology Center -- Mesa DRI Intel(R) Iris Plus Graphics 640 (Kaby Lake GT3e) ",
    "webgl1Version": "3.0 Mesa 18.0.5",
    "webgl1DriverExtensions": "GL_3DFX_texture_compression_FXT1 GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_stencil_export GL_AMD_shader_trinary_minmax GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_APPLE_object_purgeable GL_APPLE_packed_pixels GL_ARB_ES2_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_color_buffer_float GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_derivative_control GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_occlusion_query2 GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_polygon_offset_clamp GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_query_buffer_object GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_ballot GL_ARB_shader_bit_encoding GL_ARB_shader_clock GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_stencil_export GL_ARB_shader_storage_buffer_object GL_ARB_shader_texture_image_samples GL_ARB_shader_texture_lod GL_ARB_shading_language_100 GL_ARB_shading_language_420pack GL_ARB_shading_language_packing GL_ARB_shadow GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_texture_barrier GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map GL_ARB_texture_cube_map_array GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_filter_anisotropic GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_mirrored_repeat GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_transpose_matrix GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_window_pos GL_ATI_blend_equation_separate GL_ATI_draw_buffers GL_ATI_separate_stencil GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_copy_texture GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_gpu_program_parameters GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_shader_integer_mix GL_EXT_shader_samples_identical GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_lod_bias GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_texture_shared_exponent GL_EXT_texture_snorm GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array GL_EXT_vertex_array_bgra GL_IBM_multimode_draw_arrays GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_INTEL_performance_query GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_robust_buffer_access_behavior GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_sliced_3d GL_MESA_pack_invert GL_MESA_shader_integer_functions GL_MESA_texture_signed_rgba GL_MESA_window_pos GL_NV_blend_square GL_NV_conditional_render GL_NV_depth_clamp GL_NV_light_max_exponent GL_NV_packed_depth_stencil GL_NV_primitive_restart GL_NV_texgen_reflection GL_NV_texture_barrier GL_NV_texture_env_combine4 GL_NV_texture_rectangle GL_OES_EGL_image GL_OES_read_format GL_S3_s3tc GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SUN_multi_draw_arrays ",
    "webgl1Extensions": "ANGLE_instanced_arrays EXT_blend_minmax EXT_color_buffer_half_float EXT_frag_depth EXT_sRGB EXT_shader_texture_lod EXT_texture_filter_anisotropic EXT_disjoint_timer_query OES_element_index_uint OES_standard_derivatives OES_texture_float OES_texture_float_linear OES_texture_half_float OES_texture_half_float_linear OES_vertex_array_object WEBGL_color_buffer_float WEBGL_compressed_texture_astc WEBGL_compressed_texture_etc WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_depth_texture WEBGL_draw_buffers WEBGL_lose_context",
    "webgl1WSIInfo": "GLX 1.4\nGLX_VENDOR(client): Mesa Project and SGI\nGLX_VENDOR(server): SGI\nExtensions: GLX_ARB_create_context GLX_ARB_create_context_profile GLX_ARB_create_context_robustness GLX_ARB_fbconfig_float GLX_ARB_framebuffer_sRGB GLX_ARB_get_proc_address GLX_ARB_multisample GLX_EXT_buffer_age GLX_EXT_create_context_es2_profile GLX_EXT_create_context_es_profile GLX_EXT_fbconfig_packed_float GLX_EXT_framebuffer_sRGB GLX_EXT_import_context GLX_EXT_texture_from_pixmap GLX_EXT_visual_info GLX_EXT_visual_rating GLX_INTEL_swap_event GLX_MESA_copy_sub_buffer GLX_MESA_multithread_makecurrent GLX_MESA_query_renderer GLX_MESA_swap_control GLX_OML_swap_method GLX_OML_sync_control GLX_SGIS_multisample GLX_SGIX_fbconfig GLX_SGIX_pbuffer GLX_SGIX_visual_select_group GLX_SGI_make_current_read GLX_SGI_swap_control GLX_SGI_video_sync ",
    "webgl2Renderer": "Intel Open Source Technology Center -- Mesa DRI Intel(R) Iris Plus Graphics 640 (Kaby Lake GT3e) ",
    "webgl2Version": "4.5 (Core Profile) Mesa 18.0.5",
    "webgl2DriverExtensions": "GL_3DFX_texture_compression_FXT1 GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_stencil_export GL_AMD_shader_trinary_minmax GL_AMD_vertex_shader_layer GL_AMD_vertex_shader_viewport_index GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_APPLE_object_purgeable GL_ARB_ES2_compatibility GL_ARB_ES3_1_compatibility GL_ARB_ES3_2_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_indirect GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_gpu_shader_int64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_indirect_parameters GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_occlusion_query2 GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_sprite GL_ARB_polygon_offset_clamp GL_ARB_post_depth_coverage GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_query_buffer_object GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_ballot GL_ARB_shader_bit_encoding GL_ARB_shader_clock GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_stencil_export GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_image_samples GL_ARB_shader_texture_lod GL_ARB_shader_viewport_layer_array GL_ARB_shading_language_420pack GL_ARB_shading_language_packing GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_barrier GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map_array GL_ARB_texture_filter_anisotropic GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_attrib_binding GL_ARB_vertex_shader GL_ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ATI_blend_equation_separate GL_ATI_texture_float GL_EXT_abgr GL_EXT_blend_equation_separate GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_sRGB GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_shader_integer_mix GL_EXT_shader_samples_identical GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_texture_shared_exponent GL_EXT_texture_snorm GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array_bgra GL_IBM_multimode_draw_arrays GL_INTEL_conservative_rasterization GL_INTEL_performance_query GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_robust_buffer_access_behavior GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_sliced_3d GL_MESA_pack_invert GL_MESA_shader_integer_functions GL_MESA_texture_signed_rgba GL_NV_conditional_render GL_NV_depth_clamp GL_NV_packed_depth_stencil GL_NV_texture_barrier GL_OES_EGL_image GL_S3_s3tc",
    "webgl2Extensions": "EXT_color_buffer_float EXT_texture_filter_anisotropic EXT_disjoint_timer_query OES_texture_float_linear WEBGL_compressed_texture_astc WEBGL_compressed_texture_etc WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_lose_context",
    "webgl2WSIInfo": "GLX 1.4\nGLX_VENDOR(client): Mesa Project and SGI\nGLX_VENDOR(server): SGI\nExtensions: GLX_ARB_create_context GLX_ARB_create_context_profile GLX_ARB_create_context_robustness GLX_ARB_fbconfig_float GLX_ARB_framebuffer_sRGB GLX_ARB_get_proc_address GLX_ARB_multisample GLX_EXT_buffer_age GLX_EXT_create_context_es2_profile GLX_EXT_create_context_es_profile GLX_EXT_fbconfig_packed_float GLX_EXT_framebuffer_sRGB GLX_EXT_import_context GLX_EXT_texture_from_pixmap GLX_EXT_visual_info GLX_EXT_visual_rating GLX_INTEL_swap_event GLX_MESA_copy_sub_buffer GLX_MESA_multithread_makecurrent GLX_MESA_query_renderer GLX_MESA_swap_control GLX_OML_swap_method GLX_OML_sync_control GLX_SGIS_multisample GLX_SGIX_fbconfig GLX_SGIX_pbuffer GLX_SGIX_visual_select_group GLX_SGI_make_current_read GLX_SGI_swap_control GLX_SGI_video_sync ",
    "info": {
      "AzureCanvasBackend": "skia",
      "AzureFallbackCanvasBackend": "none",
      "AzureContentBackend": "skia",
      "AzureCanvasAccelerated": 0,
      "CairoUseXRender": 0,
      "ApzWheelInput": 1,
      "ApzDragInput": 1,
      "ApzKeyboardInput": 1,
      "ApzAutoscrollInput": 1
    },
    "featureLog": {
      "features": [
        {
          "name": "HW_COMPOSITING",
          "description": "Compositing",
          "status": "blocked",
          "log": [
            {
              "type": "default",
              "status": "blocked",
              "message": "Acceleration blocked by platform"
            }
          ]
        },
        {
          "name": "OPENGL_COMPOSITING",
          "description": "OpenGL Compositing",
          "status": "unavailable",
          "log": [
            {
              "type": "default",
              "status": "unavailable",
              "message": "Hardware compositing is disabled"
            }
          ]
        },
        {
          "name": "WEBRENDER",
          "description": "WebRender",
          "status": "unavailable",
          "log": [
            {
              "type": "default",
              "status": "opt-in",
              "message": "WebRender is an opt-in feature"
            },
            {
              "type": "runtime",
              "status": "unavailable",
              "message": "Hardware compositing is disabled"
            }
          ]
        },
        {
          "name": "WEBRENDER_QUALIFIED",
          "description": "WebRender qualified",
          "status": "blocked",
          "log": [
            {
              "type": "default",
              "status": "available"
            },
            {
              "type": "env",
              "status": "blocked",
              "message": "No qualified hardware"
            }
          ]
        },
        {
          "name": "OMTP",
          "description": "Off Main Thread Painting",
          "status": "available",
          "log": [
            {
              "type": "default",
              "status": "available"
            }
          ]
        }
      ],
      "fallbacks": []
    },
    "crashGuards": []
  },
  "extensions": [
    {
      "name": "AgentX",
      "version": "1.1.1",
      "isActive": true,
      "id": "agentx@epistemex.com"
    },
    {
      "name": "Chrome Store Foxified",
      "version": "3.4",
      "isActive": true,
      "id": "Chrome-Store-Foxified@jetpack"
    },
    {
      "name": "Emoji Box",
      "version": "1.2.86.1405",
      "isActive": true,
      "id": "{369b4c1b-94a5-46ce-9301-d18120875adc}"
    },
    {
      "name": "Grammarly for Firefox",
      "version": "8.829.1781",
      "isActive": false,
      "id": "87677a2c52b84ad3a151a4a72f5bd3c4@jetpack"
    },
    {
      "name": "Video DownloadHelper",
      "version": "7.3.5",
      "isActive": false,
      "id": "{b9db16a4-6edc-47ec-a1f4-b86292ed211d}"
    }
  ],
  "features": [
    {
      "name": "Application Update Service Helper",
      "version": "2.0",
      "id": "aushelper@mozilla.org"
    },
    {
      "name": "Firefox Screenshots",
      "version": "33.0.0",
      "id": "screenshots@mozilla.org"
    },
    {
      "name": "Form Autofill",
      "version": "1.0",
      "id": "formautofill@mozilla.org"
    },
    {
      "name": "Photon onboarding",
      "version": "1.0",
      "id": "onboarding@mozilla.org"
    },
    {
      "name": "Pocket",
      "version": "1.0.5",
      "id": "firefox@getpocket.com"
    },
    {
      "name": "Web Compat",
      "version": "2.0.1",
      "id": "webcompat@mozilla.org"
    },
    {
      "name": "WebCompat Reporter",
      "version": "1.0.0",
      "id": "webcompat-reporter@mozilla.org"
    }
  ]
}
juanvalencia, please open a separate bug for this issue. Thanks
Nevermind, I can confirm that this has been fixed in Firefox 63.

I wasn't able to see it because it seems some problem arised when updating from 62 -> 63 (no bookmark was actually being loaded), and I needed to recreate my bookmarks file following this:

https://support.mozilla.org/en-US/kb/cant-add-change-or-save-bookmarks#w_create-a-new-bookmarks-file

Sorry for the buzz and thank you very much.
Depends on: 1502821
No longer depends on: 1502821
Regressions: 1502821
You need to log in before you can comment on or make changes to this bug.