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

Side by Side Diff: client/html/generated/html/frog/DOMImplementation.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class _DOMImplementationImpl implements DOMImplementation native "*DOMImplementa tion" {
3
4 _CSSStyleSheetImpl createCSSStyleSheet(String title, String media) native;
5
6 _DocumentImpl createDocument(String namespaceURI, String qualifiedName, _Docum entTypeImpl doctype) => _FixHtmlDocumentReference(_createDocument(namespaceURI, qualifiedName, doctype));
7
8 _EventTargetImpl _createDocument(String namespaceURI, String qualifiedName, _D ocumentTypeImpl doctype) native "return this.createDocument(namespaceURI, qualif iedName, doctype);";
9
10 _DocumentTypeImpl createDocumentType(String qualifiedName, String publicId, St ring systemId) native;
11
12 _DocumentImpl createHTMLDocument(String title) => _FixHtmlDocumentReference(_c reateHTMLDocument(title));
13
14 _EventTargetImpl _createHTMLDocument(String title) native "return this.createH TMLDocument(title);";
15
16 bool hasFeature(String feature, String version) native;
17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698