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

Side by Side Diff: webkit/port/dom/Document.idl

Issue 4097: Implement better JS exception handling by abstracting KJS::ExecState into an ... (Closed) Base URL: svn://chrome-svn/chrome/branches/chrome_webkit_merge_branch/
Patch Set: '' Created 12 years, 2 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 | « webkit/port/bridge/ScriptControllerV8.cpp ('k') | webkit/port/dom/NSResolver.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 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 [UsesView] CSSRuleList getMatchedCSSRules(in Element element, 220 [UsesView] CSSRuleList getMatchedCSSRules(in Element element,
221 in DOMString pseudoElement); 221 in DOMString pseudoElement);
222 [UsesView] CSSRuleList getMatchedCSSRules(in Element element, 222 [UsesView] CSSRuleList getMatchedCSSRules(in Element element,
223 in DOMString pseudoElement, 223 in DOMString pseudoElement,
224 in [Optional] boolean authorOn ly); 224 in [Optional] boolean authorOn ly);
225 #endif 225 #endif
226 // HTML 5 226 // HTML 5
227 NodeList getElementsByClassName(in DOMString tagname); 227 NodeList getElementsByClassName(in DOMString tagname);
228 228
229 // DocumentSelector - Selector API 229 // DocumentSelector - Selector API
230 [Custom] Element querySelector(in [ConvertUndefinedOrNullToNullString] D OMString selectors) 230 [Custom] Element querySelector(in [ConvertUndefinedOrNullToNullString] D OMString selectors, in NSResolver resolver)
231 raises(DOMException); 231 raises(DOMException);
232 [Custom] NodeList querySelectorAll(in [ConvertUndefinedOrNullToNullStrin g] DOMString selectors) 232 [Custom] NodeList querySelectorAll(in [ConvertUndefinedOrNullToNullStrin g] DOMString selectors, in NSResolver resolver)
233 raises(DOMException); 233 raises(DOMException);
234 }; 234 };
235 235
236 } 236 }
OLDNEW
« no previous file with comments | « webkit/port/bridge/ScriptControllerV8.cpp ('k') | webkit/port/dom/NSResolver.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698