Closed
Bug 1363040
Opened 8 years ago
Closed 7 years ago
tracking-protection-16.svg is loaded in windows that don't need it
Categories
(Firefox :: Site Identity, enhancement, P4)
Firefox
Site Identity
Tracking
()
RESOLVED
FIXED
Firefox 59
Tracking | Status | |
---|---|---|
firefox59 | --- | fixed |
People
(Reporter: dao, Assigned: prathiksha)
References
(Blocks 1 open bug)
Details
(Keywords: perf, Whiteboard: [reserve-photon-performance])
Attachments
(1 file)
<jwatt> I'm seeing chrome://browser/skin/tracking-protection-16.svg#enabled load during startup
<jwatt> loading the start page
<jwatt> but I'm not seeing that displayed
<jwatt> do you know where I'd see it?
<dao> in the identity block in private windows
<dao> or with privacy.trackingprotection.enabled = true in non-private windows
<jwatt> huh
<jwatt> I wonder why that's loading during startup when no private windows are opened
<dao> I think it's because we slide in the icon rather than hiding it. :/ http://searchfox.org/mozilla-central/source/browser/themes/shared/identity-block/identity-block.inc.css#140-150
Comment 1•8 years ago
|
||
Potentially something for photon-perf though we don't know how much impact this really has.
Blocks: photon-performance-triage
Whiteboard: [photon-performance]
Updated•8 years ago
|
Flags: qe-verify?
Priority: -- → P2
Updated•8 years ago
|
Priority: P2 → P3
Whiteboard: [photon-performance] → [reserve-photon-performance]
Updated•7 years ago
|
Flags: qe-verify? → qe-verify-
Comment 2•7 years ago
|
||
This is now a whitelist item in the browser_startup_images.js test.
https://searchfox.org/mozilla-central/rev/31311070d9860b24fe4a7a36976c14b328c16208/browser/base/content/test/performance/browser_startup_images.js#85
Updated•7 years ago
|
No longer blocks: photon-performance-triage
Updated•7 years ago
|
Priority: P3 → P4
Assignee | ||
Updated•7 years ago
|
Assignee: nobody → prathikshaprasadsuman
Status: NEW → ASSIGNED
Comment hidden (mozreview-request) |
Comment 4•7 years ago
|
||
mozreview-review |
Comment on attachment 8939889 [details]
Bug 1363040 - Stop loading tracking-protection-16.svg in windows that don't display it.
https://reviewboard.mozilla.org/r/210198/#review215910
Thanks for tackling this!
::: browser/themes/shared/identity-block/identity-block.inc.css:177
(Diff revision 1)
> margin-inline-end: -20px;
> pointer-events: none;
> opacity: 0;
> /* Only animate the shield in, when it disappears hide it immediately. */
> transition: none;
> + display: none;
While this should solve the problem, we now have the issue that the tracking protection icon is skipping its animation, which it should not.
Another approach could be unsetting the list-style-image instead of using display: none. That could have the same effect but retain the animation.
Can you try that? :)
Thanks!
Attachment #8939889 -
Flags: review?(jhofmann)
Comment hidden (mozreview-request) |
Comment 6•7 years ago
|
||
mozreview-review |
Comment on attachment 8939889 [details]
Bug 1363040 - Stop loading tracking-protection-16.svg in windows that don't display it.
https://reviewboard.mozilla.org/r/210198/#review216278
Amazing, thank you!
::: browser/themes/shared/identity-block/identity-block.inc.css:177
(Diff revision 2)
> margin-inline-end: -20px;
> pointer-events: none;
> opacity: 0;
> /* Only animate the shield in, when it disappears hide it immediately. */
> transition: none;
> + list-style-image: unset;
Nit: list-style-image: none might be a bit more accurate since we don't want to reset the image to the parent value but just avoid displaying anything at all.
Attachment #8939889 -
Flags: review?(jhofmann) → review+
Comment hidden (mozreview-request) |
Assignee | ||
Updated•7 years ago
|
Keywords: checkin-needed
Comment 8•7 years ago
|
||
The issue still open in Review Board has to set to fixed else Review Board will prevent the landing of the patch.
Flags: needinfo?(prathikshaprasadsuman)
Keywords: checkin-needed
Assignee | ||
Updated•7 years ago
|
Flags: needinfo?(prathikshaprasadsuman)
Keywords: checkin-needed
Pushed by archaeopteryx@coole-files.de:
https://hg.mozilla.org/integration/autoland/rev/9d19176e7d25
Stop loading tracking-protection-16.svg in windows that don't display it. r=johannh
Keywords: checkin-needed
Comment 10•7 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
status-firefox59:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 59
You need to log in
before you can comment on or make changes to this bug.
Description
•