- From: <bugzilla@jessica.w3.org>
- Date: Sun, 25 Nov 2012 23:47:28 +0000
- To: public-html-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=20078 Bug ID: 20078 Summary: Remove <canvas> element and replace to image URI with dynamic rendering Classification: Unclassified Product: HTML.next Version: unspecified Hardware: All OS: All Status: NEW Severity: normal Priority: P2 Component: default Assignee: dave.null@w3.org Reporter: alexei03a@gmail.com QA Contact: public-html-bugzilla@w3.org CC: mike@w3.org, robin@w3.org I have idea with new Canvas system. This system are script-based. <script type="application/javascript"> var canvas = URL.createCanvas("example", 150, 150); //Create Canvas 150x150 pixels var ctx = canvas.getContext("2d"); //Can be WebGL URL.fakeURL("http://broken.com/image.png", "canvas: example"); //Replace URL //var url = URL.getOriginalURL("http://broken.com/image.png"); //Secret URL for direct to original link //URL.fakeURL("http://broken.com/image.png", url); //You can retrive URL </script> <img src="canvas: example" alt="canvas"> <img src="http://broken.com/image.png" alt="canvas"> <!-- Faked, redirect to Canvas element. --> <video src="canvas: example"></video> <!-- Can Be Controlable --> My system need for dynamic animated images, dynamic videos and etc. -- You are receiving this mail because: You are the QA Contact for the bug.
Received on Sunday, 25 November 2012 23:47:32 UTC