blob: 29b3784139a2633c75b4e0879e7bd846f66cb74f [file]
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[1]', '');
shouldBeUndefined('style[-1]')
document.documentElement.removeChild(element);