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

Side by Side 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: Clean up CL 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 START_HTML_DART_TEST
ricow1 2014/11/04 09:18:03 copyright header
Bill Hesse 2014/11/04 16:29:01 Done.
2 {
3 "scripts": [ ],
4 "expectedMessages": ["hest", "fisk"]
5 }
6 END_HTML_DART_TEST
7 <html>
8 <head>
9 <script>window.parent.dispatchEvent(new Event('detect_errors'));</script>
10 <title>No Linked Scripts HTML test</title>
11 </head><body>
12 <h1>No Linked Scripts HTML test</h1>
13 <script>
14 window.postMessage('fisk', '*');
15 window.postMessage('ged', '*');
16 window.postMessage('fisk', '*');
17
18 function delayed() {
19 parent.postMessage('ko', '*');
20 window.postMessage('hest', '*');
21 }
22 setTimeout(delayed, 5000);
23 </script>
24 </body>
25 </html>
OLDNEW
« no previous file with comments | « no previous file | tools/testing/dart/browser_controller.dart » ('j') | tools/testing/dart/html_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698