| 1402 | | // cannot set design mode if no display |
| 1403 | | if (this._iframe.style.display == 'none') |
| 1404 | | { |
| 1405 | | this._iframe.style.display = ''; |
| 1406 | | this._doc.designMode = 'on'; |
| 1407 | | this._iframe.style.display = 'none'; |
| 1408 | | } |
| 1409 | | else |
| 1410 | | { |
| 1411 | | this._doc.designMode = 'on'; |
| 1412 | | } |
| 1413 | | } catch (e) {} |
| | 1402 | // cannot set design mode if no display |
| | 1403 | if (this._iframe.style.display == 'none') |
| | 1404 | { |
| | 1405 | this._iframe.style.display = ''; |
| | 1406 | this._doc.designMode = 'on'; |
| | 1407 | this._iframe.style.display = 'none'; |
| | 1408 | } |
| | 1409 | else |
| | 1410 | { |
| | 1411 | this._doc.designMode = 'on'; |
| | 1412 | } |
| | 1413 | } catch (e) {} |
| | 1414 | } |