• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1description("This tests indexing outside the range of the style object.");
2
3var element = document.createElement('div');
4element.style.color = 'red';
5document.documentElement.appendChild(element);
6var style = element.style;
7
8shouldEvaluateTo('style.length', 1);
9shouldBeEqualToString('style[0]', 'color');
10shouldBeEqualToString('style[1]', '');
11shouldBeUndefined('style[-1]')
12
13document.documentElement.removeChild(element);
14
15successfullyParsed = true;
16