blob: 46d04d5f675cf84d4bb3e27b5582d415ec9a0eb9 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../../resources/js-test-pre.js"></script>
<script>
description("This tests the descriptor of CSSStyleDeclaration properties.");
var descriptor = Object.getOwnPropertyDescriptor(document.body.style, 'color');
shouldBeTrue("descriptor['writable']");
shouldBeTrue("descriptor['enumerable']");
shouldBeFalse("descriptor['configurable']");
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>