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
Copy file name to clipboardExpand all lines: geometry/Overview.bs
+20-9Lines changed: 20 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,7 @@ the <dfn method dfn-for=DOMPoint id=dom-dompoint-frompoint><code>fromPoint(<var>
130
130
131
131
<ol>
132
132
<li>Create a new <a interface>DOMPoint</a><var>point</var> initialized to <a attribute for=DOMPoint>x</a>, <a attribute for=DOMPoint>y</a>, <a attribute for=DOMPoint>z</a> and <a attribute for=DOMPoint>w</a> of the current point.</li>
133
-
<li>Let <var>matrix object</var> be the result of calling {{DOMMatrix/fromMatrix()}} with <var>matrix</var> as the argument.
133
+
<li>Let <var>matrix object</var> be the result of invoking <a>create a <code>DOMMatrix</code> from the dictionary</a><var>matrix</var>.
134
134
<li><i>Post-multiply</i><var>point</var> with <var>matrix object</var>.</li>
135
135
<li>Return <var>point</var>.</li>
136
136
</ol>
@@ -707,8 +707,19 @@ when invoked with a sequence argument, must run the following steps:
707
707
<dd>Throw a <code>TypeError</code> exception.</dd>
708
708
</dl>
709
709
710
-
The <dfn method lt=fromMatrix() dfn-for=DOMMatrixReadOnly id=dom-dommatrixreadonly-frommatrix><code>fromMatrix(<var>other</var>)</code></dfn> static method on {{DOMMatrixReadOnly}} and
711
-
the <dfn method lt=fromMatrix() dfn-for=DOMMatrix id=dom-dommatrix-frommatrix><code>fromMatrix(<var>other</var>)</code></dfn> static method on {{DOMMatrix}} must follow these steps:
710
+
The <dfn method lt=fromMatrix() dfn-for=DOMMatrixReadOnly
711
+
id=dom-dommatrixreadonly-frommatrix><code>fromMatrix(<var>other</var>)</code></dfn> static method on
712
+
{{DOMMatrixReadOnly}} must <a>create a <code>DOMMatrixReadOnly</code> from the dictionary</a>
713
+
<var>other</var>.
714
+
715
+
The <dfn method lt=fromMatrix() dfn-for=DOMMatrix
716
+
id=dom-dommatrix-frommatrix><code>fromMatrix(<var>other</var>)</code></dfn> static method on
717
+
{{DOMMatrix}} must <a>create a <code>DOMMatrix</code> from the dictionary</a><var>other</var>.
718
+
719
+
To <dfn lt="create a DOMMatrixReadOnly from the dictionary">create a <code>DOMMatrixReadOnly</code>
720
+
from a dictionary</dfn><var>other</var> or to <dfn lt="create a DOMMatrix from the
721
+
dictionary">create a <code>DOMMatrix</code> from a dictionary</dfn><var>other</var>, follow these
722
+
steps:
712
723
713
724
<ol>
714
725
<li><a>Validate and fixup</a><var>other</var>.</li>
@@ -1016,18 +1027,18 @@ Note: Authors who use chained method calls are recommended to use mutable transf
0 commit comments