qingyangmoke / explorercanvas

Explorercanvas (excanvas.js) is an open source, Apache-licensed JavaScript library that implements the canvas API in Internet Explorer
Apache License 2.0
0 stars 0 forks source link

Error in IE8 with latest Vista service pack and security updates #63

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
After applying a few months worth of updates to a Vista image I now get
error when using the BeautyTip plugin, which uses excanas to do its rendering.

The code looks like this:

1. context.fill()
2. this.stroke(true);
3. this.element_.insertAdjacentHTML("beforeEnd",a.join(""))

At this point IE8 raises an "Invalid source HTML for this operation" exception.

Original issue reported on code.google.com by wich...@outlook.com on 23 Dec 2009 at 11:22

GoogleCodeExporter commented 9 years ago
I have the same problem with my excavas, I used this to display the flot chart. 
I have 
the same error message alert and only in IE not in other web browsers. 
If you have any solutions please kindly share. thanks.

Original comment by pri...@gmail.com on 18 Mar 2010 at 3:07

GoogleCodeExporter commented 9 years ago
I have the same issue.

Original comment by carneiro...@gmail.com on 26 May 2010 at 8:55

GoogleCodeExporter commented 9 years ago
I find if you wrap the canvas tag in the wrong tags it breaks
e.g. this is OK
<span><canvas id="c1" width="300" height="150"></canvas></span>
This does not work
<p><canvas id="c1" width="300" height="150"></canvas></p>

Original comment by martinsi...@gmail.com on 17 Jun 2010 at 2:33