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

Side by Side Diff: LayoutTests/dart/Window-onload.html

Issue 9188009: Things to unfork. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 years, 11 months 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
« no previous file with comments | « LayoutTests/dart/Node-expected.txt ('k') | LayoutTests/dart/Window-onload-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <body>
3
4 <div id="status">Undefined</div>
5
6 <script type="application/dart">
7 #import("dart:dom");
8 void run() {
9 HTMLElement element = document.getElementById("status");
10 element.innerText = "Hello from Dart";
11 }
12
13 void main() {
14 if (null !== layoutTestController) {
15 layoutTestController.dumpAsText();
16 }
17 window.addEventListener('load', (Event e) => run());
18 }
19 </script>
20
21 <script>
22 // Fake script to trigger Dart execution.
23 </script>
24
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « LayoutTests/dart/Node-expected.txt ('k') | LayoutTests/dart/Window-onload-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698