blob: 3560c0d4892f13d2063e727c09ad4554410c749f [file] [log] [blame]
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:csslib/src/messages.dart';
import 'package:test/test.dart';
import 'testing.dart';
void main() {
test('keyframes', () {
final input =
r'@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }';
var errors = <Message>[];
var stylesheet = compileCss(input, errors: errors, opts: options);
expect(errors, isEmpty);
final expected = r'''
@keyframes ping {
75%, 100% {
transform: scale(2);
opacity: 0;
}
}''';
expect(prettyPrint(stylesheet), expected);
});
}