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

Unified Diff: core/dom/DOMImplementation.idl

Issue 155973006: Roll IDL to 1750 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/dom/DOMError.idl ('k') | core/dom/DOMStringMap.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/dom/DOMImplementation.idl
diff --git a/core/dom/DOMImplementation.idl b/core/dom/DOMImplementation.idl
index c110cb4d32efde109df071a7b6fb12250cd08d32..7630c5e5fbd267d3c1e1ab8ee8a1d28d5b8812ca 100644
--- a/core/dom/DOMImplementation.idl
+++ b/core/dom/DOMImplementation.idl
@@ -19,30 +19,29 @@
*/
[
- GenerateIsReachable=document
+ GenerateVisitDOMWrapper=document,
] interface DOMImplementation {
// DOM Level 1
- boolean hasFeature([Default=Undefined] optional DOMString feature,
- [TreatNullAs=NullString,Default=Undefined] optional DOMString version);
+ boolean hasFeature(DOMString feature, [TreatNullAs=NullString] DOMString version);
// DOM Level 2
- [RaisesException] DocumentType createDocumentType([TreatNullAs=NullString] DOMString qualifiedName,
- [TreatNullAs=NullString] DOMString publicId,
- [TreatNullAs=NullString] DOMString systemId);
- [RaisesException] Document createDocument([TreatNullAs=NullString] DOMString namespaceURI,
- [TreatNullAs=NullString] DOMString qualifiedName,
- [Default=Undefined] optional DocumentType doctype);
+ [RaisesException] DocumentType createDocumentType(DOMString qualifiedName,
+ DOMString publicId,
+ DOMString systemId);
+ [RaisesException] Document createDocument([TreatNullAs=NullString] DOMString namespaceURI,
+ [TreatNullAs=NullString] DOMString qualifiedName,
+ [Default=Undefined] optional DocumentType doctype);
// DOMImplementationCSS interface from DOM Level 2 CSS
- CSSStyleSheet createCSSStyleSheet([Default=Undefined] optional DOMString title,
- [Default=Undefined] optional DOMString media);
+ [MeasureAs=DOMImplementationCreateCSSStyleSheet]
+ CSSStyleSheet createCSSStyleSheet([Default=Undefined] optional DOMString title,
+ [Default=Undefined] optional DOMString media);
// HTMLDOMImplementation interface from DOM Level 2 HTML
HTMLDocument createHTMLDocument([Default=NullString] optional DOMString title);
};
-
« no previous file with comments | « core/dom/DOMError.idl ('k') | core/dom/DOMStringMap.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698