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

Unified Diff: sky/tests/framework/basic.sky

Issue 1122413006: [Effen] Move 'flex' out of CSS also. (mark II) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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
Index: sky/tests/framework/basic.sky
diff --git a/sky/tests/framework/basic.sky b/sky/tests/framework/basic.sky
index 244057a6420f02b35d0b80c7184fe367fbc62fdd..efe8e0cff43e367f4070c06393402dd43a0e0549 100644
--- a/sky/tests/framework/basic.sky
+++ b/sky/tests/framework/basic.sky
@@ -8,7 +8,13 @@ import 'dart:sky.internals' as internals;
void main() {
new TestApp();
runAfterDisplay(() {
- internals.notifyTestComplete(serializeNode(document.lastChild.previousSibling) + serializeNode(document.lastChild));
+ var result = serializeNode(document.lastChild.previousSibling) + serializeNode(document.lastChild);
+ try {
+ internals.notifyTestComplete(result);
+ } catch (e) {
+ print(e);
+ print(result);
+ }
});
}
</script>

Powered by Google App Engine
This is Rietveld 408576698