Index: tests/html/no_linked_scripts_htmltest.html |
diff --git a/tests/html/no_linked_scripts_htmltest.html b/tests/html/no_linked_scripts_htmltest.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..23261a940c28a53fbcdff8e1553e5db5e12bfb9c |
--- /dev/null |
+++ b/tests/html/no_linked_scripts_htmltest.html |
@@ -0,0 +1,33 @@ |
+<!DOCTYPE html> |
+<!-- |
+Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+for details. All rights reserved. Use of this source code is governed by a |
+BSD-style license that can be found in the LICENSE file. |
+--> |
+<!-- |
+START_HTML_DART_TEST |
+{ |
+ "scripts": [ ], |
+ "expectedMessages": ["hest", "fisk"] |
+} |
+END_HTML_DART_TEST |
+--> |
+<html> |
+<head> |
+<script>window.parent.dispatchEvent(new Event('detect_errors'));</script> |
+<title>No Linked Scripts HTML test</title> |
+</head><body> |
+<h1>No Linked Scripts HTML test</h1> |
+<script> |
+window.postMessage('fisk', '*'); |
+window.postMessage('ged', '*'); |
+window.postMessage('fisk', '*'); |
+ |
+function delayed() { |
+ parent.postMessage('ko', '*'); |
+ window.postMessage('hest', '*'); |
+ } |
ricow1
2014/11/05 12:22:55
strange indentation
Bill Hesse
2014/11/05 16:00:32
Fixed in followup CL already.
|
+setTimeout(delayed, 5000); |
+</script> |
+</body> |
+</html> |