| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: | |
| 6 // This file contains documentation that is merged into the real source. | |
| 7 // Do not make code changes here. | |
| 8 | |
| 9 /// @domName HTMLAppletElement | |
| 10 interface AppletElement extends Element { | |
| 11 | |
| 12 /** @domName HTMLAppletElement.align */ | |
| 13 String align; | |
| 14 | |
| 15 /** @domName HTMLAppletElement.alt */ | |
| 16 String alt; | |
| 17 | |
| 18 /** @domName HTMLAppletElement.archive */ | |
| 19 String archive; | |
| 20 | |
| 21 /** @domName HTMLAppletElement.code */ | |
| 22 String code; | |
| 23 | |
| 24 /** @domName HTMLAppletElement.codeBase */ | |
| 25 String codeBase; | |
| 26 | |
| 27 /** @domName HTMLAppletElement.height */ | |
| 28 String height; | |
| 29 | |
| 30 /** @domName HTMLAppletElement.hspace */ | |
| 31 String hspace; | |
| 32 | |
| 33 /** @domName HTMLAppletElement.name */ | |
| 34 String name; | |
| 35 | |
| 36 /** @domName HTMLAppletElement.object */ | |
| 37 String object; | |
| 38 | |
| 39 /** @domName HTMLAppletElement.vspace */ | |
| 40 String vspace; | |
| 41 | |
| 42 /** @domName HTMLAppletElement.width */ | |
| 43 String width; | |
| 44 } | |
| OLD | NEW |