Changeset 9001
- Timestamp:
- 03/09/08 08:05:29 (6 months ago)
- Files:
-
- spinoffs/prototype/trunk/CHANGELOG (modified) (1 diff)
- spinoffs/prototype/trunk/src/dom.js (modified) (1 diff)
- spinoffs/prototype/trunk/test/unit/dom.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/prototype/trunk/CHANGELOG
r9000 r9001 1 * Make Element#writeAttribute handle frameborder attribute in IE. Closes #11068. [staaky, Tobie Langel] 2 1 3 * Minor clean-up of selector.js. Closes #10844. [RQuadling] 2 4 spinoffs/prototype/trunk/src/dom.js
r8803 r9001 851 851 852 852 $w('colSpan rowSpan vAlign dateTime accessKey tabIndex ' + 853 'encType maxLength readOnly longDesc ').each(function(attr) {853 'encType maxLength readOnly longDesc frameBorder').each(function(attr) { 854 854 Element._attributeTranslations.write.names[attr.toLowerCase()] = attr; 855 855 Element._attributeTranslations.has[attr.toLowerCase()] = attr; spinoffs/prototype/trunk/test/unit/dom.html
r8800 r9001 1385 1385 assertEqual('2', table.readAttribute('cellspacing')); 1386 1386 assertEqual('3', table.readAttribute('cellpadding')); 1387 1388 var iframe = new Element('iframe', { frameborder: 0 }); 1389 assertIdentical(0, parseInt(iframe.readAttribute('frameborder'))); 1387 1390 }}, 1388 1391