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

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

Issue 20863002: Introduce boot.js: this finally makes it possible to load and run Todomvc (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 5 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
« no previous file with comments | « build.dart ('k') | example/component/news/web/index.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: example/component/news/test/expected/news_index_test.html.txt
diff --git a/example/component/news/test/expected/news_index_test.html.txt b/example/component/news/test/expected/news_index_test.html.txt
index 196720c015363e002a7b8372095da9636ba20637..49215b3f8cc2dcab95bebcc4455eb6a9698eb3c6 100644
--- a/example/component/news/test/expected/news_index_test.html.txt
+++ b/example/component/news/test/expected/news_index_test.html.txt
@@ -3,35 +3,56 @@ Content-Type: text/plain
<title>Simple Web Components Example</title>
<script src="../../packages/polymer/testing/testing.js"></script>
-<link rel="stylesheet" type="text/css" href="news_index_test.html.css"></head>
+</head>
<body><polymer-element name="x-news" extends="ul">
<template>
- <div class="x-news_breaking">
+ <style>
+div.breaking {
+ color: #f00;
+ font-size: 20px;
+ border: 1px dashed #800080;
+}
+div.other {
+ padding: 2px 0 0 0;
+ border: 1px solid #0ff;
+}
+</style><div class="breaking">
<h2>Breaking Stories</h2>
<ul>
<content select=".breaking"></content>
</ul>
</div>
- <div class="x-news_other">
+ <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>
- <div class="x-news_breaking">
+ <style>
+div.breaking {
+ color: #f00;
+ font-size: 20px;
+ border: 1px dashed #800080;
+}
+div.other {
+ padding: 2px 0 0 0;
+ border: 1px solid #0ff;
+}
+</style><div class="breaking">
<h2>Breaking Stories</h2>
<ul>
<content select=".breaking"></content>
</ul>
</div>
- <div class="x-news_other">
+ <div class="other">
<h2>Other News</h2>
<ul>
<content></content>
« no previous file with comments | « build.dart ('k') | example/component/news/web/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698