blob: d60d81e88879ee0da0bbc989a42a950a2b9b1d20 [file] [log] [blame]
/*
* Copyright (c) 2014, 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.
*/
/**
* @description :-webkit-any\( should not crash
*/
import "dart:html";
import "../../testcommon.dart";
main() {
var style = new Element.html('''
<style>:-webkit-any\( {}</style>
''', treeSanitizer: new NullTreeSanitizer());
document.head.append(style);
}