Skip to content

Commit a17ab17

Browse files
zcorpansvgeesus
authored andcommitted
fix internal xrefs for fromX()
1 parent ef286c1 commit a17ab17

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

geometry/Overview.bs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ The <dfn dfn-type=constructor dfn-for=DOMRectReadOnly><code>DOMRectReadOnly(<var
223223
<li>Return <var>rect</var>.</li>
224224
</ol>
225225

226-
The <dfn dfn-for=DOMRectReadOnly id=dom-domrectreadonly-fromrect><code>fromRect(<var>other</var>)</code></dfn> static method on {{DOMRectReadOnly}} and
227-
the <dfn dfn-for=DOMRect id=dom-domrect-fromrect><code>fromRect(<var>other</var>)</code></dfn> static method on {{DOMRect}} must run the following steps:
226+
The <dfn method lt=fromRect() dfn-for=DOMRectReadOnly id=dom-domrectreadonly-fromrect><code>fromRect(<var>other</var>)</code></dfn> static method on {{DOMRectReadOnly}} and
227+
the <dfn method lt=fromRect() dfn-for=DOMRect id=dom-domrect-fromrect><code>fromRect(<var>other</var>)</code></dfn> static method on {{DOMRect}} must run the following steps:
228228

229229
<ol class=algorithm>
230230
<li>Let <var>rect</var> be a new {{DOMRectReadOnly}} or {{DOMRect}} as appropriate.</li>
@@ -310,7 +310,7 @@ The <dfn dfn-type=constructor dfn-for=DOMQuad><code>DOMQuad(<var>p1</var>, <var>
310310

311311
Note: It is possible to pass <a interface>DOMPoint</a>/<a interface>DOMPointReadOnly</a> arguments as well. The passed arguments will be transformed to the correct object type internally following the WebIDL rules [[!WEBIDL]].
312312

313-
The <dfn dfn-for=DOMQuad><code>fromRect(<var>other</var>)</code></dfn> static method on {{DOMQuad}} must run the following steps:
313+
The <dfn method lt=fromRect() dfn-for=DOMQuad><code>fromRect(<var>other</var>)</code></dfn> static method on {{DOMQuad}} must run the following steps:
314314

315315
<ol class='algorithm'>
316316
<li>Let <var>x</var>, <var>y</var>, <var>width</var> and <var>height</var> be the value of <var>other</var>'s <a attribute for=DOMRectReadOnly>x</a>, <a attribute for=DOMRectReadOnly>y</a>, <a attribute for=DOMRectReadOnly>width</a> and <a attribute for=DOMRectReadOnly>height</a> attributes, respectively.
@@ -321,7 +321,7 @@ The <dfn dfn-for=DOMQuad><code>fromRect(<var>other</var>)</code></dfn> static me
321321
<li><p>Return a new <a interface>DOMQuad</a> with <a attribute for=DOMQuad>p1</a> set to <var>point 1</var>, <a attribute for=DOMQuad>p2</a> set to <var>point 2</var>, <a attribute for=DOMQuad>p3</a> set to <var>point 3</var> and <a attribute for=DOMQuad>p4</a> set to <var>point 4</var>, and let the <a>associated bounding rectangle</a> be <var>bounds</var>.
322322
</ol>
323323

324-
The <dfn dfn-for=DOMQuad><code>fromQuad(<var>other</var>)></code></dfn> static method on {{DOMQuad}} must run the following steps:
324+
The <dfn method lt=fromQuad() dfn-for=DOMQuad><code>fromQuad(<var>other</var>)></code></dfn> static method on {{DOMQuad}} must run the following steps:
325325

326326
1. Let <var>point 1</var> be the result of invoking {{DOMPoint/fromPoint()}} static method on {{DOMPoint}} with the {{DOMQuadInit/p1}} dictionary member of <var>other</var> as argument, if it exists.
327327
1. Let <var>point 2</var> be the result of invoking {{DOMPoint/fromPoint()}} static method on {{DOMPoint}} with the {{DOMQuadInit/p2}} dictionary member of <var>other</var> as argument, if it exists.
@@ -673,8 +673,8 @@ the <dfn dfn-type=constructor dfn-for=DOMMatrix><code>DOMMatrix(<var>numberSeque
673673
<dd>Throw a <code>TypeError</code> exception.</dd>
674674
</dl>
675675

676-
The <dfn dfn-for=DOMMatrixReadOnly id=dom-dommatrixreadonly-frommatrix><code>fromMatrix(<var>other</var>)</code></dfn> static method on {{DOMMatrixReadOnly}} and
677-
the <dfn dfn-for=DOMMatrix id=dom-dommatrix-frommatrix><code>fromMatrix(<var>other</var>)</code></dfn> static method on {{DOMMatrix}} must follow these steps:
676+
The <dfn method lt=fromMatrix() dfn-for=DOMMatrixReadOnly id=dom-dommatrixreadonly-frommatrix><code>fromMatrix(<var>other</var>)</code></dfn> static method on {{DOMMatrixReadOnly}} and
677+
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:
678678

679679
<ol>
680680
<li><a>Validate and fixup</a> <var>other</var>.</li>
@@ -689,8 +689,8 @@ the <dfn dfn-for=DOMMatrix id=dom-dommatrix-frommatrix><code>fromMatrix(<var>oth
689689
</li>
690690
</ol>
691691

692-
The <dfn dfn-for=DOMMatrixReadOnly id=dom-dommatrixreadonly-fromstring><code>fromString(<var>transformList</var>)</code></dfn> static method on {{DOMMatrixReadOnly}} and
693-
the <dfn dfn-for=DOMMatrix id=dom-dommatrix-fromstring><code>fromString(<var>transformList</var>)</code></dfn> static method on {{DOMMatrix}} must follow these steps:
692+
The <dfn method lt=fromString() dfn-for=DOMMatrixReadOnly id=dom-dommatrixreadonly-fromstring><code>fromString(<var>transformList</var>)</code></dfn> static method on {{DOMMatrixReadOnly}} and
693+
the <dfn method lt=fromString() dfn-for=DOMMatrix id=dom-dommatrix-fromstring><code>fromString(<var>transformList</var>)</code></dfn> static method on {{DOMMatrix}} must follow these steps:
694694

695695
<ol>
696696
<li>Parse <var>transformList</var> by following the syntax description in “<a href=http://www.w3.org/TR/css-transforms-1/#svg-syntax>Syntax of the SVG ‘transform’ attribute</a>[[!CSS3-TRANSFORMS]] to a <<transform-list>>. If parsing is not successful or any <<transform-function>> has <<length>> values without <a spec='css-values'>absolute length</a> units<!--For WD: <a spec='css-values-3'>absolute length units</a>-->, throw a {{SyntaxError}} exception.</li>
@@ -714,8 +714,8 @@ the <dfn dfn-for=DOMMatrix id=dom-dommatrix-fromstring><code>fromString(<var>tra
714714
</li>
715715
</ol>
716716

717-
The <dfn dfn-for=DOMMatrixReadOnly id=dom-dommatrixreadonly-fromfloat32array><code>fromFloat32Array(<var>array32</var>)</code></dfn> static method on {{DOMMatrixReadOnly}} and
718-
the <dfn dfn-for=DOMMatrix id=dom-dommatrix-fromfloat32array><code>fromFloat32Array(<var>array32</var>)</code></dfn> static method on {{DOMMatrix}} must follow these steps:
717+
The <dfn method lt=fromFloat32Array() dfn-for=DOMMatrixReadOnly id=dom-dommatrixreadonly-fromfloat32array><code>fromFloat32Array(<var>array32</var>)</code></dfn> static method on {{DOMMatrixReadOnly}} and
718+
the <dfn method lt=fromFloat32Array() dfn-for=DOMMatrix id=dom-dommatrix-fromfloat32array><code>fromFloat32Array(<var>array32</var>)</code></dfn> static method on {{DOMMatrix}} must follow these steps:
719719

720720
<dl class=switch>
721721
<dt>If <var>array32</var> has 6 elements</dt>
@@ -726,8 +726,8 @@ the <dfn dfn-for=DOMMatrix id=dom-dommatrix-fromfloat32array><code>fromFloat32Ar
726726
<dd>Throw a <code>TypeError</code> exception.</dd>
727727
</dl>
728728

729-
The <dfn dfn-for=DOMMatrixReadOnly id=dom-dommatrixreadonly-fromfloat64array><code>fromFloat64Array(<var>array64</var>)</code></dfn> static method on {{DOMMatrixReadOnly}} and
730-
the <dfn dfn-for=DOMMatrix id=dom-dommatrix-fromfloat64array><code>fromFloat64Array(<var>array64</var>)</code></dfn> static method on {{DOMMatrix}} must follow these steps:
729+
The <dfn method lt=fromFloat64Array() dfn-for=DOMMatrixReadOnly id=dom-dommatrixreadonly-fromfloat64array><code>fromFloat64Array(<var>array64</var>)</code></dfn> static method on {{DOMMatrixReadOnly}} and
730+
the <dfn method lt=fromFloat64Array() dfn-for=DOMMatrix id=dom-dommatrix-fromfloat64array><code>fromFloat64Array(<var>array64</var>)</code></dfn> static method on {{DOMMatrix}} must follow these steps:
731731

732732
<dl class=switch>
733733
<dt>If <var>array64</var> has 6 elements</dt>

0 commit comments

Comments
 (0)