blob: 2f04058c5a1d4c8036b8cef5402359c675857ab1 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description(
'This test checks that access to CSS properties via JavaScript properties on DOM elements is case sensitive.'
);
var element = document.createElement('a');
element.style.zIndex = 1;
shouldBe("element.style.zIndex", "'1'");
shouldBeUndefined("element.style.ZIndex");
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>