| OLD | NEW |
| 1 | 1 |
| 2 class SVGElementInstance native "SVGElementInstance" { | 2 class SVGElementInstance native "*SVGElementInstance" { |
| 3 | 3 |
| 4 SVGElementInstanceList childNodes; | 4 SVGElementInstanceList childNodes; |
| 5 | 5 |
| 6 SVGElement correspondingElement; | 6 SVGElement correspondingElement; |
| 7 | 7 |
| 8 SVGUseElement correspondingUseElement; | 8 SVGUseElement correspondingUseElement; |
| 9 | 9 |
| 10 SVGElementInstance firstChild; | 10 SVGElementInstance firstChild; |
| 11 | 11 |
| 12 SVGElementInstance lastChild; | 12 SVGElementInstance lastChild; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; | 100 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 101 | 101 |
| 102 bool dispatchEvent(Event event) native; | 102 bool dispatchEvent(Event event) native; |
| 103 | 103 |
| 104 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 104 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 105 | 105 |
| 106 var dartObjectLocalStorage; | 106 var dartObjectLocalStorage; |
| 107 | 107 |
| 108 String get typeName() native; | 108 String get typeName() native; |
| 109 } | 109 } |
| OLD | NEW |