| Index: third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-properties-case-sensitive.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-properties-case-sensitive.js b/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-properties-case-sensitive.js
|
| deleted file mode 100644
|
| index 9c24193fa96f5734cfd1f656875c611f2fe79da6..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-properties-case-sensitive.js
|
| +++ /dev/null
|
| @@ -1,21 +0,0 @@
|
| -description(
|
| -'This test checks that access to the CSS float property via JavaScript properties on DOM elements is case sensitive.'
|
| -);
|
| -
|
| -var element = document.createElement('a');
|
| -element.style.float = 'left';
|
| -
|
| -debug('normal cases');
|
| -debug('');
|
| -
|
| -shouldBe("element.style.float", "'left'");
|
| -shouldBeUndefined("element.style.Float");
|
| -
|
| -debug('');
|
| -debug('"css" prefix');
|
| -debug('');
|
| -
|
| -shouldBe("element.style.cssFloat", "'left'");
|
| -shouldBeUndefined("element.style.CssFloat");
|
| -shouldBeUndefined("element.style.Cssfloat");
|
| -shouldBeUndefined("element.style.cssfloat");
|
|
|