blob: 6fa72a5cae94fbbeba69d25021de655bbb22cd5e [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 Test the cssText output of counter-valued CSSPrimitiveValues
*/
import "dart:html";
import "../../../testcommon.dart";
main() {
var style = new Element.html('''
<style>
body {
counter-reset: section;
}
h1 {
counter-increment: section;
}
h2:before {
content: counter(section);
}
h2:after {
content: counters(section, ":", decimal);
}
h3:before {
content: counter(section, lower-roman);
}
h3:after {
content: counters(section, ",", upper-roman);
}
h4:before {
content: counter(section, none);
}
</style>
''', treeSanitizer: new NullTreeSanitizer());
document.head.append(style);
var rules = style.sheet.cssRules;
shouldBeLikeString(rules[2].style.cssText, "content: counter(section);");
shouldBeLikeString(rules[3].style.cssText, "content: counters(section, ':');");
shouldBeLikeString(rules[4].style.cssText, "content: counter(section, lower-roman);");
shouldBeLikeString(rules[5].style.cssText, "content: counters(section, ',', upper-roman);");
shouldBeLikeString(rules[6].style.cssText, "content: counter(section, none);");
}