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

Side by Side Diff: third_party/pkg/angular/test/io/test_files/cssUrls/main.dart

Issue 180843004: Revert revision 33053 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 library test_files.main;
2
3 import 'package:angular/core/module.dart';
4
5 @NgComponent(
6 selector: 'my-component',
7 cssUrl: '/test/io/test_files/cssUrls/one.css')
8 class MyComponent
9 {
10 }
11
12 @NgComponent(
13 selector: 'my-component2',
14 cssUrl: const [
15 '/test/io/test_files/cssUrls/two.css',
16 '/test/io/test_files/cssUrls/three.css'])
17 class MyComponent2
18 {
19 }
20
21 @NgComponent(
22 selector: 'my-component3',
23 cssUrl: '/test/io/test_files/cssUrls/four.css')
24 class MyComponent3
25 {
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698