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

Side by Side Diff: third_party/WebKit/WebCore/dom/Document.idl

Issue 21165: Revert the merge. Mac build is mysteriously broken. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org>
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 10 matching lines...) Expand all
21 module core { 21 module core {
22 22
23 interface [ 23 interface [
24 GenerateConstructor, 24 GenerateConstructor,
25 GenerateToJS, 25 GenerateToJS,
26 GenerateNativeConverter, 26 GenerateNativeConverter,
27 CustomMarkFunction, 27 CustomMarkFunction,
28 InlineGetOwnPropertySlot, 28 InlineGetOwnPropertySlot,
29 InterfaceUUID=48BB95FC-2D08-4c54-BE65-7558736A4CAE, 29 InterfaceUUID=48BB95FC-2D08-4c54-BE65-7558736A4CAE,
30 ImplementationUUID=FF5CBE81-F817-429c-A6C2-0CCCD2328062 30 ImplementationUUID=FF5CBE81-F817-429c-A6C2-0CCCD2328062
31 ] Document : Node { 31 ] Document : EventTargetNode {
32 32
33 // DOM Level 1 Core 33 // DOM Level 1 Core
34 readonly attribute DocumentType doctype; 34 readonly attribute DocumentType doctype;
35 readonly attribute [V8Custom] DOMImplementation implementation; 35 readonly attribute [V8Custom] DOMImplementation implementation;
36 readonly attribute Element documentElement; 36 readonly attribute Element documentElement;
37 37
38 [ReturnsNew] Element createElement(in [ConvertNullToNullString] DOMStrin g tagName) 38 [ReturnsNew] Element createElement(in [ConvertNullToNullString] DOMStrin g tagName)
39 raises (DOMException); 39 raises (DOMException);
40 DocumentFragment createDocumentFragment(); 40 DocumentFragment createDocumentFragment();
41 [ReturnsNew] Text createTextNode(in DOMString data); 41 [ReturnsNew] Text createTextNode(in DOMString data);
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 NodeList querySelectorAll(in [ConvertUndefinedOrNullToNullString] DOMStr ing selectors) 243 NodeList querySelectorAll(in [ConvertUndefinedOrNullToNullString] DOMStr ing selectors)
244 raises(DOMException); 244 raises(DOMException);
245 245
246 #if ENABLE_WML 246 #if ENABLE_WML
247 // Only used from within WML layout tests, WML doesn't have JS support a t all. 247 // Only used from within WML layout tests, WML doesn't have JS support a t all.
248 void resetWMLPageState(); 248 void resetWMLPageState();
249 #endif 249 #endif
250 }; 250 };
251 251
252 } 252 }
OLDNEW
« no previous file with comments | « third_party/WebKit/WebCore/dom/Document.cpp ('k') | third_party/WebKit/WebCore/dom/DocumentFragment.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698