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

Side by Side Diff: LayoutTests/dart/compile-error-crash.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
OLDNEW
(Empty)
1 <html>
2 <body>
3
4 <script type="text/javascript">
5 if (window.layoutTestController)
6 layoutTestController.dumpAsText();
7 </script>
8
9 <script id="dart" type="application/dart" data-dart-entry="CompileErrorTest.main ">
10 class A {
11 void foo() {}
12 }
13
14 class B extends A {
15 B() {}
16 void foo(String s) {}
17 }
18
19 class CompileErrorTest {
20 static void main(Window window) {
21 // This shouldn't happen.
22 A a = new B();
23 a.foo();
24 window.document.body.appendChild(window.document.createTextNode('FAIL'));
25 }
26 }
27 </script>
28
29 </body>
30 </html>
OLDNEW
« no previous file with comments | « LayoutTests/dart/WindowAttrs-expected.txt ('k') | LayoutTests/dart/compile-error-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698