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

Unified Diff: packages/csslib/test/var_test.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 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
« no previous file with comments | « packages/csslib/test/mixin_test.dart ('k') | packages/csslib/test/visitor_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/csslib/test/var_test.dart
diff --git a/packages/csslib/test/var_test.dart b/packages/csslib/test/var_test.dart
index 3c53169b190e2e1983f2370b655a3fc5e9221621..39e7c458100246a0be7a379315953ae136d3f378 100644
--- a/packages/csslib/test/var_test.dart
+++ b/packages/csslib/test/var_test.dart
@@ -748,15 +748,13 @@ var-color-foreground: #00f;
}
void polyfill() {
- compilePolyfillAndValidate(
- r'''
+ compilePolyfillAndValidate(r'''
@color-background: red;
@color-foreground: blue;
.test {
background-color: @color-background;
color: @color-foreground;
-}''',
- r'''
+}''', r'''
.test {
background-color: #f00;
color: #00f;
@@ -764,8 +762,7 @@ void polyfill() {
}
void testIndirects() {
- compilePolyfillAndValidate(
- '''
+ compilePolyfillAndValidate('''
:root {
var-redef: #0f0;
@@ -782,8 +779,7 @@ void testIndirects() {
}
.test-1 {
color: @redef;
-}''',
- r'''
+}''', r'''
:root {
}
.test {
« no previous file with comments | « packages/csslib/test/mixin_test.dart ('k') | packages/csslib/test/visitor_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698