3 <script src=
"../../../resources/js-test.js"></script>
5 description("This tests checks that the sticky value for position parses correctly.");
7 if (window
.internals
) {
8 internals
.settings
.setCSSStickyPositionEnabled(true);
13 var div
= document
.createElement("div");
14 div
.setAttribute("style", value
);
15 document
.body
.appendChild(div
);
17 var result
= div
.style
.getPropertyValue("position");
18 document
.body
.removeChild(div
);
22 shouldBe('test("position: sticky;")', '"sticky"');