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

Unified Diff: test/data/input/iterate_attribute_test.html

Issue 11412285: New pub release - changes to comply with new SDK. (Closed) Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 years, 1 month 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 | « test/data/input/if_attribute_test.html ('k') | test/data/input/mix_iterate_if_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/data/input/iterate_attribute_test.html
diff --git a/test/data/input/iterate_attribute_test.html b/test/data/input/iterate_attribute_test.html
index eae581624f3767a6bd63b4bf4e40f449f23f1338..b8b3fdef873b99e34d0065f46da1f23c1537751b 100644
--- a/test/data/input/iterate_attribute_test.html
+++ b/test/data/input/iterate_attribute_test.html
@@ -23,12 +23,12 @@ BSD-style license that can be found in the LICENSE file.
var list = <String>['a', 'b', 'c', 'e'];
main() {
window.setTimeout(() {
- expect(document.query("#test").innerHTML, equalsIgnoringWhitespace(
+ expect(document.query("#test").innerHtml, equalsIgnoringWhitespace(
'<span>a</span> <span>b</span> <span>c</span> <span>e</span>'));
list[3] = 'd';
dispatch();
window.setTimeout(() {
- expect(document.query("#test").innerHTML, equalsIgnoringWhitespace(
+ expect(document.query("#test").innerHtml, equalsIgnoringWhitespace(
'<span>a</span> <span>b</span> <span>c</span> <span>d</span>'));
window.setTimeout(() => window.postMessage('done', '*'), 0);
}, 0);
« no previous file with comments | « test/data/input/if_attribute_test.html ('k') | test/data/input/mix_iterate_if_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698