@@ -85,9 +85,9 @@ export class CHTMLmunder extends CHTMLmsub {
8585 this . chtml = this . standardCHTMLnode ( parent ) ;
8686 const base = this . chtml . appendChild ( this . html ( 'mjx-row' ) ) . appendChild ( this . html ( 'mjx-base' ) ) ;
8787 const under = this . chtml . appendChild ( this . html ( 'mjx-row' ) ) . appendChild ( this . html ( 'mjx-under' ) ) ;
88- this . base . toCHTML ( base ) ;
88+ this . baseChild . toCHTML ( base ) ;
8989 this . script . toCHTML ( under ) ;
90- const basebox = this . base . getBBox ( ) ;
90+ const basebox = this . baseChild . getBBox ( ) ;
9191 const underbox = this . script . getBBox ( ) ;
9292 const [ k , v ] = this . getUnderKV ( basebox , underbox ) ;
9393 const delta = DELTA * this . baseCore . bbox . ic / 2 ;
@@ -104,7 +104,7 @@ export class CHTMLmunder extends CHTMLmsub {
104104 return ;
105105 }
106106 bbox . empty ( ) ;
107- const basebox = this . base . getBBox ( ) ;
107+ const basebox = this . baseChild . getBBox ( ) ;
108108 const underbox = this . script . getBBox ( ) ;
109109 const [ k , v ] = this . getUnderKV ( basebox , underbox ) ;
110110 const delta = DELTA * this . baseCore . bbox . ic / 2 ;
@@ -166,9 +166,9 @@ export class CHTMLmover extends CHTMLmsup {
166166 const over = this . chtml . appendChild ( this . html ( 'mjx-over' ) ) ;
167167 const base = this . chtml . appendChild ( this . html ( 'mjx-base' ) ) ;
168168 this . script . toCHTML ( over ) ;
169- this . base . toCHTML ( base ) ;
169+ this . baseChild . toCHTML ( base ) ;
170170 const overbox = this . script . getBBox ( ) ;
171- const basebox = this . base . getBBox ( ) ;
171+ const basebox = this . baseChild . getBBox ( ) ;
172172 const [ k , u ] = this . getOverKU ( basebox , overbox ) ;
173173 const delta = DELTA * this . baseCore . bbox . ic / 2 ;
174174 over . style . paddingBottom = this . em ( k ) ;
@@ -187,7 +187,7 @@ export class CHTMLmover extends CHTMLmsup {
187187 return ;
188188 }
189189 bbox . empty ( ) ;
190- const basebox = this . base . getBBox ( ) ;
190+ const basebox = this . baseChild . getBBox ( ) ;
191191 const overbox = this . script . getBBox ( ) ;
192192 const [ k , u ] = this . getOverKU ( basebox , overbox ) ;
193193 const delta = DELTA * this . baseCore . bbox . ic / 2 ;
@@ -222,14 +222,14 @@ export class CHTMLmunderover extends CHTMLmsubsup {
222222 /*
223223 * @return {CHTMLWrapper) The wrapped under node
224224 */
225- public get under ( ) {
225+ public get underChild ( ) {
226226 return this . childNodes [ ( this . node as MmlMunderover ) . under ] ;
227227 }
228228
229229 /*
230230 * @return {CHTMLWrapper) The wrapped overder node
231231 */
232- public get over ( ) {
232+ public get overChild ( ) {
233233 return this . childNodes [ ( this . node as MmlMunderover ) . over ] ;
234234 }
235235
@@ -238,17 +238,17 @@ export class CHTMLmunderover extends CHTMLmsubsup {
238238 *
239239 * @override
240240 */
241- public get sub ( ) {
242- return this . under ;
241+ public get subChild ( ) {
242+ return this . underChild ;
243243 }
244244
245245 /*
246246 * Needed for movablelimits
247247 *
248248 * @override
249249 */
250- public get sup ( ) {
251- return this . over ;
250+ public get supChild ( ) {
251+ return this . overChild ;
252252 }
253253
254254 /*
@@ -274,12 +274,12 @@ export class CHTMLmunderover extends CHTMLmsubsup {
274274 const table = this . chtml . appendChild ( this . html ( 'mjx-box' ) ) . appendChild ( this . html ( 'mjx-munder' ) ) ;
275275 const base = table . appendChild ( this . html ( 'mjx-row' ) ) . appendChild ( this . html ( 'mjx-base' ) ) ;
276276 const under = table . appendChild ( this . html ( 'mjx-row' ) ) . appendChild ( this . html ( 'mjx-under' ) ) ;
277- this . over . toCHTML ( over ) ;
278- this . base . toCHTML ( base ) ;
279- this . under . toCHTML ( under ) ;
280- const overbox = this . over . getBBox ( ) ;
281- const basebox = this . base . getBBox ( ) ;
282- const underbox = this . under . getBBox ( ) ;
277+ this . overChild . toCHTML ( over ) ;
278+ this . baseChild . toCHTML ( base ) ;
279+ this . underChild . toCHTML ( under ) ;
280+ const overbox = this . overChild . getBBox ( ) ;
281+ const basebox = this . baseChild . getBBox ( ) ;
282+ const underbox = this . underChild . getBBox ( ) ;
283283 const [ ok , u ] = this . getOverKU ( basebox , overbox ) ;
284284 const [ uk , v ] = this . getUnderKV ( basebox , underbox ) ;
285285 const delta = DELTA * this . baseCore . bbox . ic / 2 ;
@@ -300,9 +300,9 @@ export class CHTMLmunderover extends CHTMLmsubsup {
300300 return ;
301301 }
302302 bbox . empty ( ) ;
303- const overbox = this . over . getBBox ( ) ;
304- const basebox = this . base . getBBox ( ) ;
305- const underbox = this . under . getBBox ( ) ;
303+ const overbox = this . overChild . getBBox ( ) ;
304+ const basebox = this . baseChild . getBBox ( ) ;
305+ const underbox = this . underChild . getBBox ( ) ;
306306 const [ ok , u ] = this . getOverKU ( basebox , overbox ) ;
307307 const [ uk , v ] = this . getUnderKV ( basebox , underbox ) ;
308308 const delta = DELTA * this . baseCore . bbox . ic / 2 ;
0 commit comments