blob: 0ddef672b90a20053cb2a4613627150cc0231f1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!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>
<script src="../../js/resources/js-test-post.js"></script>
</html>
|