privacy.resistfingerprinting performance API spoofing breaks vimeo.com
Categories
(Core :: DOM: Security, defect, P2)
Tracking
()
People
(Reporter: ke5trel, Assigned: me)
References
(Blocks 1 open bug, Regression, )
Details
(Keywords: regression, Whiteboard: [fingerprinting][fp-triaged][sci-exclude][domsecurity-active])
Attachments
(1 file)
(deleted),
text/x-phabricator-request
|
Details |
Comment 1•6 years ago
|
||
Updated•6 years ago
|
Comment 3•6 years ago
|
||
Comment 4•6 years ago
|
||
Comment 5•6 years ago
|
||
Updated•6 years ago
|
Updated•5 years ago
|
I've detected a new website that is broken by resistfingerprinting.
Is there an issue that centralizes all broken websites?
Or do we create one issue per website?
(In reply to monperrus from comment #6)
Is there an issue that centralizes all broken websites?
File and new bug and set the "Blocks" field to "fingerprinting-breakage" (Bug 1507517).
Updated•5 years ago
|
Comment 8•5 years ago
|
||
Hey Kestrel,
Tim and I are checking this issue. We couldn't see the console error in comment 0.
Please feel free to re-open it if you're still able the reproduce the problem.
I already verified that Vimeo fixed it at their end in Comment 2 but Comment 4 recommended leaving this bug open to address the underlying issue.
Comment 10•5 years ago
|
||
(In reply to Kestrel from comment #9)
I already verified that Vimeo fixed it at their end in Comment 2 but Comment 4 recommended leaving this bug open to address the underlying issue.
Sorry, I totally missed the previous comments.
Tim, could you take a look to see if we can do what Tom suggested in comment 1?
Updated•5 years ago
|
Updated•5 years ago
|
Assignee | ||
Comment 11•5 years ago
|
||
In RFP mode, we do not support PerformanceNavigationTiming
, so don't expose
it. In particular, window.PerformanceNavigationTiming
should return
undefined
.
Added a new method PerformanceNavigationTiming::Enabled
which when used with
the WebIDL Func
attribute allows us to toggle whether
window.PerformanceNavigationTiming
is exposed.
Created
dom/tests/mochitest/general/test_toggling_performance_navigation_timing.html
to test whether the toggling works.
Comment 12•5 years ago
|
||
Comment 13•5 years ago
|
||
bugherder |
Comment 14•5 years ago
|
||
browser_performanceAPI.js
"For reduceTimerPrecision, there should be 4 entries for performance.getEntries()"
// PerformanceNavigationTiming, PerformanceMark, PerformanceMark, PerformanceMeasure
Doesn't seem right?
Updated•5 years ago
|
Assignee | ||
Comment 15•5 years ago
|
||
(In reply to Simon Mainey from comment #14)
browser_performanceAPI.js
"For reduceTimerPrecision, there should be 4 entries for performance.getEntries()" // PerformanceNavigationTiming, PerformanceMark, PerformanceMark, PerformanceMeasure
Doesn't seem right?
That function is a little hard to read, it took me a while to figure out what it does. Here is what it does:
content.performance.clearMarks();
content.performance.clearMeasures();
content.performance.clearResourceTimings();
content.performance.mark("Test");
content.performance.mark("Test-End");
content.performance.measure("Test-Measure", "Test", "Test-End");
content.performance.getEntries()
In particular, if you don't do the clear, it does not work. :)
Updated•5 years ago
|
Updated•3 years ago
|
Description
•