| Index: LayoutTests/dart/fib-injected-app.html
|
| diff --git a/LayoutTests/dart/fib-injected-app.html b/LayoutTests/dart/fib-injected-app.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c7a79cd3f160f17fa21878108ac467792c80ff3e
|
| --- /dev/null
|
| +++ b/LayoutTests/dart/fib-injected-app.html
|
| @@ -0,0 +1,18 @@
|
| +<html>
|
| +<body>
|
| +
|
| +<script type="application/javascript">
|
| + if (window.testRunner) {
|
| + testRunner.dumpAsText();
|
| + testRunner.waitUntilDone();
|
| + }
|
| +</script>
|
| +
|
| +<script type="application/javascript">
|
| + var script = document.createElement("script");
|
| + script.setAttribute("type", "application/dart");
|
| + script.setAttribute("src", "fib-helper.dart");
|
| + document.body.appendChild(script);
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|