Bug #20271 » rtehtmlarea_bugfix_10837_typo3_4-1.patch
typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (copie de travail) | ||
---|---|---|
for (i = attrs.length; --i >= 0 ;) {
|
||
a = attrs.item(i);
|
||
name = a.nodeName.toLowerCase();
|
||
if ((!a.specified && name != 'value') || /_moz|contenteditable|_msh/.test(name)) continue;
|
||
if ((!a.specified && name != 'value') || /_moz|contenteditable|_msh|complete/.test(name)) continue;
|
||
if (!HTMLArea.is_ie || name != "style") {
|
||
// IE5.5 reports wrong values. For this reason we extract the values directly from the root node.
|
||
// Using Gecko the values of href and src are converted to absolute links unless we get them using nodeValue()
|
- « Previous
- 1
- 2
- 3
- Next »