Index: LayoutTests/dart/Window-onload.html |
diff --git a/LayoutTests/dart/Window-onload.html b/LayoutTests/dart/Window-onload.html |
deleted file mode 100644 |
index 62edf07d7401619aa4392ed03c085d4b81d06b87..0000000000000000000000000000000000000000 |
--- a/LayoutTests/dart/Window-onload.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<html> |
-<body> |
- |
-<div id="status">Undefined</div> |
- |
-<script type="application/dart"> |
-#import("dart:dom"); |
-void run() { |
- HTMLElement element = document.getElementById("status"); |
- element.innerText = "Hello from Dart"; |
-} |
- |
-void main() { |
- if (null !== layoutTestController) { |
- layoutTestController.dumpAsText(); |
- } |
- window.addEventListener('load', (Event e) => run()); |
-} |
-</script> |
- |
-<script> |
-// Fake script to trigger Dart execution. |
-</script> |
- |
-</body> |
-</html> |