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

Unified Diff: client/html/html_dartium.dart

Issue 9610011: Port DocumentFragment to the new wrapperless DOM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge with head 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/html/generated/html/interface/DocumentFragment.dart ('k') | client/html/release/html.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/html_dartium.dart
diff --git a/client/html/html_dartium.dart b/client/html/html_dartium.dart
index b111eca6ed4438aa073cb1879f5c11b8b0ec2385..3b0b53450c594c138ab2ac5fba896ec550e7ed58 100644
--- a/client/html/html_dartium.dart
+++ b/client/html/html_dartium.dart
@@ -1128,6 +1128,8 @@ _wrap(raw) {
throw 'A document should never be wrapped directly. TODO(jacobr) XXX';
case 'HTMLHtmlElement':
return new _DocumentImpl._wrap(domObject);
+ case 'HTMLElement':
+ return new _UnknownElementImpl._wrap(domObject);
case "EventTarget": return new _EventTargetImpl._wrap(domObject);
case "AbstractWorker": return new _AbstractWorkerImpl._wrap(domObject);
case "Node": return new _NodeImpl._wrap(domObject);
« no previous file with comments | « client/html/generated/html/interface/DocumentFragment.dart ('k') | client/html/release/html.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698