Set a property of the the HTML5 video element using jsvideo[key] = value. Numbers and Booleans will be unboxed. @param jsvideo the HTML5 video element @param key @param value
(HTML5Video jsvideo, String key, Object value)
| 174 | * @param value |
| 175 | */ |
| 176 | public static void setProperty(HTML5Video jsvideo, String key, Object value) { |
| 177 | if (value instanceof Number) { |
| 178 | /** @j2sNative jsvideo[key] = +value; */ |
| 179 | } else if (value instanceof Boolean) { |
no outgoing calls