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

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

Issue 114373004: Remove the SVGColor and SVGPaint DOM interfaces (were deprecated). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: text diff fix Created 7 years 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
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 ["Node", "object"], 122 ["Node", "object"],
123 ["NodeFilter", "object"], 123 ["NodeFilter", "object"],
124 ["NodeList", "object"], 124 ["NodeList", "object"],
125 ["Notation", "object"], 125 ["Notation", "object"],
126 ["OverflowEvent", "object"], 126 ["OverflowEvent", "object"],
127 ["ProcessingInstruction", "object"], 127 ["ProcessingInstruction", "object"],
128 ["ProgressEvent", "object"], 128 ["ProgressEvent", "object"],
129 ["Range", "object"], 129 ["Range", "object"],
130 ["Rect", "object"], 130 ["Rect", "object"],
131 ["SVGAngle", "object"], 131 ["SVGAngle", "object"],
132 ["SVGColor", "object"],
133 ["SVGGradientElement", "object"], 132 ["SVGGradientElement", "object"],
134 ["SVGLength", "object"], 133 ["SVGLength", "object"],
135 ["SVGMarkerElement", "object"], 134 ["SVGMarkerElement", "object"],
136 ["SVGPaint", "object"],
137 ["SVGPathSeg", "object"], 135 ["SVGPathSeg", "object"],
138 ["SVGPreserveAspectRatio", "object"], 136 ["SVGPreserveAspectRatio", "object"],
139 ["SVGRenderingIntent", "object"], 137 ["SVGRenderingIntent", "object"],
140 ["SVGTextContentElement", "object"], 138 ["SVGTextContentElement", "object"],
141 ["SVGTextPathElement", "object"], 139 ["SVGTextPathElement", "object"],
142 ["SVGTransform", "object"], 140 ["SVGTransform", "object"],
143 ["SVGUnitTypes", "object"], 141 ["SVGUnitTypes", "object"],
144 ["StyleSheet", "object"], 142 ["StyleSheet", "object"],
145 ["StyleSheetList", "object"], 143 ["StyleSheetList", "object"],
146 ["Text", "object"], 144 ["Text", "object"],
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 218
221 ["closed", "boolean"], 219 ["closed", "boolean"],
222 ["offscreenBuffering", "boolean"], 220 ["offscreenBuffering", "boolean"],
223 ]; 221 ];
224 222
225 // Also collect a list of only the property names. 223 // Also collect a list of only the property names.
226 var properties = []; 224 var properties = [];
227 for (var i = 0; i < propertyInfo.length; ++i) { 225 for (var i = 0; i < propertyInfo.length; ++i) {
228 properties.push(propertyInfo[i][0]); 226 properties.push(propertyInfo[i][0]);
229 } 227 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698