dyoo / whalesong

Whalesong: Racket to JavaScript compiler
http://hashcollision.org/whalesong
250 stars 30 forks source link

xexp->dom must check for crazy element names #67

Closed dyoo closed 12 years ago

dyoo commented 12 years ago

Reported by Richard Nguyen:


I'm getting an Error: INVALID_CHARACTER_ERR: DOM Exception 5

for

(xexp->dom '(tr (td ,(loc-name curr)) (td ,(number->string dist)) (td ,dir))) Should I put using ` or ' in front of the tr and tds?


What's going on is that document.createElement("quasiquote") is just wrong, and we get an error at that point. We need to guard this.

dyoo commented 12 years ago

Fixed in 1.8