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

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

Issue 14200030: Remove XMLHttpRequestException in favor of DOMException (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix tests after rebasing... Created 7 years, 7 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 ["SVGTransform", "object"], 146 ["SVGTransform", "object"],
147 ["SVGUnitTypes", "object"], 147 ["SVGUnitTypes", "object"],
148 ["StyleSheet", "object"], 148 ["StyleSheet", "object"],
149 ["StyleSheetList", "object"], 149 ["StyleSheetList", "object"],
150 ["Text", "object"], 150 ["Text", "object"],
151 ["TextEvent", "object"], 151 ["TextEvent", "object"],
152 ["UIEvent", "object"], 152 ["UIEvent", "object"],
153 ["WheelEvent", "object"], 153 ["WheelEvent", "object"],
154 ["XMLDocument", "object"], 154 ["XMLDocument", "object"],
155 ["XMLHttpRequest", "object"], 155 ["XMLHttpRequest", "object"],
156 ["XMLHttpRequestException", "object"],
157 ["XMLSerializer", "object"], 156 ["XMLSerializer", "object"],
158 ["XPathEvaluator", "object"], 157 ["XPathEvaluator", "object"],
159 ["XPathException", "object"], 158 ["XPathException", "object"],
160 ["XPathResult", "object"], 159 ["XPathResult", "object"],
161 ["XSLTProcessor", "object"], 160 ["XSLTProcessor", "object"],
162 ["onload", "object"], 161 ["onload", "object"],
163 ["frames", "object"], 162 ["frames", "object"],
164 ["parent", "object"], 163 ["parent", "object"],
165 ["self", "object"], 164 ["self", "object"],
166 ["top", "object"], 165 ["top", "object"],
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 225
227 ["closed", "boolean"], 226 ["closed", "boolean"],
228 ["offscreenBuffering", "boolean"], 227 ["offscreenBuffering", "boolean"],
229 ]; 228 ];
230 229
231 // Also collect a list of only the property names. 230 // Also collect a list of only the property names.
232 var properties = []; 231 var properties = [];
233 for (var i = 0; i < propertyInfo.length; ++i) { 232 for (var i = 0; i < propertyInfo.length; ++i) {
234 properties.push(propertyInfo[i][0]); 233 properties.push(propertyInfo[i][0]);
235 } 234 }
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