Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
before: function () {
register("my-scrollable-container", [ScrollableContainer], {});
},
beforeEach: function () {
container = document.createElement("div");
document.body.appendChild(container);
container.innerHTML = html;
register.deliver();
},
afterEach: function () {
container.parentNode.removeChild(container);
},
tests: ScrollableSharedTests.testCases
});
// Programatic creation
registerSuite("deliteful/ScrollableContainer: programatic", {
before: function () {
container = document.createElement("div");
document.body.appendChild(container);
MyScrollableContainer = register("my-sc-prog", [ScrollableContainer], {});
var w = new ScrollableContainer({ id: "sc1" });
w.style.position = "absolute";
w.style.width = "200px";
w.style.height = "200px";
w.placeAt(container);
innerContent.style.height = "2000px";
w.appendChild(innerContent);
w = new MyScrollableContainer({ id: "mysc1" });
container.appendChild(w);
w = new ScrollableContainer({ id: "sc2" });
w.scrollDirection = "none";
container.appendChild(w);
},
after: function () {
container.parentNode.removeChild(container);
},
tests: ScrollableSharedTests.testCases
});
});