Skip to content

Commit

Permalink
Fix duplicate dfn/subdfn for canvas's setTransform
Browse files Browse the repository at this point in the history
Until recently we had only one way to call the canvas setTransform() method:
with a list of doubles. Then bb00977
overloaded the method to also accept a DOMMatrixInit object. But the change
causes a spec build error because the markup for it in the spec source causes
duplicate IDs in the generated spec output. This change de-duplicates.
  • Loading branch information
sideshowbarker authored and domenic committed Dec 20, 2015
1 parent 676b621 commit c233765
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -63934,7 +63934,7 @@ try {

</dd>

<dt><var>context</var> . <code subdfn data-x="dom-context-2d-setTransform">setTransform</code>(<var>matrix</var>)</dt>
<dt><var>context</var> . <code data-x="dom-context-2d-setTransform">setTransform</code>(<var>matrix</var>)</dt>

<dd>

Expand Down Expand Up @@ -64021,8 +64021,7 @@ try {
data-x=""><span data-x="dom-context-2d-transform">transform</span>(<var>a</var>, <var>b</var>,
<var>c</var>, <var>d</var>, <var>e</var>, <var>f</var>)</code> method with the same arguments.</p>

<p>The <dfn><code
data-x="dom-context-2d-setTransform">setTransform(<var>matrix</var>)</code></dfn> method must
<p>The <dfn><code data-x="">setTransform(<var>matrix</var>)</code></dfn> method must
reset the <span>current transformation matrix</span> to the value represented by the result of
running the <span>validate and fixup</span> algorithm on <var>matrix</var>.</p>

Expand Down

0 comments on commit c233765

Please sign in to comment.