| Index: tests/isolate/browser/ports_compilation_browser_test.dart
|
| diff --git a/tests/isolate/ports_compilation_browser_test.dart b/tests/isolate/browser/ports_compilation_browser_test.dart
|
| similarity index 91%
|
| rename from tests/isolate/ports_compilation_browser_test.dart
|
| rename to tests/isolate/browser/ports_compilation_browser_test.dart
|
| index 5ab16abe92ecca39621ac115c09043da374bfb41..5eb76d78b4857f93c8b162f2da8d73e3af3f55d0 100644
|
| --- a/tests/isolate/ports_compilation_browser_test.dart
|
| +++ b/tests/isolate/browser/ports_compilation_browser_test.dart
|
| @@ -8,19 +8,19 @@
|
| library ports_compilation;
|
| import 'dart:html';
|
| import 'dart:isolate';
|
| -import '../../pkg/unittest/lib/unittest.dart';
|
| -import '../../pkg/unittest/lib/html_config.dart';
|
| +import 'package:unittest/unittest.dart';
|
| +import 'package:unittest/html_config.dart';
|
|
|
| void foo() {
|
| // Create a "SendPortSync" object and access one of its members.
|
| SendPortSync s_port;
|
| s_port.callSync;
|
| -
|
| +
|
| // Create a "ReceivePortSync" object (with the constructor) and
|
| // access one of its members.
|
| var r_port = new ReceivePortSync();
|
| r_port.receive;
|
| -
|
| +
|
| // Call getComputedStyle() from the HTML library.
|
| query("").getComputedStyle("");
|
| }
|
|
|