| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 // pixel manipulation | 224 // pixel manipulation |
| 225 ImageData getImageData(in [Optional=DefaultIsUndefined] float sx, in [Op
tional=DefaultIsUndefined] float sy, | 225 ImageData getImageData(in [Optional=DefaultIsUndefined] float sx, in [Op
tional=DefaultIsUndefined] float sy, |
| 226 in [Optional=DefaultIsUndefined] float sw, in [Op
tional=DefaultIsUndefined] float sh) | 226 in [Optional=DefaultIsUndefined] float sw, in [Op
tional=DefaultIsUndefined] float sh) |
| 227 raises(DOMException); | 227 raises(DOMException); |
| 228 | 228 |
| 229 ImageData webkitGetImageDataHD(in [Optional=DefaultIsUndefined] float sx
, in [Optional=DefaultIsUndefined] float sy, | 229 ImageData webkitGetImageDataHD(in [Optional=DefaultIsUndefined] float sx
, in [Optional=DefaultIsUndefined] float sy, |
| 230 in [Optional=DefaultIsUndefined] float sw
, in [Optional=DefaultIsUndefined] float sh) | 230 in [Optional=DefaultIsUndefined] float sw
, in [Optional=DefaultIsUndefined] float sh) |
| 231 raises(DOMException); | 231 raises(DOMException); |
| 232 | 232 |
| 233 readonly attribute float webkitBackingStorePixelRatio; | 233 readonly attribute float webkitBackingStorePixelRatio; |
| 234 |
| 235 attribute boolean webkitImageSmoothingEnabled; |
| 234 }; | 236 }; |
| 235 | 237 |
| 236 } | 238 } |
| 237 | 239 |
| OLD | NEW |