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

Unified Diff: dart/third_party/pkg/js/test/js_wrapping/browser_tests.html

Issue 57393002: Version 0.8.10.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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
Index: dart/third_party/pkg/js/test/js_wrapping/browser_tests.html
===================================================================
--- dart/third_party/pkg/js/test/js_wrapping/browser_tests.html (revision 29787)
+++ dart/third_party/pkg/js/test/js_wrapping/browser_tests.html (working copy)
@@ -1,32 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Some Tests</title>
- <style type="text/css">
- .unittest-table { font-family: monospace; border: 1px; }
- .unittest-pass { background: #6b3;}
- .unittest-fail { background: #d55;}
- .unittest-error { background: #a11;}
- .unittest-xml-log {opacity:0; color: white;}
- .test-area { display: none; }
- body { overflow: visible; }
- </style>
-</head>
-<body>
- <h1>Loading and running tests</h1>
-<script>
-
-function Person(firstname, lastname){
- this.firstname = firstname;
- this.lastname = lastname;
- this.father = null;
- this.children = [];
-};
-Person.prototype.sayHello = function() { return "Hello, I'm " + this.firstname + " " + this.lastname; };
-
-</script>
- <script type="application/dart" src="browser_tests.dart"></script>
- <script src="packages/browser/dart.js"></script>
- <script src="packages/browser/interop.js"></script>
-</body>
-</html>
« no previous file with comments | « dart/third_party/pkg/js/test/js_wrapping/browser_tests.dart ('k') | dart/third_party/pkg/js/tools/create_bootstrap.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698