Index: LayoutTests/dart/Multiscript.html |
diff --git a/LayoutTests/dart/Multiscript.html b/LayoutTests/dart/Multiscript.html |
deleted file mode 100644 |
index 258360ec3bcd44696bed57714d5d2f101abb5535..0000000000000000000000000000000000000000 |
--- a/LayoutTests/dart/Multiscript.html |
+++ /dev/null |
@@ -1,57 +0,0 @@ |
-<html> |
-<head> |
-<script type="application/javascript" src="../../../../dart/client/testing/unittest/test_controller.js"></script> |
-</head> |
-<body> |
- |
-<script type="application/dart"> |
-#import('dart:dom'); |
-#import('dart:json'); |
-#import('../../../../dart/client/testing/unittest/unittest.dart'); |
-#import('Multiscript.dart'); |
-main() { |
- forLayoutTests(); |
- asyncTest('Multiple script tags', 3, () { |
- addHandler('done', (msg) { |
- Expect.equals(msg['actual'], msg['expect']); |
- callbackDone(); |
- }); |
- postMessage('start', {}); |
- }); |
-} |
-</script> |
- |
-<script type="application/dart"> |
-#import('Multiscript.dart'); |
-main() { |
- State.s = 1; |
- onStart((m) { |
- State.update(); |
- checkEventDelivery(1, 3); |
- }); |
-} |
-</script> |
- |
-<script type="application/dart"> |
-#import('Multiscript.dart'); |
-main() { |
- State.s = 10; |
- onStart((m) { |
- State.update(); |
- checkEventDelivery(2, 12); |
- }); |
-} |
-</script> |
- |
-<script type="application/dart"> |
-#import('Multiscript.dart'); |
-main() { |
- State.s = 100; |
- onStart((m) { |
- State.update(); |
- checkEventDelivery(3, 102); |
- }); |
-} |
-</script> |
-</body> |
-</html> |