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

Unified Diff: LayoutTests/dart/Multiscript.html

Issue 9188009: Things to unfork. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 years, 11 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
« no previous file with comments | « LayoutTests/dart/Multiscript.dart ('k') | LayoutTests/dart/Multiscript-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « LayoutTests/dart/Multiscript.dart ('k') | LayoutTests/dart/Multiscript-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698