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

Side by Side Diff: LayoutTests/fast/dom/Window/resources/window-properties.js

Issue 1175513002: Removing Interface SVGRenderingIntent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // The property name and type. 1 // The property name and type.
2 var propertyInfo = [ 2 var propertyInfo = [
3 ["alert", "function"], 3 ["alert", "function"],
4 ["atob", "function"], 4 ["atob", "function"],
5 ["blur", "function"], 5 ["blur", "function"],
6 ["btoa", "function"], 6 ["btoa", "function"],
7 ["captureEvents", "function"], 7 ["captureEvents", "function"],
8 ["clearInterval", "function"], 8 ["clearInterval", "function"],
9 ["clearTimeout", "function"], 9 ["clearTimeout", "function"],
10 ["close", "function"], 10 ["close", "function"],
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 ["NodeList", "object"], 117 ["NodeList", "object"],
118 ["ProcessingInstruction", "object"], 118 ["ProcessingInstruction", "object"],
119 ["ProgressEvent", "object"], 119 ["ProgressEvent", "object"],
120 ["Range", "object"], 120 ["Range", "object"],
121 ["SVGAngle", "object"], 121 ["SVGAngle", "object"],
122 ["SVGGradientElement", "object"], 122 ["SVGGradientElement", "object"],
123 ["SVGLength", "object"], 123 ["SVGLength", "object"],
124 ["SVGMarkerElement", "object"], 124 ["SVGMarkerElement", "object"],
125 ["SVGPathSeg", "object"], 125 ["SVGPathSeg", "object"],
126 ["SVGPreserveAspectRatio", "object"], 126 ["SVGPreserveAspectRatio", "object"],
127 ["SVGRenderingIntent", "object"],
128 ["SVGTextContentElement", "object"], 127 ["SVGTextContentElement", "object"],
129 ["SVGTextPathElement", "object"], 128 ["SVGTextPathElement", "object"],
130 ["SVGTransform", "object"], 129 ["SVGTransform", "object"],
131 ["SVGUnitTypes", "object"], 130 ["SVGUnitTypes", "object"],
132 ["StyleSheet", "object"], 131 ["StyleSheet", "object"],
133 ["StyleSheetList", "object"], 132 ["StyleSheetList", "object"],
134 ["Text", "object"], 133 ["Text", "object"],
135 ["TextEvent", "object"], 134 ["TextEvent", "object"],
136 ["UIEvent", "object"], 135 ["UIEvent", "object"],
137 ["WheelEvent", "object"], 136 ["WheelEvent", "object"],
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 207
209 ["closed", "boolean"], 208 ["closed", "boolean"],
210 ["offscreenBuffering", "boolean"], 209 ["offscreenBuffering", "boolean"],
211 ]; 210 ];
212 211
213 // Also collect a list of only the property names. 212 // Also collect a list of only the property names.
214 var properties = []; 213 var properties = [];
215 for (var i = 0; i < propertyInfo.length; ++i) { 214 for (var i = 0; i < propertyInfo.length; ++i) {
216 properties.push(propertyInfo[i][0]); 215 properties.push(propertyInfo[i][0]);
217 } 216 }
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698