2 * Copyright 2008 The Closure Compiler Authors
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 * @fileoverview JavaScript Built-Ins that are not
19 * part of any specifications but are
20 * still needed in some project's build.
25 // Do we need an opera.js?
27 Window.prototype.opera;
28 Window.prototype.opera.postError;
30 /** @constructor */ function XSLTProcessor() {}
32 * @param {*=} opt_text
33 * @param {*=} opt_value
34 * @param {*=} opt_defaultSelected
35 * @param {*=} opt_selected
39 function Option(opt_text, opt_value, opt_defaultSelected, opt_selected) {}
42 // The "methods" object is a place to hang arbitrary external
43 // properties. It is a throwback to pre-typed days, and should
44 // not be used for any new definitions; it exists only to bridge
45 // the gap between the old way and the new way.