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

Unified Diff: test/data/input/table_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/mix_iterate_if_test.html ('k') | test/data/input/text_tostring_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/data/input/table_test.html
diff --git a/test/data/input/table_test.html b/test/data/input/table_test.html
index d65eff08da51d26a450ef9a993fecae75561ffad..b344daa3e9e5ece69a69d161a0976e1c49e00dec 100644
--- a/test/data/input/table_test.html
+++ b/test/data/input/table_test.html
@@ -27,7 +27,7 @@ BSD-style license that can be found in the LICENSE file.
List<List> table = [[1, 2, 3], ['a', 'b', 'c'], ['A', 'B', 'C']];
main() {
window.setTimeout(() {
- expect(document.query("#test").innerHTML, equalsIgnoringWhitespace(
+ expect(document.query("#test").innerHtml, equalsIgnoringWhitespace(
'<tr> <td>1</td> <td>2</td> <td>3</td> </tr> '
'<tr> <td>a</td> <td>b</td> <td>c</td> </tr> '
'<tr> <td>A</td> <td>B</td> <td>C</td> </tr>'));
@@ -36,7 +36,7 @@ BSD-style license that can be found in the LICENSE file.
table.add(['_', '__', '___']);
dispatch();
window.setTimeout(() {
- expect(document.query("#test").innerHTML, equalsIgnoringWhitespace(
+ expect(document.query("#test").innerHtml, equalsIgnoringWhitespace(
'<tr> <td>1</td> <td>2</td> <td>X</td> </tr> '
'<tr> <td>a</td> <td>Y</td> <td>c</td> </tr> '
'<tr> <td>A</td> <td>B</td> <td>C</td> </tr> '
« no previous file with comments | « test/data/input/mix_iterate_if_test.html ('k') | test/data/input/text_tostring_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698