diff --git a/test/core/regressions.js b/test/core/regressions.js index 21b0407e..407d8968 100644 --- a/test/core/regressions.js +++ b/test/core/regressions.js @@ -73,4 +73,12 @@ describe("Core htmx Regression Tests", function(){ div.innerText.should.contain("Foo"); }); + it ('@ symbol in attributes does not break requests', function(){ + this.server.respondWith("GET", "/test", "
Foo
"); + var div = make('
Get It
'); + div.click(); + this.server.respond(); + byId("d1").getAttribute('@foo').should.equal('bar'); + }); + })