Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
|
Stephen White
2014/02/27 18:53:41
Tangentially: should we/do we have a test to check
| |
| 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 Loading... | |
| 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> |
| OLD | NEW |