You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The syntax snippets have been copied from the page title, and can be something like var sinkId = HTMLMediaElement.sinkId. This doesn't work, because sinkId is not a static member of HTMLMediaElement, it's on the prototype.
What did you expect to see?
Examples like this need to be var sinkId = mediaElement.sinkId or similar.
Did you test this? If so, how?
I searched using git grep -E '= [A-Z][A-Za-z0-9]+\.'. Many legitimate cases like Math.* and JSON.* show up, but there are still many incorrect cases left.
The text was updated successfully, but these errors were encountered:
foolip
added
the
needs triage
Triage needed by staff and/or partners. Automatically applied when an issue is opened.
label
Mar 25, 2021
What page(s) did you find the problem on?
I found and fixed a number of these in #3452.
What is the problem?
The syntax snippets have been copied from the page title, and can be something like
var sinkId = HTMLMediaElement.sinkId
. This doesn't work, becausesinkId
is not a static member ofHTMLMediaElement
, it's on the prototype.What did you expect to see?
Examples like this need to be
var sinkId = mediaElement.sinkId
or similar.Did you test this? If so, how?
I searched using
git grep -E '= [A-Z][A-Za-z0-9]+\.'
. Many legitimate cases likeMath.*
andJSON.*
show up, but there are still many incorrect cases left.The text was updated successfully, but these errors were encountered: