diff options
Diffstat (limited to 'test/core/regressions.js')
-rw-r--r-- | test/core/regressions.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/core/regressions.js b/test/core/regressions.js new file mode 100644 index 00000000..109c1d39 --- /dev/null +++ b/test/core/regressions.js @@ -0,0 +1,22 @@ +describe("kutty Regression Tests", function(){ + + beforeEach(function() { + this.server = makeServer(); + clearWorkArea(); + }); + afterEach(function() { + this.server.restore(); + clearWorkArea(); + }); + + it('SVGs process properly in IE11', function() + { + var btn = make('<svg onclick="document.getElementById(\'contents\').classList.toggle(\'show\')" class="hamburger" viewBox="0 0 100 80" width="25" height="25" style="margin-bottom:-5px">\n' + + '<rect width="100" height="20" style="fill:rgb(52, 101, 164)" rx="10"></rect>\n' + + '<rect y="30" width="100" height="20" style="fill:rgb(52, 101, 164)" rx="10"></rect>\n' + + '<rect y="60" width="100" height="20" style="fill:rgb(52, 101, 164)" rx="10"></rect>\n' + + '</svg>') + }); + + +}) |