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

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

Issue 959643002: Remove the overflowchanged event with a runtime flag (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tests Created 5 years, 10 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
« 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 ["HTMLTitleElement", "object"], 109 ["HTMLTitleElement", "object"],
110 ["HTMLUListElement", "object"], 110 ["HTMLUListElement", "object"],
111 ["KeyboardEvent", "object"], 111 ["KeyboardEvent", "object"],
112 ["MediaList", "object"], 112 ["MediaList", "object"],
113 ["MouseEvent", "object"], 113 ["MouseEvent", "object"],
114 ["MutationEvent", "object"], 114 ["MutationEvent", "object"],
115 ["NamedNodeMap", "object"], 115 ["NamedNodeMap", "object"],
116 ["Node", "object"], 116 ["Node", "object"],
117 ["NodeFilter", "object"], 117 ["NodeFilter", "object"],
118 ["NodeList", "object"], 118 ["NodeList", "object"],
119 ["OverflowEvent", "object"],
120 ["ProcessingInstruction", "object"], 119 ["ProcessingInstruction", "object"],
121 ["ProgressEvent", "object"], 120 ["ProgressEvent", "object"],
122 ["Range", "object"], 121 ["Range", "object"],
123 ["SVGAngle", "object"], 122 ["SVGAngle", "object"],
124 ["SVGGradientElement", "object"], 123 ["SVGGradientElement", "object"],
125 ["SVGLength", "object"], 124 ["SVGLength", "object"],
126 ["SVGMarkerElement", "object"], 125 ["SVGMarkerElement", "object"],
127 ["SVGPathSeg", "object"], 126 ["SVGPathSeg", "object"],
128 ["SVGPreserveAspectRatio", "object"], 127 ["SVGPreserveAspectRatio", "object"],
129 ["SVGRenderingIntent", "object"], 128 ["SVGRenderingIntent", "object"],
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 209
211 ["closed", "boolean"], 210 ["closed", "boolean"],
212 ["offscreenBuffering", "boolean"], 211 ["offscreenBuffering", "boolean"],
213 ]; 212 ];
214 213
215 // Also collect a list of only the property names. 214 // Also collect a list of only the property names.
216 var properties = []; 215 var properties = [];
217 for (var i = 0; i < propertyInfo.length; ++i) { 216 for (var i = 0; i < propertyInfo.length; ++i) {
218 properties.push(propertyInfo[i][0]); 217 properties.push(propertyInfo[i][0]);
219 } 218 }
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