@@ -68,9 +68,9 @@ export class CHTMLmunder extends CHTMLmsub {
6868 this . chtml = this . standardCHTMLnode ( parent ) ;
6969 const base = this . chtml . appendChild ( this . html ( 'mjx-row' ) ) . appendChild ( this . html ( 'mjx-base' ) ) ;
7070 const under = this . chtml . appendChild ( this . html ( 'mjx-row' ) ) . appendChild ( this . html ( 'mjx-under' ) ) ;
71- this . base . toCHTML ( base ) ;
71+ this . baseChild . toCHTML ( base ) ;
7272 this . script . toCHTML ( under ) ;
73- const basebox = this . base . getBBox ( ) ;
73+ const basebox = this . baseChild . getBBox ( ) ;
7474 const underbox = this . script . getBBox ( ) ;
7575 const [ k , v ] = this . getUnderKV ( basebox , underbox ) ;
7676 under . style . paddingTop = this . em ( k ) ;
@@ -86,7 +86,7 @@ export class CHTMLmunder extends CHTMLmsub {
8686 return ;
8787 }
8888 bbox . empty ( ) ;
89- const basebox = this . base . getBBox ( ) ;
89+ const basebox = this . baseChild . getBBox ( ) ;
9090 const underbox = this . script . getBBox ( ) ;
9191 const [ k , v ] = this . getUnderKV ( basebox , underbox ) ;
9292 const [ bw , uw ] = this . getDeltaW ( [ basebox , underbox ] ) ;
@@ -136,9 +136,9 @@ export class CHTMLmover extends CHTMLmsup {
136136 const over = this . chtml . appendChild ( this . html ( 'mjx-over' ) ) ;
137137 const base = this . chtml . appendChild ( this . html ( 'mjx-base' ) ) ;
138138 this . script . toCHTML ( over ) ;
139- this . base . toCHTML ( base ) ;
139+ this . baseChild . toCHTML ( base ) ;
140140 const overbox = this . script . getBBox ( ) ;
141- const basebox = this . base . getBBox ( ) ;
141+ const basebox = this . baseChild . getBBox ( ) ;
142142 const [ k , u ] = this . getOverKU ( basebox , overbox ) ;
143143 over . style . paddingBottom = this . em ( k ) ;
144144 this . setDeltaW ( [ base , over ] , this . getDeltaW ( [ basebox , overbox ] ) ) ;
@@ -156,7 +156,7 @@ export class CHTMLmover extends CHTMLmsup {
156156 return ;
157157 }
158158 bbox . empty ( ) ;
159- const basebox = this . base . getBBox ( ) ;
159+ const basebox = this . baseChild . getBBox ( ) ;
160160 const overbox = this . script . getBBox ( ) ;
161161 const [ k , u ] = this . getOverKU ( basebox , overbox ) ;
162162 const [ bw , ow ] = this . getDeltaW ( [ basebox , overbox ] ) ;
@@ -188,14 +188,14 @@ export class CHTMLmunderover extends CHTMLmsubsup {
188188 /*
189189 * @return {CHTMLWrapper) The wrapped under node
190190 */
191- public get under ( ) {
191+ public get underChild ( ) {
192192 return this . childNodes [ ( this . node as MmlMunderover ) . under ] ;
193193 }
194194
195195 /*
196196 * @return {CHTMLWrapper) The wrapped overder node
197197 */
198- public get over ( ) {
198+ public get overChild ( ) {
199199 return this . childNodes [ ( this . node as MmlMunderover ) . over ] ;
200200 }
201201
@@ -204,17 +204,17 @@ export class CHTMLmunderover extends CHTMLmsubsup {
204204 *
205205 * @override
206206 */
207- public get sub ( ) {
208- return this . under ;
207+ public get subChild ( ) {
208+ return this . underChild ;
209209 }
210210
211211 /*
212212 * Needed for movablelimits
213213 *
214214 * @override
215215 */
216- public get sup ( ) {
217- return this . over ;
216+ public get supChild ( ) {
217+ return this . overChild ;
218218 }
219219
220220 /*
@@ -231,12 +231,12 @@ export class CHTMLmunderover extends CHTMLmsubsup {
231231 const table = this . chtml . appendChild ( this . html ( 'mjx-box' ) ) . appendChild ( this . html ( 'mjx-munder' ) ) ;
232232 const base = table . appendChild ( this . html ( 'mjx-row' ) ) . appendChild ( this . html ( 'mjx-base' ) ) ;
233233 const under = table . appendChild ( this . html ( 'mjx-row' ) ) . appendChild ( this . html ( 'mjx-under' ) ) ;
234- this . over . toCHTML ( over ) ;
235- this . base . toCHTML ( base ) ;
236- this . under . toCHTML ( under ) ;
237- const overbox = this . over . getBBox ( ) ;
238- const basebox = this . base . getBBox ( ) ;
239- const underbox = this . under . getBBox ( ) ;
234+ this . overChild . toCHTML ( over ) ;
235+ this . baseChild . toCHTML ( base ) ;
236+ this . underChild . toCHTML ( under ) ;
237+ const overbox = this . overChild . getBBox ( ) ;
238+ const basebox = this . baseChild . getBBox ( ) ;
239+ const underbox = this . underChild . getBBox ( ) ;
240240 const [ ok , u ] = this . getOverKU ( basebox , overbox ) ;
241241 const [ uk , v ] = this . getUnderKV ( basebox , underbox ) ;
242242 over . style . paddingBottom = this . em ( ok ) ;
@@ -256,9 +256,9 @@ export class CHTMLmunderover extends CHTMLmsubsup {
256256 return ;
257257 }
258258 bbox . empty ( ) ;
259- const overbox = this . over . getBBox ( ) ;
260- const basebox = this . base . getBBox ( ) ;
261- const underbox = this . under . getBBox ( ) ;
259+ const overbox = this . overChild . getBBox ( ) ;
260+ const basebox = this . baseChild . getBBox ( ) ;
261+ const underbox = this . underChild . getBBox ( ) ;
262262 const [ ok , u ] = this . getOverKU ( basebox , overbox ) ;
263263 const [ uk , v ] = this . getUnderKV ( basebox , underbox ) ;
264264 const [ bw , uw , ow ] = this . getDeltaW ( [ basebox , underbox , overbox ] ) ;
0 commit comments