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

Side by Side Diff: Source/core/dom/Element.idl

Issue 52203002: Revert "Move innerHTML and outerHTML to Element" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/dom/Element.cpp ('k') | Source/core/editing/markup.h » ('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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 void scrollIntoView(optional boolean alignWithTop); 85 void scrollIntoView(optional boolean alignWithTop);
86 86
87 // WebKit extensions 87 // WebKit extensions
88 88
89 void scrollIntoViewIfNeeded(optional boolean centerIfNeeded); 89 void scrollIntoViewIfNeeded(optional boolean centerIfNeeded);
90 void scrollByLines([Default=Undefined] optional long lines); 90 void scrollByLines([Default=Undefined] optional long lines);
91 void scrollByPages([Default=Undefined] optional long pages); 91 void scrollByPages([Default=Undefined] optional long pages);
92 92
93 // HTML 5 93 // HTML 5
94 NodeList getElementsByClassName([Default=Undefined] optional DOMString name) ; 94 NodeList getElementsByClassName([Default=Undefined] optional DOMString name) ;
95 [TreatNullAs=NullString, CustomElementCallbacks, PerWorldBindings, ActivityL ogging=SetterForIsolatedWorlds, SetterRaisesException] attribute DOMString inner HTML;
96 [TreatNullAs=NullString, CustomElementCallbacks, SetterRaisesException] attr ibute DOMString outerHTML;
97 95
98 [Reflect=class, TreatNullAs=NullString, PerWorldBindings] attribute DOMStrin g className; 96 [Reflect=class, TreatNullAs=NullString, PerWorldBindings] attribute DOMStrin g className;
99 [PerWorldBindings] readonly attribute DOMTokenList classList; 97 [PerWorldBindings] readonly attribute DOMTokenList classList;
100 98
101 [PerWorldBindings] readonly attribute DOMStringMap dataset; 99 [PerWorldBindings] readonly attribute DOMStringMap dataset;
102 100
103 // NodeSelector - Selector API 101 // NodeSelector - Selector API
104 [RaisesException] Element querySelector(DOMString selectors); 102 [RaisesException] Element querySelector(DOMString selectors);
105 [RaisesException] NodeList querySelectorAll(DOMString selectors); 103 [RaisesException] NodeList querySelectorAll(DOMString selectors);
106 104
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 146 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
149 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
150 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 148 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
151 attribute EventHandler onwebkitfullscreenchange; 149 attribute EventHandler onwebkitfullscreenchange;
152 attribute EventHandler onwebkitfullscreenerror; 150 attribute EventHandler onwebkitfullscreenerror;
153 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onwheel; 151 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onwheel;
154 }; 152 };
155 153
156 Element implements ParentNode; 154 Element implements ParentNode;
157 Element implements ChildNode; 155 Element implements ChildNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/editing/markup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698