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

Unified Diff: client/dom/templates/html/dartium/html_dartium.darttemplate

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 | « no previous file | client/dom/templates/html/impl/impl_DocumentFragment.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/templates/html/dartium/html_dartium.darttemplate
diff --git a/client/dom/templates/html/dartium/html_dartium.darttemplate b/client/dom/templates/html/dartium/html_dartium.darttemplate
index cac92b170bfe4e4583b8059a9cace207a48c47e8..c2bfb436148c12c0315a4b85f242ce6b9b7f1465 100644
--- a/client/dom/templates/html/dartium/html_dartium.darttemplate
+++ b/client/dom/templates/html/dartium/html_dartium.darttemplate
@@ -78,6 +78,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);
$WRAPCASES
default:
throw 'Unrecognized object $domObject. Name=${domObject.typeName}';
« no previous file with comments | « no previous file | client/dom/templates/html/impl/impl_DocumentFragment.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698