Skip to content

Commit 32cb78c

Browse files
zcorpansvgeesus
authored andcommitted
 merge
1 parent 403cc65 commit 32cb78c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

geometry/Overview.bs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ At Risk: The <a interface>DOMRectList</a> interface is at-risk. The authors of t
2121
Use <i> Autolinks: yes
2222
</pre>
2323

24-
<pre class=link-defaults>
25-
spec:html5; type:dfn; text:syntaxerror
24+
<pre class=anchors>
25+
type: exception; text: SyntaxError; url: https://html.spec.whatwg.org/multipage/infrastructure.html#js-syntaxerror
2626
</pre>
2727

2828
<script src=https://resources.whatwg.org/file-bug.js async></script>
@@ -111,7 +111,7 @@ the <dfn dfn-for=DOMPoint id=dom-dompoint-frompoint><code>fromPoint(<var>other</
111111
<li>Return <var>point</var>.</li>
112112
</ol>
113113

114-
<div dfn-type=attribute dfn-for='DOMPointReadOnly DOMPoint'>
114+
<div dfn-type=attribute dfn-for='DOMPointReadOnly, DOMPoint'>
115115
The <dfn>x</dfn> attribute, on getting, must return the <a for=point>x coordinate</a> value of the object it was invoked on. For the <a interface>DOMPoint</a> interface, setting the <a attribute for=DOMPoint>x</a> attribute must set the <a for=point>x coordinate</a> value of the object it was invoked on to the new value.
116116

117117
The <dfn>y</dfn> attribute, on getting, must return the <a for=point>y coordinate</a> value of the object it was invoked on. For the <a interface>DOMPoint</a> interface, setting the <a attribute for=DOMPoint>y</a> attribute must set the <a for=point>y coordinate</a> value of the object it was invoked on to the new value.
@@ -679,7 +679,7 @@ The <dfn dfn-for=DOMMatrix id=dom-dommatrix-frommatrix><code>fromMatrix(<var>oth
679679
The <dfn dfn-for=DOMMatrix><code>fromString(<var>transformList</var>)</code></dfn> static method on {{DOMMatrix}} must follow these steps:
680680

681681
<ol>
682-
<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 <a>SyntaxError</a> exception.</li>
682+
<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>
683683
<li>Let <var>2dTransform</var> track the 2D/3D dimension status of the <<transform-list>>.
684684
<dl class=switch>
685685
<dt>If the <<transform-list>> consists of any <a href='http://www.w3.org/TR/css-transforms-1/#three-d-transform-functions'>3D Transform functions</a></dt>
@@ -736,7 +736,7 @@ The <dfn dfn-for=DOMMatrix><code>fromFloat64Array(<var>array64</var>)</code></df
736736

737737
The following attributes <a attribute>m11</a> to <a attribute>m44</a> correspond to the 16 items of the matrix interfaces. For the <a interface>DOMMatrix</a> interface, if the attributes <a attribute>m31</a>, <a attribute>m32</a>, <a attribute>m13</a>, <a attribute>m23</a>, <a attribute>m43</a>, <a attribute>m14</a>, <a attribute>m24</a>, <a attribute>m34</a> are set to something else than ''0'' or <a attribute>m33</a>, <a attribute>m44</a> are set to something else than ''1'' set <a>is2D</a> to <code>false</code>.
738738

739-
<div dfn-type=attribute dfn-for='DOMMatrixReadOnly DOMMatrix'>
739+
<div dfn-type=attribute dfn-for='DOMMatrixReadOnly, DOMMatrix'>
740740
The <dfn>m11</dfn> attribute, on getting, must return the <a>m11 element</a> value of the object it was invoked on. For the <a interface>DOMMatrix</a> interface, setting the <a attribute>m11</a> attribute must set the <a>m11 element</a> value of the object it was invoked on to the new value.
741741

742742
The <dfn>m12</dfn> attribute, on getting, must return the <a>m12 element</a> value of the object it was invoked on. For the <a interface>DOMMatrix</a> interface, setting the <a attribute>m12</a> attribute must set the <a>m12 element</a> value of the object it was invoked on to the new value.
@@ -772,7 +772,7 @@ The following attributes <a attribute>m11</a> to <a attribute>m44</a> correspond
772772
</div>
773773

774774

775-
<div dfn-type=attribute dfn-for='DOMMatrixReadOnly DOMMatrix'>
775+
<div dfn-type=attribute dfn-for='DOMMatrixReadOnly, DOMMatrix'>
776776
The following attributes <a attribute>a</a> to <a attribute>f</a> correspond to the 2D components of the matrix interfaces.
777777

778778
The <dfn>a</dfn> attribute is an alias to the <a attribute>m11</a> attribute.
@@ -1105,7 +1105,7 @@ Note: Authors who use chained method calls are recommended to use mutable transf
11051105
<dt><dfn>setMatrixValue(<var>transformList</var>)</dfn></dt>
11061106
<dd>
11071107
<ol>
1108-
<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 <a>SyntaxError</a> exception.</li>
1108+
<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>
11091109
<li>Set <a>is2D</a> to <code>false</code> if the <<transform-list>> consists of any <a href='http://www.w3.org/TR/css-transforms-1/#three-d-transform-functions'>3D Transform functions</a>. Otherwise set <a>is2D</a> to <code>true</code>.</li>
11101110
<li>Transform all <<transform-function>>s to 4x4 matrices by following the “<a href=http://www.w3.org/TR/css-transforms-1/#mathematical-description>Mathematical Description of Transform Functions</a>[[!CSS3-TRANSFORMS]].</li>
11111111
<li>Post-multiply all matrices from left to right to a combined 4x4 matrix.</li>

0 commit comments

Comments
 (0)