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

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

Issue 17239008: Remove XPathException (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
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 ["clearInterval", "function"], 7 ["clearInterval", "function"],
8 ["clearTimeout", "function"], 8 ["clearTimeout", "function"],
9 ["close", "function"], 9 ["close", "function"],
10 ["confirm", "function"], 10 ["confirm", "function"],
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 ["StyleSheet", "object"], 143 ["StyleSheet", "object"],
144 ["StyleSheetList", "object"], 144 ["StyleSheetList", "object"],
145 ["Text", "object"], 145 ["Text", "object"],
146 ["TextEvent", "object"], 146 ["TextEvent", "object"],
147 ["UIEvent", "object"], 147 ["UIEvent", "object"],
148 ["WheelEvent", "object"], 148 ["WheelEvent", "object"],
149 ["XMLDocument", "object"], 149 ["XMLDocument", "object"],
150 ["XMLHttpRequest", "object"], 150 ["XMLHttpRequest", "object"],
151 ["XMLSerializer", "object"], 151 ["XMLSerializer", "object"],
152 ["XPathEvaluator", "object"], 152 ["XPathEvaluator", "object"],
153 ["XPathException", "object"],
154 ["XPathResult", "object"], 153 ["XPathResult", "object"],
155 ["XSLTProcessor", "object"], 154 ["XSLTProcessor", "object"],
156 ["onload", "object"], 155 ["onload", "object"],
157 ["frames", "object"], 156 ["frames", "object"],
158 ["parent", "object"], 157 ["parent", "object"],
159 ["self", "object"], 158 ["self", "object"],
160 ["top", "object"], 159 ["top", "object"],
161 ["window", "object"], 160 ["window", "object"],
162 ["locationbar", "object"], 161 ["locationbar", "object"],
163 ["menubar", "object"], 162 ["menubar", "object"],
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 219
221 ["closed", "boolean"], 220 ["closed", "boolean"],
222 ["offscreenBuffering", "boolean"], 221 ["offscreenBuffering", "boolean"],
223 ]; 222 ];
224 223
225 // Also collect a list of only the property names. 224 // Also collect a list of only the property names.
226 var properties = []; 225 var properties = [];
227 for (var i = 0; i < propertyInfo.length; ++i) { 226 for (var i = 0; i < propertyInfo.length; ++i) {
228 properties.push(propertyInfo[i][0]); 227 properties.push(propertyInfo[i][0]);
229 } 228 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698