| OLD | NEW | 
|---|
| 1 | 1 | 
| 2 class DOMTokenListJS implements DOMTokenList native "*DOMTokenList" { | 2 class DOMTokenListJs extends DOMTypeJs implements DOMTokenList native "*DOMToken
    List" { | 
| 3 | 3 | 
| 4   int get length() native "return this.length;"; | 4   int get length() native "return this.length;"; | 
| 5 | 5 | 
| 6   void add(String token) native; | 6   void add(String token) native; | 
| 7 | 7 | 
| 8   bool contains(String token) native; | 8   bool contains(String token) native; | 
| 9 | 9 | 
| 10   String item(int index) native; | 10   String item(int index) native; | 
| 11 | 11 | 
| 12   void remove(String token) native; | 12   void remove(String token) native; | 
| 13 | 13 | 
| 14   String toString() native; | 14   String toString() native; | 
| 15 | 15 | 
| 16   bool toggle(String token) native; | 16   bool toggle(String token) native; | 
| 17 |  | 
| 18   var dartObjectLocalStorage; |  | 
| 19 |  | 
| 20   String get typeName() native; |  | 
| 21 } | 17 } | 
| OLD | NEW | 
|---|