Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(621)

Side by Side Diff: core/html/HTMLObjectElement.idl

Issue 9889044: IDL roll to multivm 1266 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 10 years, 10 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 [ 21 [
22 CustomNamedGetter, 22 CustomNamedGetter,
23 CustomNamedSetter, 23 CustomNamedSetter,
24 CustomIndexedGetter, 24 CustomIndexedGetter,
25 CustomIndexedSetter, 25 CustomIndexedSetter,
26 CustomCall 26 CustomLegacyCall
27 ] interface HTMLObjectElement : HTMLElement { 27 ] interface HTMLObjectElement : HTMLElement {
28 readonly attribute HTMLFormElement form; 28 readonly attribute HTMLFormElement form;
29 [Reflect] attribute DOMString code; 29 [Reflect] attribute DOMString code;
30 [Reflect] attribute DOMString align; 30 [Reflect] attribute DOMString align;
31 [Reflect] attribute DOMString archive; 31 [Reflect] attribute DOMString archive;
32 [Reflect] attribute DOMString border; 32 [Reflect] attribute DOMString border;
33 [Reflect] attribute DOMString codeBase; 33 [Reflect] attribute DOMString codeBase;
34 [Reflect] attribute DOMString codeType; 34 [Reflect] attribute DOMString codeType;
35 [Reflect, URL] attribute DOMString data; 35 [Reflect, URL] attribute DOMString data;
36 [Reflect] attribute boolean declare; 36 [Reflect] attribute boolean declare;
(...skipping 12 matching lines...) Expand all
49 void setCustomValidity([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error); 49 void setCustomValidity([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error);
50 50
51 // Introduced in DOM Level 2: 51 // Introduced in DOM Level 2:
52 [CheckSecurityForNode] readonly attribute Document contentDocument; 52 [CheckSecurityForNode] readonly attribute Document contentDocument;
53 53
54 #if defined(ENABLE_SVG) && ENABLE_SVG 54 #if defined(ENABLE_SVG) && ENABLE_SVG
55 [CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument(); 55 [CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument();
56 #endif 56 #endif
57 }; 57 };
58 58
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b