Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: LayoutTests/fast/dom/gc-9.html

Issue 181693006: Refactoring source image usage in CanvasRenderingContext2D (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: applied last corrections Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 body { 4 body {
5 color: black; 5 color: black;
6 padding: 0px 0px 0px 0px; 6 padding: 0px 0px 0px 0px;
7 } 7 }
8 8
9 .hidden { 9 .hidden {
10 visibility: hidden; 10 visibility: hidden;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 // Any uses of "allow custom skip" represent bugs that need to be fixed. 114 // Any uses of "allow custom skip" represent bugs that need to be fixed.
115 115
116 var objectsToTest = [ 116 var objectsToTest = [
117 [ "document.implementation", "allow custom" ], // DOMImplementation 117 [ "document.implementation", "allow custom" ], // DOMImplementation
118 [ "document", "allow custom" ], 118 [ "document", "allow custom" ],
119 [ "document.body", "allow custom" ], 119 [ "document.body", "allow custom" ],
120 [ "document.body.attributes", "allow custom" ], // NamedNodeMap 120 [ "document.body.attributes", "allow custom" ], // NamedNodeMap
121 [ "document.getElementsByTagName('body')", "allow custom" ], // NodeList 121 [ "document.getElementsByTagName('body')", "allow custom" ], // NodeList
122 [ "document.getElementsByTagName('canvas')[0].getContext('2d')", "allow cust om" ], // CanvasRenderingContext2D 122 [ "document.getElementsByTagName('canvas')[0].getContext('2d')", "allow cust om" ], // CanvasRenderingContext2D
123 [ "document.getElementsByTagName('canvas')[0].getContext('2d').createLinearG radient(0, 0, 0, 0)" ], // CanvasGradient 123 [ "document.getElementsByTagName('canvas')[0].getContext('2d').createLinearG radient(0, 0, 0, 0)" ], // CanvasGradient
124 [ "document.getElementsByTagName('canvas')[0].getContext('2d').createPattern (new Image(), 'no-repeat')" ], // CanvasPattern 124 [ "document.getElementsByTagName('canvas')[0].getContext('2d').createPattern (document.getElementsByTagName('canvas')[0], 'no-repeat')" ], // CanvasPattern
125 [ "document.getElementsByTagName('select')[0].options", "allow custom" ], 125 [ "document.getElementsByTagName('select')[0].options", "allow custom" ],
126 [ "document.body.childNodes", "allow custom" ], 126 [ "document.body.childNodes", "allow custom" ],
127 127
128 [ "document.all", "allow custom" ], 128 [ "document.all", "allow custom" ],
129 [ "document.images", "allow custom" ], 129 [ "document.images", "allow custom" ],
130 [ "document.embeds", "allow custom" ], 130 [ "document.embeds", "allow custom" ],
131 [ "document.applets", "allow custom" ], 131 [ "document.applets", "allow custom" ],
132 [ "document.links", "allow custom" ], 132 [ "document.links", "allow custom" ],
133 [ "document.forms", "allow custom" ], 133 [ "document.forms", "allow custom" ],
134 [ "document.anchors", "allow custom" ], 134 [ "document.anchors", "allow custom" ],
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 <canvas></canvas> 204 <canvas></canvas>
205 <select></select> 205 <select></select>
206 <object name="object"></object> 206 <object name="object"></object>
207 <form></form> 207 <form></form>
208 <table><tbody><tr></tr></tbody></table> 208 <table><tbody><tr></tr></tbody></table>
209 <map></map> 209 <map></map>
210 </div> 210 </div>
211 211
212 </body> 212 </body>
213 </html> 213 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/canvas/drawImage-with-broken-image-expected.txt ('k') | LayoutTests/fast/dom/gc-9-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698