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

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

Issue 22962005: Merge pull request #581 from kevmoo/polymer (Closed) Base URL: https://github.com/dart-lang/web-ui.git@polymer
Patch Set: Created 7 years, 4 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/todomvc/test/expected/todomvc_listorder_test.html.txt » ('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 49215b3f8cc2dcab95bebcc4455eb6a9698eb3c6..f5907ed01409f87324dd2a85cb44dc307a4040c7 100644
--- a/example/component/news/test/expected/news_index_test.html.txt
+++ b/example/component/news/test/expected/news_index_test.html.txt
@@ -3,21 +3,33 @@ Content-Type: text/plain
<title>Simple Web Components Example</title>
<script src="../../packages/polymer/testing/testing.js"></script>
-</head>
+<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><polymer-element name="x-news" extends="ul">
<template>
-
- <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">
+ <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>
@@ -35,18 +47,18 @@ div.other {
<h1>Simple Web Components Example</h1>
<ul is="x-news"><shadow-root>
-
- <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">
+ <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>
« no previous file with comments | « build.dart ('k') | example/todomvc/test/expected/todomvc_listorder_test.html.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698