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

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

Issue 49223002: fix webui for sdk 0.8.7 (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
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 | « test/data/input/final_one_time_binding_test.html ('k') | test/data/input/trim_indentation_space2_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 94f802ceebfd95e44b343cba19d077354294204a..9378d67e59a19500abe531aa35c22b24fad5393a 100644
--- a/test/data/input/table_test.html
+++ b/test/data/input/table_test.html
@@ -20,6 +20,7 @@ BSD-style license that can be found in the LICENSE file.
</tr>
</tbody></table>
<script type="application/dart">
+ import 'dart:async';
import 'dart:html';
import 'package:unittest/unittest.dart';
import 'package:web_ui/observe.dart';
@@ -32,7 +33,7 @@ BSD-style license that can be found in the LICENSE file.
]);
main() {
- window.setImmediate(() {
+ Timer.run(() {
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> '
« no previous file with comments | « test/data/input/final_one_time_binding_test.html ('k') | test/data/input/trim_indentation_space2_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698