ie_vml.js (1902B)
1 /* 2 * Copyright 2009 The Closure Compiler Authors 3 * 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 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 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. 15 */ 16 17 /** 18 * @fileoverview Definitions for IE's vector markup language, or VML. 19 * 20 * @externs 21 * @author robbyw@google.com (Robby Walker) 22 */ 23 24 25 /** 26 * @type {Object|string} 27 * @see http://msdn.microsoft.com/en-us/library/bb263836(VS.85).aspx 28 */ 29 Element.prototype.coordorigin; 30 31 /** 32 * @type {Object|string} 33 * @see http://msdn.microsoft.com/en-us/library/bb263837(VS.85).aspx 34 */ 35 Element.prototype.coordsize; 36 37 /** 38 * @type {string} 39 * @see http://msdn.microsoft.com/en-us/library/bb263839(VS.85).aspx 40 */ 41 Element.prototype.fillcolor; 42 43 /** 44 * @type {boolean} 45 * @see http://msdn.microsoft.com/en-us/library/bb263840(VS.85).aspx 46 */ 47 Element.prototype.filled; 48 49 /** 50 * @type {string} 51 * @see http://msdn.microsoft.com/en-us/library/bb263871(VS.85).aspx 52 */ 53 Element.prototype.path; 54 55 /** 56 * @type {number|string} 57 * @see http://msdn.microsoft.com/en-us/library/bb263877(VS.85).aspx 58 */ 59 Element.prototype.rotation; 60 61 /** 62 * @type {string} 63 * @see http://msdn.microsoft.com/en-us/library/bb263881(VS.85).aspx 64 */ 65 Element.prototype.strokecolor; 66 67 /** 68 * @type {boolean} 69 * @see http://msdn.microsoft.com/en-us/library/bb263882(VS.85).aspx 70 */ 71 Element.prototype.stroked; 72 73 /** 74 * @type {number|string} 75 * @see http://msdn.microsoft.com/en-us/library/bb263883(VS.85).aspx 76 */ 77 Element.prototype.strokeweight;