Skip to content

Commit 014bc82

Browse files
committed
simplify
1 parent a695af5 commit 014bc82

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

dom/src/main/scala/org/scalajs/dom/MathMLElement.scala

+3-14
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,11 @@ abstract class MathMLElement extends Element {
1717
var onfocusin: js.Function1[FocusEvent, _] = js.native
1818
var onfocusout: js.Function1[FocusEvent, _] = js.native
1919

20-
/** Corresponds to attribute xml:base on the given element. */
21-
var xmlbase: String = js.native
22-
2320
var autofocus: Boolean = js.native
24-
var `class`: String = js.native
25-
var dir: String = js.native
26-
var displaystyle: Boolean = js.native
27-
var mathbackground: String = js.native
28-
var mathcolor: String = js.native
29-
var mathsize: String = js.native
21+
var className: String = js.native
3022
var nonce: String = js.native
3123
var scriptlevel: Int = js.native
32-
var style: String = js.native
33-
var tabindex: Int = js.native
34-
35-
var intent: String = js.native
36-
var arg: String = js.native
24+
var style: CSSStyleDeclaration = js.native
25+
var tabIndex: Int = js.native
3726

3827
}

0 commit comments

Comments
 (0)