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

Unified Diff: pkg/polymer/test/events_test.dart

Issue 34533004: remove xtag from Polymer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « pkg/polymer/test/attr_mustache_test.dart ('k') | pkg/polymer/test/publish_attributes_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/test/events_test.dart
diff --git a/pkg/polymer/test/events_test.dart b/pkg/polymer/test/events_test.dart
index cc803397ef71e0e1153f1a491f27dd5f88c36e1f..afd7e46787fc661897567b84f41f642b3c0b0168 100644
--- a/pkg/polymer/test/events_test.dart
+++ b/pkg/polymer/test/events_test.dart
@@ -39,21 +39,21 @@ main() {
// Note: this test is currently the only event in
// polymer/test/js/events.js at commit #7936ff8
var testA = query('#a');
- expect(testA.xtag.clicks, isEmpty);
+ expect(testA.clicks, isEmpty);
testA.click();
- expect(testA.xtag.clicks, ['host click on: test-a (id a)']);
+ expect(testA.clicks, ['host click on: test-a (id a)']);
});
test('local event', () {
var testB = query('#b');
- expect(testB.xtag.clicks, isEmpty);
+ expect(testB.clicks, isEmpty);
testB.click();
- expect(testB.xtag.clicks, []);
+ expect(testB.clicks, []);
var b1 = testB.shadowRoot.query('#b-1');
b1.click();
- expect(testB.xtag.clicks, []);
+ expect(testB.clicks, []);
var b2 = testB.shadowRoot.query('#b-2');
b2.click();
- expect(testB.xtag.clicks, ['local click under test-b (id b) on b-2']);
+ expect(testB.clicks, ['local click under test-b (id b) on b-2']);
});
}
« no previous file with comments | « pkg/polymer/test/attr_mustache_test.dart ('k') | pkg/polymer/test/publish_attributes_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698