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

Unified Diff: lib/dom/templates/html/impl/impl_Document.darttemplate

Issue 9956010: Fix typo in dartium query selector code. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/templates/html/impl/impl_Document.darttemplate
diff --git a/lib/dom/templates/html/impl/impl_Document.darttemplate b/lib/dom/templates/html/impl/impl_Document.darttemplate
index c5fd66d41ac3d4d80eb9482196ebb87326ede935..0b2e41221ee0a3e50707fb6030bc368c8b28a0ee 100644
--- a/lib/dom/templates/html/impl/impl_Document.darttemplate
+++ b/lib/dom/templates/html/impl/impl_Document.darttemplate
@@ -26,7 +26,7 @@ $if FROG
_ElementImpl $dom_querySelector(String selectors) native "return this.querySelector(selectors);";
$else
_ElementImpl $dom_querySelector(String selectors) =>
- _wrap(_.querySelector(selectors));
+ _wrap(_ptr.querySelector(selectors));
$endif
ElementList queryAll(String selectors) {
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698