// 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 = []; 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); }); }