We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62f7d6 commit b963e9bCopy full SHA for b963e9b
test/html.js
@@ -272,4 +272,13 @@ describe('HTML Parser', function () {
272
root.firstChild.tagName.should.eql('my-widget');
273
});
274
275
+
276
+ describe('Custom Element multiple dash', function () {
277
+ it('parse "<my-new-widget></my-new-widget>" tagName should be "my-new-widget"', function () {
278
279
+ var root = parseHTML('<my-new-widget></my-new-widget>');
280
281
+ root.firstChild.tagName.should.eql('my-new-widget');
282
+ });
283
284
0 commit comments