Changeset 7157
- Timestamp:
- 06/30/07 16:38:18 (1 year ago)
- Files:
-
- spinoffs/prototype/trunk/CHANGELOG (modified) (1 diff)
- spinoffs/prototype/trunk/src/prototype.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/prototype/trunk/CHANGELOG
r7140 r7157 1 1 *SVN* 2 3 * Temporary workaround for Prototype.BrowserFeatures.SpecificElementExtensions incorrectly evaluating to true on iPhone. (needs further investigation) [sam] 2 4 3 5 * The action for Form#request defaults to the current URL if the "action" attribute is empty. (This is what most of the major browsers do.) Fixes #8483. [Tomas, Mislav Marohnić] spinoffs/prototype/trunk/src/prototype.js
r7014 r7157 15 15 ElementExtensions: !!window.HTMLElement, 16 16 SpecificElementExtensions: 17 navigator.userAgent.indexOf('iPhone') == -1 && 17 18 (document.createElement('div').__proto__ !== 18 19 document.createElement('form').__proto__)