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

Side by Side Diff: sky/tests/framework/basic.dart

Issue 1065073002: Attempt to de-flake tests/framework/basic.sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 import 'dart:sky'; 1 import 'dart:sky';
2 2
3 import 'package:sky/framework/fn.dart'; 3 import 'package:sky/framework/fn.dart';
4 4
5 class TestApp extends App { 5 class TestApp extends App {
6 UINode build() { 6 UINode build() {
7 return new Container( 7 return new Container(
8 inlineStyle: 'background-color: green', 8 inlineStyle: 'background-color: green',
9 children: [ 9 children: [
10 new Text('I am Text'), 10 new Text('I am Text'),
11 new Image(src: 'foo.jpg'), 11 new Image(src: 'resources/united.jpg'),
12 new Anchor(href: 'http://www.google.com') 12 new Anchor(href: 'http://www.google.com')
13 ] 13 ]
14 ); 14 );
15 } 15 }
16 } 16 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698