Skip to content

Commit

Permalink
Issue #30. Update WebKitCSSMatrix#scale algorithm accordingly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Taylor committed Jan 16, 2016
1 parent fbbba35 commit a9b8457
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
6 changes: 2 additions & 4 deletions compatibility.bs
Expand Up @@ -715,11 +715,9 @@ When the <code>{{translate(tx, ty, tz)}}</code> method is invoked, the user agen

When the <code>{{scale(scaleX, scaleY, scaleZ)}}</code> method is invoked, the user agent must run the following steps:

1. If <var>scaleX</var> or <var>scaleZ</var> are undefined, let <var>scaleX</var> or <var>scaleZ</var> be 1, respectively.
1. If <var>scaleY</var> is undefined, let <var>scaleY</var> be the value of <var>scaleX</var>.

2. If <var>scaleY</var> is undefined, let <var>scaleY</var> be the value of <var>scaleX</var>.

3. Return the result of the algorithm for the {{DOMMatrixReadOnly}} <a method for="DOMMatrixReadOnly" spec="geometry-1">scaleNonUniform(scaleX, scaleY, scaleZ)</a> method as a new {{WebKitCSSMatrix}} object.
2. Return the result of the algorithm for the {{DOMMatrixReadOnly}} <a method for="DOMMatrixReadOnly" spec="geometry-1">scaleNonUniform(scaleX, scaleY, scaleZ)</a> method as a new {{WebKitCSSMatrix}} object.

When the <code>{{rotate(rotX, rotY, rotZ)}}</code> method is invoked, the user agent must run the following steps:

Expand Down
5 changes: 0 additions & 5 deletions compatibility.html
Expand Up @@ -1133,11 +1133,6 @@ <h4 class="heading settled" data-level="4.1.4" id="webkitcssmatrix-immutable-met


<ol>
<li data-md="">
<p>If <var>scaleX</var> or <var>scaleZ</var> are undefined, let <var>scaleX</var> or <var>scaleZ</var> be 1, respectively.</p>



<li data-md="">
<p>If <var>scaleY</var> is undefined, let <var>scaleY</var> be the value of <var>scaleX</var>.</p>

Expand Down

0 comments on commit a9b8457

Please sign in to comment.