| OLD | NEW |
| 1 | 1 |
| 2 class SVGElementJs extends ElementJs implements SVGElement native "*SVGElement"
{ | 2 class _SVGElementJs extends _ElementJs implements SVGElement native "*SVGElement
" { |
| 3 | 3 |
| 4 String get id() native "return this.id;"; | 4 String get id() native "return this.id;"; |
| 5 | 5 |
| 6 void set id(String value) native "this.id = value;"; | 6 void set id(String value) native "this.id = value;"; |
| 7 | 7 |
| 8 SVGSVGElementJs get ownerSVGElement() native "return this.ownerSVGElement;"; | 8 _SVGSVGElementJs get ownerSVGElement() native "return this.ownerSVGElement;"; |
| 9 | 9 |
| 10 SVGElementJs get viewportElement() native "return this.viewportElement;"; | 10 _SVGElementJs get viewportElement() native "return this.viewportElement;"; |
| 11 | 11 |
| 12 String get xmlbase() native "return this.xmlbase;"; | 12 String get xmlbase() native "return this.xmlbase;"; |
| 13 | 13 |
| 14 void set xmlbase(String value) native "this.xmlbase = value;"; | 14 void set xmlbase(String value) native "this.xmlbase = value;"; |
| 15 } | 15 } |
| OLD | NEW |