-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed ref for setTransform(DOMMatrix2dInit) #3079
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great find! Just a small whitespace tweak.
source
Outdated
<p>The <dfn><code data-x="">setTransform(<var>transform</var>)</code></dfn> method, when invoked, | ||
must run these steps:</p> | ||
<p>The <dfn><code data-x="dom-context-2d-setTransform-matrix">setTransform(<var>transform</var>) | ||
</code></dfn> method, when invoked, must run these steps:</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't introduce a space (newline) here. Instead you'll probably need to break after <dfn><code
Done. |
source
Outdated
<p>The <dfn><code data-x="">setTransform(<var>transform</var>)</code></dfn> method, when invoked, | ||
must run these steps:</p> | ||
<p>The | ||
<dfn><code data-x="dom-context-2d-setTransform-matrix">setTransform(<var>transform</var>)</code></dfn> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're actually supposed to line break after the <code
and before the data-x
. I'll fix it for you.
setTransform(matrix)
was pointing tosetTransform(a,b,c,d,e,f)
. This fixes it.