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

Unified Diff: lib/src/iron-selector/test/excluded-local-names.html

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 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 | « lib/src/iron-selector/test/basic.html ('k') | lib/src/iron-selector/test/multi.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/iron-selector/test/excluded-local-names.html
diff --git a/lib/src/iron-selector/test/excluded-local-names.html b/lib/src/iron-selector/test/excluded-local-names.html
index 28207ca9cca09ce7b030770fb5e923754ff47061..8c0e6e185ae565dce8271e5992ea0d04ab505c8e 100644
--- a/lib/src/iron-selector/test/excluded-local-names.html
+++ b/lib/src/iron-selector/test/excluded-local-names.html
@@ -57,22 +57,22 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
test2 = fixture('test2');
});
- test('default `excludedLocalNames`', function() {
- assert.isTrue('template' in test1.excludedLocalNames);
- assert.isTrue('template' in test2.excludedLocalNames);
+ test('default `_excludedLocalNames`', function() {
+ assert.isTrue('template' in test1._excludedLocalNames);
+ assert.isTrue('template' in test2._excludedLocalNames);
});
- test('custom `excludedLocalNames`', function() {
- test1.excludedLocalNames.foo = 1;
+ test('custom `_excludedLocalNames`', function() {
+ test1._excludedLocalNames.foo = 1;
- assert.isTrue('foo' in test1.excludedLocalNames);
- assert.isFalse('foo' in test2.excludedLocalNames);
+ assert.isTrue('foo' in test1._excludedLocalNames);
+ assert.isFalse('foo' in test2._excludedLocalNames);
});
test('items', function() {
- test1.excludedLocalNames.span = 1;
- test2.excludedLocalNames.div = 1;
+ test1._excludedLocalNames.span = 1;
+ test2._excludedLocalNames.div = 1;
var NOT_FOUND = -1;
var items1 = test1.items.map(function(el) { return el.localName; });
« no previous file with comments | « lib/src/iron-selector/test/basic.html ('k') | lib/src/iron-selector/test/multi.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698