| Index: LayoutTests/fast/css/sticky/resources/parsing-position-sticky.js
|
| diff --git a/LayoutTests/fast/css/sticky/resources/parsing-position-sticky.js b/LayoutTests/fast/css/sticky/resources/parsing-position-sticky.js
|
| deleted file mode 100644
|
| index df535ac86098dcd79c501152afaac956cf567133..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/css/sticky/resources/parsing-position-sticky.js
|
| +++ /dev/null
|
| @@ -1,14 +0,0 @@
|
| -description("This tests checks that the sticky value for position parses correctly.");
|
| -
|
| -function test(value)
|
| -{
|
| - var div = document.createElement("div");
|
| - div.setAttribute("style", value);
|
| - document.body.appendChild(div);
|
| -
|
| - var result = div.style.getPropertyValue("position");
|
| - document.body.removeChild(div);
|
| - return result;
|
| -}
|
| -
|
| -shouldBe('test("position: sticky;")', '"sticky"');
|
|
|