File tree 3 files changed +23
-0
lines changed
3 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -20555,6 +20555,23 @@ class MapElement extends HtmlElement {
20555
20555
// for details. All rights reserved. Use of this source code is governed by a
20556
20556
// BSD-style license that can be found in the LICENSE file.
20557
20557
20558
+ @Native("MathMLElement")
20559
+ class MathMLElement extends Element {
20560
+ // To suppress missing implicit constructor warnings.
20561
+ factory MathMLElement._() {
20562
+ throw new UnsupportedError("Not supported");
20563
+ }
20564
+ /**
20565
+ * Constructor instantiated by the DOM when a custom element has been created.
20566
+ *
20567
+ * This can only be called by subclasses from their created constructor.
20568
+ */
20569
+ MathMLElement.created() : super.created();
20570
+ }
20571
+ // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
20572
+ // for details. All rights reserved. Use of this source code is governed by a
20573
+ // BSD-style license that can be found in the LICENSE file.
20574
+
20558
20575
@Native("MediaCapabilities")
20559
20576
class MediaCapabilities extends JavaScriptObject {
20560
20577
// To suppress missing implicit constructor warnings.
Original file line number Diff line number Diff line change 12423
12423
},
12424
12424
"support_level": "untriaged"
12425
12425
},
12426
+ "MathMLElement": {
12427
+ "members": {},
12428
+ "support_level": "untriaged"
12429
+ },
12426
12430
"Matrix": {
12427
12431
"members": {
12428
12432
"Matrix": {},
Original file line number Diff line number Diff line change @@ -681,3 +681,5 @@ interface NoncedElement {
681
681
// PositionCallback can be used on a deprecated Position object,
682
682
// a GeolocationPosition object, or a Firefox-specific object.
683
683
callback PositionCallback = void(object position);
684
+
685
+ interface MathMLElement : Element {};
You can’t perform that action at this time.
0 commit comments