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

Unified Diff: dom/Text.idl

Issue 13163002: Roll IDLs. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: dom/Text.idl
===================================================================
--- dom/Text.idl (revision 20375)
+++ dom/Text.idl (working copy)
@@ -16,9 +16,10 @@
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
+[
+ V8SkipVTableValidation,
Anton Muhin 2013/03/28 14:13:49 same here
Anton Muhin 2013/03/28 17:16:53 This an interesting additional sanity checks of vt
+] interface Text : CharacterData {
-interface Text : CharacterData {
-
// DOM Level 1
Text splitText(in [IsIndex,Optional=DefaultIsUndefined] unsigned long offset)
@@ -28,5 +29,10 @@
readonly attribute DOMString wholeText;
Text replaceWholeText(in [Optional=DefaultIsUndefined] DOMString content)
raises(DOMException);
+ // ShadowAware API
+#if defined(ENABLE_SHADOW_DOM) && ENABLE_SHADOW_DOM && defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
+ [V8EnabledAtRuntime=shadowDOM, ImplementedAs=insertionParentForBinding, V8PerWorldBindings] readonly attribute Node webkitInsertionParent;
+#endif
+
};

Powered by Google App Engine
This is Rietveld 408576698