What is Microsoft doing on IE10 ?
-
Monday, November 19, 2012 7:24 PM
IE 10 is so nice.
But I can't understand Microsoft for IE10.
Let's see below.
Use this sample source.
<!DOCTYPE html>
<html>
<body><canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas><script>
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");ctx.fillStyle = 'rgba(0,0,0,0.4)';
ctx.fillRect(0,0,998,998);ctx.beginPath();
ctx.arc(100,75,50,0,2*Math.PI);
ctx.closePath();ctx.clip();
ctx.clearRect(0,0,998,998);</script>
</body>
</html>It doesn't work only on IE 10.
How about IE 9 ?
It works great on IE 9.
What is Microsoft doing about IE 10 ?
I can't understand.
Is there anyone knows the solution about this ?
- Edited by Farer Lychnis Monday, November 19, 2012 7:30 PM
- Edited by Farer Lychnis Monday, November 19, 2012 7:30 PM
All Replies
-
Monday, November 19, 2012 7:38 PM
You can test this at w3schools.com.
I can't post any url yet.
-
Tuesday, November 20, 2012 6:43 AM
Hi,
use a validator to detect markup errors in your page. validator.w3.org or f12>Validate>HTML
your page lacks a <head> tag.
Line 3, Column 6: Element head is missing a required instance of child element title.<body>see MSDN - arc method for an example of using the canvas arc method.
Rob^_^
-
Tuesday, November 20, 2012 7:48 AM
Hi,
use a validator to detect markup errors in your page. validator.w3.org or f12>Validate>HTML
your page lacks a <head> tag.
Line 3, Column 6: Element head is missing a required instance of child element title.<body>Rob^_^
This source is from w3schools.com. Not from me.
This source works on Firefox, Chrome, Safari, Opera, Ie9.
Only IE 10 doesn't work.
Anyway thanks for your answer.
I'll try to fix it as you said. :)
- Edited by Farer Lychnis Tuesday, November 20, 2012 7:59 AM
-
Tuesday, November 20, 2012 7:56 AM
Anyway....The problem is not the thing you said.
Though I fixed 'head' tag error it still doesn't work too.
IE10 has a problem certainly.- Edited by Farer Lychnis Tuesday, November 20, 2012 7:58 AM
-
Tuesday, November 20, 2012 8:42 PM
Thanks for reporting this problem. This issue has been reported to the Canvas owner on the IE team.- Marked As Answer by Yanping WangMicrosoft Contingent Staff, Moderator Monday, November 26, 2012 3:35 AM
-
Tuesday, November 20, 2012 8:48 PM
Thanks for reporting this problem. This issue has been reported to the Canvas owner on the IE team.
ok. Thanks.
I hope to see IE 10 is getting better. :)
-
Wednesday, December 05, 2012 10:44 AMSee also:
http://connect.microsoft.com/IE/feedback/details/772169/canvas-clearrect-fails-if-clip-rectangle-has-non-integer-dimensions -
Saturday, December 08, 2012 9:38 AM
See also:
http://connect.microsoft.com/IE/feedback/details/772169/canvas-clearrect-fails-if-clip-rectangle-has-non-integer-dimensions
This page is invalid.
What's wrong with me ?
-
Tuesday, December 11, 2012 1:47 AM
Hi,
Please see the W3C's response to the w3schools website at http://w3fools.com
Regards.
Rob^_^
-
Thursday, December 13, 2012 1:08 PM
Hi,
Please see the W3C's response to the w3schools website at http://w3fools.com
Regards.
Rob^_^
Thanks. but...
My problem is not concerned with Markup such as 'title', 'head' but just 'canvas'.
I'm looking forward to see the patch about this.
- Edited by Farer Lychnis Thursday, December 13, 2012 1:09 PM


