haikuwebkit/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-item.html

26 lines
688 B
HTML

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description("This tests indexing outside the range of the style object.");
var element = document.createElement('div');
element.style.color = 'red';
document.documentElement.appendChild(element);
var style = element.style;
shouldEvaluateTo('style.length', 1);
shouldBeEqualToString('style[0]', 'color');
shouldBeEqualToString('style.item(1)', '');
shouldBeUndefined('style[1]');
shouldBeUndefined('style[-1]')
document.documentElement.removeChild(element);
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>