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

Unified Diff: pkg/polymer/example/component/news/test/expected/news_index_test.html.txt

Issue 24077003: fix polymer tests -- replace run.sh and run tests using bots (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: pkg/polymer/example/component/news/test/expected/news_index_test.html.txt
diff --git a/pkg/polymer/example/component/news/test/expected/news_index_test.html.txt b/pkg/polymer/example/component/news/test/expected/news_index_test.html.txt
deleted file mode 100644
index 08507341859de2336ebf001444e74317357ea67d..0000000000000000000000000000000000000000
--- a/pkg/polymer/example/component/news/test/expected/news_index_test.html.txt
+++ /dev/null
@@ -1,75 +0,0 @@
-Content-Type: text/plain
-<html><head>
- <title>Simple Web Components Example</title>
-
- <script src="packages/polymer/testing/testing.js"></script>
-<style>template,
-thead[template],
-tbody[template],
-tfoot[template],
-th[template],
-tr[template],
-td[template],
-caption[template],
-colgroup[template],
-col[template],
-option[template] {
- display: none;
-}</style></head>
-<body><script src="packages/shadow_dom/shadow_dom.min.js"></script>
-<script src="packages/browser/interop.js"></script>
-<polymer-element name="x-news" extends="ul">
- <template>
- <style scoped="">
- div.breaking {
- color: Red;
- font-size: 20px;
- border: 1px dashed Purple;
- }
- div.other {
- padding: 2px 0 0 0;
- border: 1px solid Cyan;
- }
- </style>
- <div class="breaking">
- <h2>Breaking Stories</h2>
- <ul>
- <content select=".breaking"></content>
- </ul>
- </div>
- <div class="other">
- <h2>Other News</h2>
- <ul>
- <content></content>
- </ul>
- </div>
- </template>
-
-</polymer-element>
-<h1>Simple Web Components Example</h1>
-<ul is="x-news"><shadow-root>
- <style scoped="">/* style hidden by testing.js */</style>
- <div class="breaking">
- <h2>Breaking Stories</h2>
- <ul>
- <content select=".breaking"></content>
- </ul>
- </div>
- <div class="other">
- <h2>Other News</h2>
- <ul>
- <content></content>
- </ul>
- </div>
- </shadow-root>
- <li><a href="//example.com/stories/1">A story</a></li>
- <li><a href="//example.com/stories/2">Another story</a></li>
- <li class="breaking"><a href="//example.com/stories/3">Also a story</a></li>
- <li><a href="//example.com/stories/4">Yet another story</a></li>
- <li><a href="//example.com/stories/4">Awesome story</a></li>
- <li class="breaking"><a href="//example.com/stories/5">Horrible story</a></li>
-</ul>
-
-
-
-<script type="application/dart" src="news_index_test.html_bootstrap.dart"></script></body></html>

Powered by Google App Engine
This is Rietveld 408576698