Chromium Code Reviews| Index: tools/testing/dart/browser_test.dart |
| =================================================================== |
| --- tools/testing/dart/browser_test.dart (revision 26539) |
| +++ tools/testing/dart/browser_test.dart (working copy) |
| @@ -12,6 +12,7 @@ |
| <html> |
| <head> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| + <meta name="dart.unittest" content="full-stack-traces"> |
| <title> Test $title </title> |
| <style> |
| .unittest-table { font-family:monospace; border:1px; } |
| @@ -36,13 +37,14 @@ |
| </html> |
| """; |
| -String getHtmlLayoutContents(String scriptType, Path sourceScript) => |
| +String getHtmlLayoutContents(String scriptType, |
| + Path sourceScript) => |
| """ |
| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| -</head> |
| + <meta name="dart.unittest" content="full-stack-traces"> |
|
kustermann
2013/08/22 21:40:52
You removed accidentally </head>!
|
| <body> |
| <script type="text/javascript"> |
| if (navigator.webkitStartDart) navigator.webkitStartDart(); |