| Index: third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-style-item.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-style-item.js b/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-style-item.js
|
| deleted file mode 100644
|
| index 34267a2293c6df7a1f4746f21b94d18efc891d83..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-style-item.js
|
| +++ /dev/null
|
| @@ -1,13 +0,0 @@
|
| -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');
|
| -shouldBeUndefined('style[1]');
|
| -shouldBeUndefined('style[-1]')
|
| -
|
| -document.documentElement.removeChild(element);
|
|
|