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

Side by Side Diff: Source/core/html/HTMLElement.idl

Issue 15077006: Implement ParentNode IDL interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 7 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 | « Source/core/html/HTMLElement.cpp ('k') | no next file » | 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString outerText; 43 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString outerText;
44 44
45 [RaisesException] Element insertAdjacentElement([Default=Undefined] optional DOMString where, 45 [RaisesException] Element insertAdjacentElement([Default=Undefined] optional DOMString where,
46 [Default=Undefined] optional Element element); 46 [Default=Undefined] optional Element element);
47 [DeliverCustomElementCallbacks, RaisesException] void insertAdjacentHTML([De fault=Undefined] optional DOMString where, 47 [DeliverCustomElementCallbacks, RaisesException] void insertAdjacentHTML([De fault=Undefined] optional DOMString where,
48 [Default=Undefined] optional DOMString html); 48 [Default=Undefined] optional DOMString html);
49 [RaisesException] void insertAdjacentText([Default=Undefined] optional DOMSt ring where, 49 [RaisesException] void insertAdjacentText([Default=Undefined] optional DOMSt ring where,
50 [Default=Undefined] optional DOMString text); 50 [Default=Undefined] optional DOMString text);
51 51
52 [EnabledAtRuntime=imeAPI] InputMethodContext getInputContext(); 52 [EnabledAtRuntime=imeAPI] InputMethodContext getInputContext();
53 readonly attribute HTMLCollection children;
54 53
55 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString contentEditable; 54 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString contentEditable;
56 readonly attribute boolean isContentEditable; 55 readonly attribute boolean isContentEditable;
57 56
58 attribute boolean spellcheck; 57 attribute boolean spellcheck;
59 58
60 void click(); 59 void click();
61 }; 60 };
62 61
OLDNEW
« no previous file with comments | « Source/core/html/HTMLElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698