blob: 45fd127bc80b7c9185efc12b5a2de4cc2073474e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<head>
<script src="../../js/resources/js-test-pre.js"></script>
<style id="style1">
.foo::-webkit-distributed(div .bar::before) { display: block; }
</style>
</head>
<script>
description("Test for cssText of '::distributed()' rule.");
shouldBeEqualToString("document.getElementById('style1').sheet.cssRules.item(0).cssText", ".foo::-webkit-distributed(div .bar::before) { display: block; }");
</script>
</html>
|