| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 void setCustomValidity(DOMString error); | 46 void setCustomValidity(DOMString error); |
| 47 | 47 |
| 48 // TODO(foolip): legacycaller any (any... arguments); crbug.com/465009 | 48 // TODO(foolip): legacycaller any (any... arguments); crbug.com/465009 |
| 49 | 49 |
| 50 // obsolete members | 50 // obsolete members |
| 51 // https://html.spec.whatwg.org/#HTMLObjectElement-partial | 51 // https://html.spec.whatwg.org/#HTMLObjectElement-partial |
| 52 [CEReactions, Reflect] attribute DOMString align; | 52 [CEReactions, Reflect] attribute DOMString align; |
| 53 [CEReactions, Reflect] attribute DOMString archive; | 53 [CEReactions, Reflect] attribute DOMString archive; |
| 54 [CEReactions, Reflect] attribute DOMString code; | 54 [CEReactions, Reflect] attribute DOMString code; |
| 55 [CEReactions, Reflect] attribute boolean declare; | 55 [CEReactions, Reflect] attribute boolean declare; |
| 56 // TODO(foolip): hspace and vspace should be unsigned long. | 56 [CEReactions, Reflect] attribute unsigned long hspace; |
| 57 [CEReactions, Reflect] attribute long hspace; | |
| 58 [CEReactions, Reflect] attribute DOMString standby; | 57 [CEReactions, Reflect] attribute DOMString standby; |
| 59 [CEReactions, Reflect] attribute long vspace; | 58 [CEReactions, Reflect] attribute unsigned long vspace; |
| 60 [CEReactions, Reflect, URL] attribute DOMString codeBase; | 59 [CEReactions, Reflect, URL] attribute DOMString codeBase; |
| 61 [CEReactions, Reflect] attribute DOMString codeType; | 60 [CEReactions, Reflect] attribute DOMString codeType; |
| 62 | 61 |
| 63 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString border; | 62 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString border; |
| 64 | 63 |
| 65 // TODO(foolip): These getters and setters are not in the spec. | 64 // TODO(foolip): These getters and setters are not in the spec. |
| 66 [Custom, NotEnumerable] getter Node (DOMString name); | 65 [Custom, NotEnumerable] getter Node (DOMString name); |
| 67 [Custom] setter Node (DOMString name, Node value); | 66 [Custom] setter Node (DOMString name, Node value); |
| 68 }; | 67 }; |
| OLD | NEW |