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

Side by Side Diff: tests/html/custom/element_upgrade_test.html

Issue 778923004: mark public package dependencies test as failing since web_components isn 't yet published (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: also fix references to platform.js Created 6 years 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <meta name="dart.unittest" content="full-stack-traces"> 2 <meta name="dart.unittest" content="full-stack-traces">
3 <title> element_upgrade_test </title> 3 <title> element_upgrade_test </title>
4 <style> 4 <style>
5 .unittest-table { font-family:monospace; border:1px; } 5 .unittest-table { font-family:monospace; border:1px; }
6 .unittest-pass { background: #6b3;} 6 .unittest-pass { background: #6b3;}
7 .unittest-fail { background: #d55;} 7 .unittest-fail { background: #d55;}
8 .unittest-error { background: #a11;} 8 .unittest-error { background: #a11;}
9 </style> 9 </style>
10 <script src="/packages/web_components/platform.concat.js"></script> 10 <script src="/packages/web_components/webcomponents.js"></script>
11 <script src="/packages/web_components/dart_support.js"></script> 11 <script src="/packages/web_components/dart_support.js"></script>
12 12
13 <body> 13 <body>
14 <h1> Running element_upgrade_test </h1> 14 <h1> Running element_upgrade_test </h1>
15 15
16 <script> 16 <script>
17 var Foo = function() {}; 17 var Foo = function() {};
18 Foo.prototype = Object.create(HTMLElement.prototype); 18 Foo.prototype = Object.create(HTMLElement.prototype);
19 Foo.prototype.createdCallback = function() { 19 Foo.prototype.createdCallback = function() {
20 this.fooCreated = true; 20 this.fooCreated = true;
(...skipping 21 matching lines...) Expand all
42 } 42 }
43 } 43 }
44 </script> 44 </script>
45 45
46 <script type="text/javascript" 46 <script type="text/javascript"
47 src="/root_dart/tools/testing/dart/test_controller.js"></script> 47 src="/root_dart/tools/testing/dart/test_controller.js"></script>
48 <script type="text/javascript" 48 <script type="text/javascript"
49 src="/packages/browser/interop.js"></script> 49 src="/packages/browser/interop.js"></script>
50 %TEST_SCRIPTS% 50 %TEST_SCRIPTS%
51 </body> 51 </body>
OLDNEW
« no previous file with comments | « tests/html/custom/document_register_type_extensions_test.html ('k') | tests/html/custom/entered_left_view_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698