1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
|
// Copyright 2006 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @fileoverview Class to encapsulate an editable field that blends in with
* the style of the page. The field can be fixed height, grow with its
* contents, or have a min height after which it grows to its contents.
* This is a goog.editor.Field, but with blending and sizing capabilities,
* and avoids using an iframe whenever possible.
*
* @author nicksantos@google.com (Nick Santos)
* @see ../demos/editor/seamlessfield.html
*/
goog.provide('goog.editor.SeamlessField');
goog.require('goog.cssom.iframe.style');
goog.require('goog.dom');
goog.require('goog.dom.Range');
goog.require('goog.dom.TagName');
goog.require('goog.dom.safe');
goog.require('goog.editor.BrowserFeature');
goog.require('goog.editor.Field');
goog.require('goog.editor.icontent');
goog.require('goog.editor.icontent.FieldFormatInfo');
goog.require('goog.editor.icontent.FieldStyleInfo');
goog.require('goog.editor.node');
goog.require('goog.events');
goog.require('goog.events.EventType');
goog.require('goog.html.SafeHtml');
goog.require('goog.log');
goog.require('goog.style');
/**
* This class encapsulates an editable field that blends in with the
* surrounding page.
* To see events fired by this object, please see the base class.
*
* @param {string} id An identifer for the field. This is used to find the
* field and the element associated with this field.
* @param {Document=} opt_doc The document that the element with the given
* id can be found it.
* @constructor
* @extends {goog.editor.Field}
*/
goog.editor.SeamlessField = function(id, opt_doc) {
goog.editor.Field.call(this, id, opt_doc);
};
goog.inherits(goog.editor.SeamlessField, goog.editor.Field);
/**
* @override
*/
goog.editor.SeamlessField.prototype.logger =
goog.log.getLogger('goog.editor.SeamlessField');
// Functions dealing with field sizing.
/**
* The key used for listening for the "dragover" event.
* @type {goog.events.Key}
* @private
*/
goog.editor.SeamlessField.prototype.listenForDragOverEventKey_;
/**
* The key used for listening for the iframe "load" event.
* @type {goog.events.Key}
* @private
*/
goog.editor.SeamlessField.prototype.listenForIframeLoadEventKey_;
/**
* Sets the min height of this editable field's iframe. Only used in growing
* mode when an iframe is used. This will cause an immediate field sizing to
* update the field if necessary based on the new min height.
* @param {number} height The min height specified as a number of pixels,
* e.g., 75.
*/
goog.editor.SeamlessField.prototype.setMinHeight = function(height) {
if (height == this.minHeight_) {
// Do nothing if the min height isn't changing.
return;
}
this.minHeight_ = height;
if (this.usesIframe()) {
this.doFieldSizingGecko();
}
};
/**
* Whether the field should be rendered with a fixed height, or should expand
* to fit its contents.
* @type {boolean}
* @private
*/
goog.editor.SeamlessField.prototype.isFixedHeight_ = false;
/**
* Whether the fixed-height handling has been overridden manually.
* @type {boolean}
* @private
*/
goog.editor.SeamlessField.prototype.isFixedHeightOverridden_ = false;
/**
* @return {boolean} Whether the field should be rendered with a fixed
* height, or should expand to fit its contents.
* @override
*/
goog.editor.SeamlessField.prototype.isFixedHeight = function() {
return this.isFixedHeight_;
};
/**
* @param {boolean} newVal Explicitly set whether the field should be
* of a fixed-height. This overrides auto-detection.
*/
goog.editor.SeamlessField.prototype.overrideFixedHeight = function(newVal) {
this.isFixedHeight_ = newVal;
this.isFixedHeightOverridden_ = true;
};
/**
* Auto-detect whether the current field should have a fixed height.
* @private
*/
goog.editor.SeamlessField.prototype.autoDetectFixedHeight_ = function() {
if (!this.isFixedHeightOverridden_) {
var originalElement = this.getOriginalElement();
if (originalElement) {
this.isFixedHeight_ =
goog.style.getComputedOverflowY(originalElement) == 'auto';
}
}
};
/**
* Resize the iframe in response to the wrapper div changing size.
* @private
*/
goog.editor.SeamlessField.prototype.handleOuterDocChange_ = function() {
if (this.isEventStopped(goog.editor.Field.EventType.CHANGE)) {
return;
}
this.sizeIframeToWrapperGecko_();
};
/**
* Sizes the iframe to its body's height.
* @private
*/
goog.editor.SeamlessField.prototype.sizeIframeToBodyHeightGecko_ = function() {
if (this.acquireSizeIframeLockGecko_()) {
var resized = false;
var ifr = this.getEditableIframe();
if (ifr) {
var fieldHeight = this.getIframeBodyHeightGecko_();
if (this.minHeight_) {
fieldHeight = Math.max(fieldHeight, this.minHeight_);
}
if (parseInt(goog.style.getStyle(ifr, 'height'), 10) != fieldHeight) {
ifr.style.height = fieldHeight + 'px';
resized = true;
}
}
this.releaseSizeIframeLockGecko_();
if (resized) {
this.dispatchEvent(goog.editor.Field.EventType.IFRAME_RESIZED);
}
}
};
/**
* @return {number} The height of the editable iframe's body.
* @private
*/
goog.editor.SeamlessField.prototype.getIframeBodyHeightGecko_ = function() {
var ifr = this.getEditableIframe();
var body = ifr.contentDocument.body;
var htmlElement = /** @type {!HTMLElement} */ (body.parentNode);
// If the iframe's height is 0, then the offsetHeight/scrollHeight of the
// HTML element in the iframe can be totally wack (i.e. too large
// by 50-500px). Also, in standard's mode the clientHeight is 0.
if (parseInt(goog.style.getStyle(ifr, 'height'), 10) === 0) {
goog.style.setStyle(ifr, 'height', 1 + 'px');
}
var fieldHeight;
if (goog.editor.node.isStandardsMode(body)) {
// If in standards-mode,
// grab the HTML element as it will contain all the field's
// contents. The body's height, for example, will not include that of
// floated images at the bottom in standards mode.
// Note that this value include all scrollbars *except* for scrollbars
// on the HTML element itself.
fieldHeight = htmlElement.offsetHeight;
} else {
// In quirks-mode, the body-element always seems
// to size to the containing window. The html-element however,
// sizes to the content, and can thus end up with a value smaller
// than its child body-element if the content is shrinking.
// We want to make the iframe shrink too when the content shrinks,
// so rather than size the iframe to the body-element, size it to
// the html-element.
fieldHeight = htmlElement.scrollHeight;
// If there is a horizontal scroll, add in the thickness of the
// scrollbar.
if (htmlElement.clientHeight != htmlElement.offsetHeight) {
fieldHeight += goog.editor.SeamlessField.getScrollbarWidth_();
}
}
return fieldHeight;
};
/**
* Grabs the width of a scrollbar from the browser and caches the result.
* @return {number} The scrollbar width in pixels.
* @private
*/
goog.editor.SeamlessField.getScrollbarWidth_ = function() {
return goog.editor.SeamlessField.scrollbarWidth_ ||
(goog.editor.SeamlessField.scrollbarWidth_ =
goog.style.getScrollbarWidth());
};
/**
* Sizes the iframe to its container div's width. The width of the div
* is controlled by its containing context, not by its contents.
* if it extends outside of it's contents, then it gets a horizontal scroll.
* @private
*/
goog.editor.SeamlessField.prototype.sizeIframeToWrapperGecko_ = function() {
if (this.acquireSizeIframeLockGecko_()) {
var ifr = this.getEditableIframe();
var field = this.getElement();
var resized = false;
if (ifr && field) {
var fieldPaddingBox;
var widthDiv = /** @type {!HTMLElement} */ (ifr.parentNode);
var width = widthDiv.offsetWidth;
if (parseInt(goog.style.getStyle(ifr, 'width'), 10) != width) {
fieldPaddingBox = goog.style.getPaddingBox(field);
ifr.style.width = width + 'px';
field.style.width =
width - fieldPaddingBox.left - fieldPaddingBox.right + 'px';
resized = true;
}
var height = widthDiv.offsetHeight;
if (this.isFixedHeight() &&
parseInt(goog.style.getStyle(ifr, 'height'), 10) != height) {
if (!fieldPaddingBox) {
fieldPaddingBox = goog.style.getPaddingBox(field);
}
ifr.style.height = height + 'px';
field.style.height =
height - fieldPaddingBox.top - fieldPaddingBox.bottom + 'px';
resized = true;
}
}
this.releaseSizeIframeLockGecko_();
if (resized) {
this.dispatchEvent(goog.editor.Field.EventType.IFRAME_RESIZED);
}
}
};
/**
* Perform all the sizing immediately.
*/
goog.editor.SeamlessField.prototype.doFieldSizingGecko = function() {
// Because doFieldSizingGecko can be called after a setTimeout
// it is possible that the field has been destroyed before this call
// to do the sizing is executed. Check for field existence and do nothing
// if it has already been destroyed.
if (this.getElement()) {
// The order of operations is important here. Sizing the iframe to the
// wrapper could cause the width to change, which could change the line
// wrapping, which could change the body height. So we need to do that
// first, then size the iframe to fit the body height.
this.sizeIframeToWrapperGecko_();
if (!this.isFixedHeight()) {
this.sizeIframeToBodyHeightGecko_();
}
}
};
/**
* Acquires a lock on resizing the field iframe. This is used to ensure that
* modifications we make while in a mutation event handler don't cause
* infinite loops.
* @return {boolean} False if the lock is already acquired.
* @private
*/
goog.editor.SeamlessField.prototype.acquireSizeIframeLockGecko_ = function() {
if (this.sizeIframeLock_) {
return false;
}
return this.sizeIframeLock_ = true;
};
/**
* Releases a lock on resizing the field iframe. This is used to ensure that
* modifications we make while in a mutation event handler don't cause
* infinite loops.
* @private
*/
goog.editor.SeamlessField.prototype.releaseSizeIframeLockGecko_ = function() {
this.sizeIframeLock_ = false;
};
// Functions dealing with blending in with the surrounding page.
/**
* String containing the css rules that, if applied to a document's body,
* would style that body as if it were the original element we made editable.
* See goog.cssom.iframe.style.getElementContext for more details.
* @type {string}
* @private
*/
goog.editor.SeamlessField.prototype.iframeableCss_ = '';
/**
* Gets the css rules that should be used to style an iframe's body as if it
* were the original element that we made editable.
* @param {boolean=} opt_forceRegeneration Set to true to not read the cached
* copy and instead completely regenerate the css rules.
* @return {string} The string containing the css rules to use.
*/
goog.editor.SeamlessField.prototype.getIframeableCss = function(
opt_forceRegeneration) {
if (!this.iframeableCss_ || opt_forceRegeneration) {
var originalElement = this.getOriginalElement();
if (originalElement) {
this.iframeableCss_ = goog.cssom.iframe.style.getElementContext(
originalElement, opt_forceRegeneration);
}
}
return this.iframeableCss_;
};
/**
* Sets the css rules that should be used inside the editable iframe.
* Note: to clear the css cache between makeNotEditable/makeEditable,
* call this with "" as iframeableCss.
* TODO(user): Unify all these css setting methods + Nick's open
* CL. This is getting ridiculous.
* @param {string} iframeableCss String containing the css rules to use.
*/
goog.editor.SeamlessField.prototype.setIframeableCss = function(iframeableCss) {
this.iframeableCss_ = iframeableCss;
};
/**
* Used to ensure that CSS stylings are only installed once for none
* iframe seamless mode.
* TODO(user): Make it a formal part of the API that you can only
* set one set of styles globally.
* In seamless, non-iframe mode, all the stylings would go in the
* same document and conflict.
* @type {boolean}
* @private
*/
goog.editor.SeamlessField.haveInstalledCss_ = false;
// Overridden methods.
/** @override */
goog.editor.SeamlessField.prototype.usesIframe = function() {
// TODO(user): Switch Firefox to using contentEditable
// rather than designMode iframe once contentEditable support
// is less buggy.
return !goog.editor.BrowserFeature.HAS_CONTENT_EDITABLE;
};
/** @override */
goog.editor.SeamlessField.prototype.setupMutationEventHandlersGecko =
function() {
goog.editor.SeamlessField.superClass_.setupMutationEventHandlersGecko.call(
this);
if (this.usesIframe()) {
var iframe = this.getEditableIframe();
var outerDoc = iframe.ownerDocument;
this.eventRegister.listen(
outerDoc, goog.editor.Field.MUTATION_EVENTS_GECKO,
this.handleOuterDocChange_, true);
// If the images load after we do the initial sizing, then this will
// force a field resize.
this.listenForIframeLoadEventKey_ = goog.events.listenOnce(
this.getEditableDomHelper().getWindow(), goog.events.EventType.LOAD,
this.sizeIframeToBodyHeightGecko_, true, this);
this.eventRegister.listen(
outerDoc, 'DOMAttrModified',
goog.bind(this.handleDomAttrChange, this, this.handleOuterDocChange_),
true);
}
};
/** @override */
goog.editor.SeamlessField.prototype.handleChange = function() {
if (this.isEventStopped(goog.editor.Field.EventType.CHANGE)) {
return;
}
goog.editor.SeamlessField.superClass_.handleChange.call(this);
if (this.usesIframe()) {
this.sizeIframeToBodyHeightGecko_();
}
};
/** @override */
goog.editor.SeamlessField.prototype.dispatchBlur = function() {
if (this.isEventStopped(goog.editor.Field.EventType.BLUR)) {
return;
}
goog.editor.SeamlessField.superClass_.dispatchBlur.call(this);
// Clear the selection and restore the current range back after collapsing
// it. The ideal solution would have been to just leave the range intact; but
// when there are multiple fields present on the page, its important that
// the selection isn't retained when we switch between the fields. We also
// have to make sure that the cursor position is retained when we tab in and
// out of a field and our approach addresses both these issues.
// Another point to note is that we do it on a setTimeout to allow for
// DOM modifications on blur. Otherwise, something like setLoremIpsum will
// leave a blinking cursor in the field even though it's blurred.
if (!goog.editor.BrowserFeature.HAS_CONTENT_EDITABLE &&
!goog.editor.BrowserFeature.CLEARS_SELECTION_WHEN_FOCUS_LEAVES) {
var win = this.getEditableDomHelper().getWindow();
var dragging = false;
goog.events.unlistenByKey(this.listenForDragOverEventKey_);
this.listenForDragOverEventKey_ = goog.events.listenOnce(
win.document.body, 'dragover', function() { dragging = true; });
goog.global.setTimeout(goog.bind(function() {
// Do not clear the selection if we're only dragging text.
// This addresses a bug on FF1.5/linux where dragging fires a blur,
// but clearing the selection confuses Firefox's drag-and-drop
// implementation. For more info, see http://b/1061064
if (!dragging) {
if (this.editableDomHelper) {
var rng = this.getRange();
// If there are multiple fields on a page, we need to make sure that
// the selection isn't retained when we switch between fields. We
// could have collapsed the range but there is a bug in GECKO where
// the selection stays highlighted even though its backing range is
// collapsed (http://b/1390115). To get around this, we clear the
// selection and restore the collapsed range back in. Restoring the
// range is important so that the cursor stays intact when we tab out
// and into a field (See http://b/1790301 for additional details on
// this).
var iframeWindow = this.editableDomHelper.getWindow();
goog.dom.Range.clearSelection(iframeWindow);
if (rng) {
rng.collapse(true);
rng.select();
}
}
}
}, this), 0);
}
};
/** @override */
goog.editor.SeamlessField.prototype.turnOnDesignModeGecko = function() {
goog.editor.SeamlessField.superClass_.turnOnDesignModeGecko.call(this);
var doc = this.getEditableDomHelper().getDocument();
doc.execCommand('enableInlineTableEditing', false, 'false');
doc.execCommand('enableObjectResizing', false, 'false');
};
/** @override */
goog.editor.SeamlessField.prototype.installStyles = function() {
if (!this.usesIframe()) {
if (!goog.editor.SeamlessField.haveInstalledCss_) {
if (this.cssStyles.getTypedStringValue()) {
goog.style.installSafeStyleSheet(this.cssStyles, this.getElement());
}
// TODO(user): this should be reset to false when the editor is quit.
// In non-iframe mode, CSS styles should only be instaled once.
goog.editor.SeamlessField.haveInstalledCss_ = true;
}
}
};
/** @override */
goog.editor.SeamlessField.prototype.makeEditableInternal = function(
opt_iframeSrc) {
if (this.usesIframe()) {
goog.editor.SeamlessField.superClass_.makeEditableInternal.call(
this, opt_iframeSrc);
} else {
var field = this.getOriginalElement();
if (field) {
this.setupFieldObject(field);
field.contentEditable = true;
this.injectContents(field.innerHTML, field);
this.handleFieldLoad();
}
}
};
/** @override */
goog.editor.SeamlessField.prototype.handleFieldLoad = function() {
if (this.usesIframe()) {
// If the CSS inheriting code screws up (e.g. makes fonts too large) and
// the field is sized off in goog.editor.Field.makeIframeField, then we need
// to size it correctly, but it needs to be visible for the browser
// to have fully rendered it. We need to put this on a timeout to give
// the browser time to render.
var self = this;
goog.global.setTimeout(function() { self.doFieldSizingGecko(); }, 0);
}
goog.editor.SeamlessField.superClass_.handleFieldLoad.call(this);
};
/** @override */
goog.editor.SeamlessField.prototype.getIframeAttributes = function() {
return {'frameBorder': 0, 'style': 'padding:0;'};
};
/** @override */
goog.editor.SeamlessField.prototype.attachIframe = function(iframe) {
this.autoDetectFixedHeight_();
var field = this.getOriginalElement();
var dh = goog.dom.getDomHelper(field);
// Grab the width/height values of the field before modifying any CSS
// as some of the modifications affect its size (e.g. innerHTML='')
// Here, we set the size of the field to fixed so there's not too much
// jiggling when we set the innerHTML of the field.
var oldWidth = field.style.width;
var oldHeight = field.style.height;
goog.style.setStyle(field, 'visibility', 'hidden');
// If there is a floated element at the bottom of the field,
// then it needs a clearing div at the end to cause the clientHeight
// to contain the entire field.
// Also, with css re-writing, the margins of the first/last
// paragraph don't seem to get included in the clientHeight. Specifically,
// the extra divs below force the field's clientHeight to include the
// margins on the first and last elements contained within it.
var startDiv = dh.createDom(
goog.dom.TagName.DIV,
{'style': 'height:0;clear:both', 'innerHTML': ' '});
var endDiv = startDiv.cloneNode(true);
field.insertBefore(startDiv, field.firstChild);
goog.dom.appendChild(field, endDiv);
var contentBox = goog.style.getContentBoxSize(field);
var width = contentBox.width;
var height = contentBox.height;
var html = '';
if (this.isFixedHeight()) {
html = ' ';
goog.style.setStyle(field, 'position', 'relative');
goog.style.setStyle(field, 'overflow', 'visible');
goog.style.setStyle(iframe, 'position', 'absolute');
goog.style.setStyle(iframe, 'top', '0');
goog.style.setStyle(iframe, 'left', '0');
}
goog.style.setSize(field, width, height);
// In strict mode, browsers put blank space at the bottom and right
// if a field when it has an iframe child, to fill up the remaining line
// height. So make the line height = 0.
if (goog.editor.node.isStandardsMode(field)) {
this.originalFieldLineHeight_ = field.style.lineHeight;
goog.style.setStyle(field, 'lineHeight', '0');
}
goog.editor.node.replaceInnerHtml(field, html);
// Set the initial size
goog.style.setSize(iframe, width, height);
goog.style.setSize(field, oldWidth, oldHeight);
goog.style.setStyle(field, 'visibility', '');
goog.dom.appendChild(field, iframe);
// Only write if its not IE HTTPS in which case we're waiting for load.
if (!this.shouldLoadAsynchronously()) {
var doc = iframe.contentWindow.document;
if (goog.editor.node.isStandardsMode(iframe.ownerDocument)) {
doc.open();
var emptyHtml = goog.html.SafeHtml.concat(
goog.html.SafeHtml.DOCTYPE_HTML, goog.html.SafeHtml.create('html'));
goog.dom.safe.documentWrite(doc, emptyHtml);
doc.close();
}
}
};
/** @override */
goog.editor.SeamlessField.prototype.getFieldFormatInfo = function(extraStyles) {
var originalElement = this.getOriginalElement();
if (originalElement) {
return new goog.editor.icontent.FieldFormatInfo(
this.id, goog.editor.node.isStandardsMode(originalElement), true,
this.isFixedHeight(), extraStyles);
}
throw new Error('no field');
};
/** @override */
goog.editor.SeamlessField.prototype.writeIframeContent = function(
iframe, innerHtml, extraStyles) {
// For seamless iframes, hide the iframe while we're laying it out to
// prevent the flicker.
goog.style.setStyle(iframe, 'visibility', 'hidden');
var formatInfo = this.getFieldFormatInfo(extraStyles);
var styleInfo = new goog.editor.icontent.FieldStyleInfo(
this.getOriginalElement(),
this.cssStyles.getTypedStringValue() + this.getIframeableCss());
goog.editor.icontent.writeNormalInitialBlendedIframe(
formatInfo, innerHtml, styleInfo, iframe);
this.doFieldSizingGecko();
goog.style.setStyle(iframe, 'visibility', 'visible');
};
/** @override */
goog.editor.SeamlessField.prototype.restoreDom = function() {
// TODO(user): Consider only removing the iframe if we are
// restoring the original node.
if (this.usesIframe()) {
goog.dom.removeNode(this.getEditableIframe());
}
};
/** @override */
goog.editor.SeamlessField.prototype.clearListeners = function() {
goog.events.unlistenByKey(this.listenForDragOverEventKey_);
goog.events.unlistenByKey(this.listenForIframeLoadEventKey_);
goog.editor.SeamlessField.base(this, 'clearListeners');
};
|