Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: html/HTMLElement.idl

Issue 13601015: Roll Blink IDLs forward. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « bindings/dart/gyp/scripts/massage_factories.py ('k') | html/HTMLTemplateElement.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 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 25 matching lines...) Expand all
36 attribute boolean draggable; 36 attribute boolean draggable;
37 [Reflect] attribute DOMString webkitdropzone; 37 [Reflect] attribute DOMString webkitdropzone;
38 [Reflect] attribute boolean hidden; 38 [Reflect] attribute boolean hidden;
39 [Reflect] attribute DOMString accessKey; 39 [Reflect] attribute DOMString accessKey;
40 40
41 // Extensions 41 // Extensions
42 [TreatNullAs=NullString, V8DeliverCustomElementCallbacks] attribute DOMString innerHTML 42 [TreatNullAs=NullString, V8DeliverCustomElementCallbacks] attribute DOMString innerHTML
43 setter raises(DOMException); 43 setter raises(DOMException);
44 [TreatNullAs=NullString] attribute DOMString innerText 44 [TreatNullAs=NullString] attribute DOMString innerText
45 setter raises(DOMException); 45 setter raises(DOMException);
46 [TreatNullAs=NullString] attribute DOMString outerHTML 46 [TreatNullAs=NullString, V8DeliverCustomElementCallbacks] attribute DOMString outerHTML
47 setter raises(DOMException); 47 setter raises(DOMException);
48 [TreatNullAs=NullString] attribute DOMString outerText 48 [TreatNullAs=NullString] attribute DOMString outerText
49 setter raises(DOMException); 49 setter raises(DOMException);
50 50
51 Element insertAdjacentElement(in [Optional=DefaultIsUndefined] DOMString whe re, 51 Element insertAdjacentElement(in [Optional=DefaultIsUndefined] DOMString whe re,
52 in [Optional=DefaultIsUndefined] Element eleme nt) 52 in [Optional=DefaultIsUndefined] Element eleme nt)
53 raises(DOMException); 53 raises(DOMException);
54 [V8DeliverCustomElementCallbacks]
54 void insertAdjacentHTML(in [Optional=DefaultIsUndefined] DOMString where, 55 void insertAdjacentHTML(in [Optional=DefaultIsUndefined] DOMString where,
55 in [Optional=DefaultIsUndefined] DOMString html) 56 in [Optional=DefaultIsUndefined] DOMString html)
56 raises(DOMException); 57 raises(DOMException);
57 void insertAdjacentText(in [Optional=DefaultIsUndefined] DOMString where, 58 void insertAdjacentText(in [Optional=DefaultIsUndefined] DOMString where,
58 in [Optional=DefaultIsUndefined] DOMString text) 59 in [Optional=DefaultIsUndefined] DOMString text)
59 raises(DOMException); 60 raises(DOMException);
60 61
61 readonly attribute HTMLCollection children; 62 readonly attribute HTMLCollection children;
62 63
63 [TreatNullAs=NullString] attribute DOMString contentEditable 64 [TreatNullAs=NullString] attribute DOMString contentEditable
(...skipping 22 matching lines...) Expand all
86 #endif 87 #endif
87 #endif 88 #endif
88 89
89 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C 90 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
90 readonly attribute DOMString titleDisplayString; 91 readonly attribute DOMString titleDisplayString;
91 #endif 92 #endif
92 93
93 void click(); 94 void click();
94 }; 95 };
95 96
OLDNEW
« no previous file with comments | « bindings/dart/gyp/scripts/massage_factories.py ('k') | html/HTMLTemplateElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698