Skip to content

Commit bb0a422

Browse files
LanWei22AutomatedTester
authored andcommitted
Update index.html
1 parent ccb5b3b commit bb0a422

File tree

1 file changed

+207
-2
lines changed

1 file changed

+207
-2
lines changed

index.html

Lines changed: 207 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7814,17 +7814,114 @@ <h3>Processing actions</h3>
78147814
<li><p>Set the <code>button</code> property of <var>action</var>
78157815
to <var>button</var>.
78167816

7817-
<li><p>Let <var>width</var> be the result
7817+
<li><p>Let <var>width</var> be the result
78187818
of getting the property <code>width</code>
78197819
from <var>action item</var>.
78207820

7821-
<li><p>If <var>width</var> is not a <a>Number</a> greater than or
7821+
<li><p>If <var>width</var> is not <a>undefined</a>
7822+
and <var>width</var> is not a <a>Number</a> greater than or
78227823
equal to 0 return <a>error</a> with <a>error code</a>
78237824
<a>invalid argument</a>.
78247825

78257826
<li><p>Set the <code>width</code> property of <var>action</var>
78267827
to <var>width</var>.
78277828

7829+
<li><p>Let <var>height</var> be the result
7830+
of getting the property <code>height</code>
7831+
from <var>action item</var>.
7832+
7833+
<li><p>If <var>height</var> is not <a>undefined</a>
7834+
and <var>height</var> is not a <a>Number</a> greater than or
7835+
equal to 0 return <a>error</a> with <a>error code</a>
7836+
<a>invalid argument</a>.
7837+
7838+
<li><p>Set the <code>height</code> property of <var>action</var>
7839+
to <var>height</var>.
7840+
7841+
<li><p>Let <var>pressure</var> be the result
7842+
of getting the property <code>pressure</code>
7843+
from <var>action item</var>.
7844+
7845+
<li><p>If <var>pressure</var> is not <a>undefined</a>
7846+
and <var>pressure</var> is not a <a>Number</a> greater than or
7847+
equal to 0 and less than or equal to 1 return <a>error</a> with
7848+
<a>error code</a> <a>invalid argument</a>.
7849+
7850+
<li><p>Set the <code>pressure</code> property of <var>action</var>
7851+
to <var>pressure</var>.
7852+
7853+
<li><p>Let <var>tangentialPressure</var> be the result
7854+
of getting the property <code>tangentialPressure</code>
7855+
from <var>action item</var>.
7856+
7857+
<li><p>If <var>tangentialPressure</var> is not <a>undefined</a>
7858+
and <var>tangentialPressure</var> is not a <a>Number</a> greater
7859+
than or equal to -1 and less than or equal to 1 return <a>error</a>
7860+
with <a>error code</a> <a>invalid argument</a>.
7861+
7862+
<li><p>Set the <code>tangentialPressure</code> property of <var>action</var>
7863+
to <var>tangentialPressure</var>.
7864+
7865+
<li><p>Let <var>tiltX</var> be the result
7866+
of getting the property <code>tiltX</code>
7867+
from <var>action item</var>.
7868+
7869+
<li><p>If <var>tiltX</var> is not <a>undefined</a>
7870+
and <var>tiltX</var> is not an <a>Integer</a> greater than or
7871+
equal to -90 and less than or equal to 90 return <a>error</a> with
7872+
<a>error code</a> <a>invalid argument</a>.
7873+
7874+
<li><p>Set the <code>tiltX</code> property of <var>action</var>
7875+
to <var>tiltX</var>.
7876+
7877+
<li><p>Let <var>tiltY</var> be the result
7878+
of getting the property <code>tiltY</code>
7879+
from <var>action item</var>.
7880+
7881+
<li><p>If <var>tiltY</var> is not <a>undefined</a>
7882+
and <var>tiltY</var> is not an <a>Integer</a> greater than or
7883+
equal to -90 and less than or equal to 90 return <a>error</a> with
7884+
<a>error code</a> <a>invalid argument</a>.
7885+
7886+
<li><p>Set the <code>tiltY</code> property of <var>action</var>
7887+
to <var>tiltY</var>.
7888+
7889+
<li><p>Let <var>twist</var> be the result
7890+
of getting the property <code>twist</code>
7891+
from <var>action item</var>.
7892+
7893+
<li><p>If <var>twist</var> is not <a>undefined</a>
7894+
and <var>twist</var> is not an <a>Integer</a> greater than or
7895+
equal to 0 and less than or equal to 359 return <a>error</a> with
7896+
<a>error code</a> <a>invalid argument</a>.
7897+
7898+
<li><p>Set the <code>twist</code> property of <var>action</var>
7899+
to <var>twist</var>.
7900+
7901+
<li><p>Let <var>altitudeAngle</var> be the result
7902+
of getting the property <code>altitudeAngle</code>
7903+
from <var>action item</var>.
7904+
7905+
<li><p>If <var>altitudeAngle</var> is not <a>undefined</a>
7906+
and <var>altitudeAngle</var> is not a <a>Number</a> greater than
7907+
or equal to 0 and less than or equal to π/2 return <a>error</a> with
7908+
<a>error code</a> <a>invalid argument</a>.
7909+
7910+
<li><p>Set the <code>altitudeAngle</code> property of <var>action</var>
7911+
to <var>altitudeAngle</var>.
7912+
7913+
<li><p>Let <var>azimuthAngle</var> be the result
7914+
of getting the property <code>azimuthAngle</code>
7915+
from <var>action item</var>.
7916+
7917+
<li><p>If <var>azimuthAngle</var> is not <a>undefined</a>
7918+
and <var>azimuthAngle</var> is not a <a>Number</a> greater than
7919+
or equal to 0 and less than or equal to 2π return <a>error</a> with
7920+
<a>error code</a> <a>invalid argument</a>.
7921+
7922+
<li><p>Set the <code>azimuthAngle</code> property of <var>action</var>
7923+
to <var>azimuthAngle</var>.
7924+
78287925
<li><p>Return success with data <a><code>null</code></a>.
78297926
</ol>
78307927

@@ -7880,6 +7977,114 @@ <h3>Processing actions</h3>
78807977
<li><p>Set the <code>y</code> property of <var>action</var>
78817978
to <var>y</var>.
78827979

7980+
<li><p>Let <var>width</var> be the result
7981+
of getting the property <code>width</code>
7982+
from <var>action item</var>.
7983+
7984+
<li><p>If <var>width</var> is not <a>undefined</a>
7985+
and <var>width</var> is not a <a>Number</a> greater than or
7986+
equal to 0 return <a>error</a> with <a>error code</a>
7987+
<a>invalid argument</a>.
7988+
7989+
<li><p>Set the <code>width</code> property of <var>action</var>
7990+
to <var>width</var>.
7991+
7992+
<li><p>Let <var>height</var> be the result
7993+
of getting the property <code>height</code>
7994+
from <var>action item</var>.
7995+
7996+
<li><p>If <var>height</var> is not <a>undefined</a>
7997+
and <var>height</var> is not a <a>Number</a> greater than or
7998+
equal to 0 return <a>error</a> with <a>error code</a>
7999+
<a>invalid argument</a>.
8000+
8001+
<li><p>Set the <code>height</code> property of <var>action</var>
8002+
to <var>height</var>.
8003+
8004+
<li><p>Let <var>pressure</var> be the result
8005+
of getting the property <code>pressure</code>
8006+
from <var>action item</var>.
8007+
8008+
<li><p>If <var>pressure</var> is not <a>undefined</a>
8009+
and <var>pressure</var> is not a <a>Number</a> greater than or
8010+
equal to 0 and less than or equal to 1 return <a>error</a> with
8011+
<a>error code</a> <a>invalid argument</a>.
8012+
8013+
<li><p>Set the <code>pressure</code> property of <var>action</var>
8014+
to <var>pressure</var>.
8015+
8016+
<li><p>Let <var>tangentialPressure</var> be the result
8017+
of getting the property <code>tangentialPressure</code>
8018+
from <var>action item</var>.
8019+
8020+
<li><p>If <var>tangentialPressure</var> is not <a>undefined</a>
8021+
and <var>tangentialPressure</var> is not a <a>Number</a> greater
8022+
than or equal to -1 and less than or equal to 1 return <a>error</a>
8023+
with <a>error code</a> <a>invalid argument</a>.
8024+
8025+
<li><p>Set the <code>tangentialPressure</code> property of <var>action</var>
8026+
to <var>tangentialPressure</var>.
8027+
8028+
<li><p>Let <var>tiltX</var> be the result
8029+
of getting the property <code>tiltX</code>
8030+
from <var>action item</var>.
8031+
8032+
<li><p>If <var>tiltX</var> is not <a>undefined</a>
8033+
and <var>tiltX</var> is not an <a>Integer</a> greater than or
8034+
equal to -90 and less than or equal to 90 return <a>error</a> with
8035+
<a>error code</a> <a>invalid argument</a>.
8036+
8037+
<li><p>Set the <code>tiltX</code> property of <var>action</var>
8038+
to <var>tiltX</var>.
8039+
8040+
<li><p>Let <var>tiltY</var> be the result
8041+
of getting the property <code>tiltY</code>
8042+
from <var>action item</var>.
8043+
8044+
<li><p>If <var>tiltY</var> is not <a>undefined</a>
8045+
and <var>tiltY</var> is not an <a>Integer</a> greater than or
8046+
equal to -90 and less than or equal to 90 return <a>error</a> with
8047+
<a>error code</a> <a>invalid argument</a>.
8048+
8049+
<li><p>Set the <code>tiltY</code> property of <var>action</var>
8050+
to <var>tiltY</var>.
8051+
8052+
<li><p>Let <var>twist</var> be the result
8053+
of getting the property <code>twist</code>
8054+
from <var>action item</var>.
8055+
8056+
<li><p>If <var>twist</var> is not <a>undefined</a>
8057+
and <var>twist</var> is not an <a>Integer</a> greater than or
8058+
equal to 0 and less than or equal to 359 return <a>error</a> with
8059+
<a>error code</a> <a>invalid argument</a>.
8060+
8061+
<li><p>Set the <code>twist</code> property of <var>action</var>
8062+
to <var>twist</var>.
8063+
8064+
<li><p>Let <var>altitudeAngle</var> be the result
8065+
of getting the property <code>altitudeAngle</code>
8066+
from <var>action item</var>.
8067+
8068+
<li><p>If <var>altitudeAngle</var> is not <a>undefined</a>
8069+
and <var>altitudeAngle</var> is not a <a>Number</a> greater than
8070+
or equal to 0 and less than or equal to π/2 return <a>error</a> with
8071+
<a>error code</a> <a>invalid argument</a>.
8072+
8073+
<li><p>Set the <code>altitudeAngle</code> property of <var>action</var>
8074+
to <var>altitudeAngle</var>.
8075+
8076+
<li><p>Let <var>azimuthAngle</var> be the result
8077+
of getting the property <code>azimuthAngle</code>
8078+
from <var>action item</var>.
8079+
8080+
<li><p>If <var>azimuthAngle</var> is not <a>undefined</a>
8081+
and <var>azimuthAngle</var> is not a <a>Number</a> greater than
8082+
or equal to 0 and less than or equal to 2π return <a>error</a> with
8083+
<a>error code</a> <a>invalid argument</a>.
8084+
8085+
<li><p>Set the <code>azimuthAngle</code> property of <var>action</var>
8086+
to <var>azimuthAngle</var>.
8087+
78838088
<li><p>Return success with data <a><code>null</code></a>.
78848089
</ol>
78858090
</section> <!-- /processing-actions -->

0 commit comments

Comments
 (0)