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

Unified Diff: tests/html/no_linked_scripts_htmltest.html

Issue 695893002: Working SimpleHTML test front end (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 6 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
« no previous file with comments | « no previous file | tools/testing/dart/browser_controller.dart » ('j') | tools/testing/dart/multitest.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | tools/testing/dart/browser_controller.dart » ('j') | tools/testing/dart/multitest.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698