2 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license
\r
7 * @fileOverview Defines the {@link CKEDITOR.dom.element} class, which
\r
8 * represents a DOM element.
\r
12 * Represents a DOM element.
\r
14 * @augments CKEDITOR.dom.node
\r
15 * @param {Object|String} element A native DOM element or the element name for
\r
17 * @param {CKEDITOR.dom.document} [ownerDocument] The document that will contain
\r
18 * the element in case of element creation.
\r
20 * // Create a new <span> element.
\r
21 * var element = new CKEDITOR.dom.element( 'span' );
\r
23 * // Create an element based on a native DOM element.
\r
24 * var element = new CKEDITOR.dom.element( document.getElementById( 'myId' ) );
\r
26 CKEDITOR.dom.element = function( element, ownerDocument )
\r
28 if ( typeof element == 'string' )
\r
29 element = ( ownerDocument ? ownerDocument.$ : document ).createElement( element );
\r
31 // Call the base constructor (we must not call CKEDITOR.dom.node).
\r
32 CKEDITOR.dom.domObject.call( this, element );
\r
35 // PACKAGER_RENAME( CKEDITOR.dom.element )
\r
38 * The the {@link CKEDITOR.dom.element} representing and element. If the
\r
39 * element is a native DOM element, it will be transformed into a valid
\r
40 * CKEDITOR.dom.element object.
\r
41 * @returns {CKEDITOR.dom.element} The transformed element.
\r
43 * var element = new CKEDITOR.dom.element( 'span' );
\r
44 * alert( element == <b>CKEDITOR.dom.element.get( element )</b> ); "true"
\r
46 * var element = document.getElementById( 'myElement' );
\r
47 * alert( <b>CKEDITOR.dom.element.get( element )</b>.getName() ); e.g. "p"
\r
49 CKEDITOR.dom.element.get = function( element )
\r
51 return element && ( element.$ ? element : new CKEDITOR.dom.element( element ) );
\r
54 CKEDITOR.dom.element.prototype = new CKEDITOR.dom.node();
\r
57 * Creates an instance of the {@link CKEDITOR.dom.element} class based on the
\r
58 * HTML representation of an element.
\r
59 * @param {String} html The element HTML. It should define only one element in
\r
60 * the "root" level. The "root" element can have child nodes, but not
\r
62 * @returns {CKEDITOR.dom.element} The element instance.
\r
64 * var element = <b>CKEDITOR.dom.element.createFromHtml( '<strong class="anyclass">My element</strong>' )</b>;
\r
65 * alert( element.getName() ); // "strong"
\r
67 CKEDITOR.dom.element.createFromHtml = function( html, ownerDocument )
\r
69 var temp = new CKEDITOR.dom.element( 'div', ownerDocument );
\r
70 temp.setHtml( html );
\r
72 // When returning the node, remove it from its parent to detach it.
\r
73 return temp.getFirst().remove();
\r
76 CKEDITOR.dom.element.setMarker = function( database, element, name, value )
\r
78 var id = element.getCustomData( 'list_marker_id' ) ||
\r
79 ( element.setCustomData( 'list_marker_id', CKEDITOR.tools.getNextNumber() ).getCustomData( 'list_marker_id' ) ),
\r
80 markerNames = element.getCustomData( 'list_marker_names' ) ||
\r
81 ( element.setCustomData( 'list_marker_names', {} ).getCustomData( 'list_marker_names' ) );
\r
82 database[id] = element;
\r
83 markerNames[name] = 1;
\r
85 return element.setCustomData( name, value );
\r
88 CKEDITOR.dom.element.clearAllMarkers = function( database )
\r
90 for ( var i in database )
\r
91 CKEDITOR.dom.element.clearMarkers( database, database[i], true );
\r
94 CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatabase )
\r
96 var names = element.getCustomData( 'list_marker_names' ),
\r
97 id = element.getCustomData( 'list_marker_id' );
\r
98 for ( var i in names )
\r
99 element.removeCustomData( i );
\r
100 element.removeCustomData( 'list_marker_names' );
\r
101 if ( removeFromDatabase )
\r
103 element.removeCustomData( 'list_marker_id' );
\r
104 delete database[id];
\r
108 CKEDITOR.tools.extend( CKEDITOR.dom.element.prototype,
\r
109 /** @lends CKEDITOR.dom.element.prototype */
\r
112 * The node type. This is a constant value set to
\r
113 * {@link CKEDITOR.NODE_ELEMENT}.
\r
117 type : CKEDITOR.NODE_ELEMENT,
\r
120 * Adds a CSS class to the element. It appends the class to the
\r
121 * already existing names.
\r
122 * @param {String} className The name of the class to be added.
\r
124 * var element = new CKEDITOR.dom.element( 'div' );
\r
125 * element.addClass( 'classA' ); // <div class="classA">
\r
126 * element.addClass( 'classB' ); // <div class="classA classB">
\r
127 * element.addClass( 'classA' ); // <div class="classA classB">
\r
129 addClass : function( className )
\r
131 var c = this.$.className;
\r
134 var regex = new RegExp( '(?:^|\\s)' + className + '(?:\\s|$)', '' );
\r
135 if ( !regex.test( c ) )
\r
136 c += ' ' + className;
\r
138 this.$.className = c || className;
\r
142 * Removes a CSS class name from the elements classes. Other classes
\r
143 * remain untouched.
\r
144 * @param {String} className The name of the class to remove.
\r
146 * var element = new CKEDITOR.dom.element( 'div' );
\r
147 * element.addClass( 'classA' ); // <div class="classA">
\r
148 * element.addClass( 'classB' ); // <div class="classA classB">
\r
149 * element.removeClass( 'classA' ); // <div class="classB">
\r
150 * element.removeClass( 'classB' ); // <div>
\r
152 removeClass : function( className )
\r
154 var c = this.getAttribute( 'class' );
\r
157 var regex = new RegExp( '(?:^|\\s+)' + className + '(?=\\s|$)', 'i' );
\r
158 if ( regex.test( c ) )
\r
160 c = c.replace( regex, '' ).replace( /^\s+/, '' );
\r
163 this.setAttribute( 'class', c );
\r
165 this.removeAttribute( 'class' );
\r
170 hasClass : function( className )
\r
172 var regex = new RegExp( '(?:^|\\s+)' + className + '(?=\\s|$)', '' );
\r
173 return regex.test( this.getAttribute('class') );
\r
177 * Append a node as a child of this element.
\r
178 * @param {CKEDITOR.dom.node|String} node The node or element name to be
\r
180 * @param {Boolean} [toStart] Indicates that the element is to be
\r
181 * appended at the start.
\r
182 * @returns {CKEDITOR.dom.node} The appended node.
\r
184 * var p = new CKEDITOR.dom.element( 'p' );
\r
186 * var strong = new CKEDITOR.dom.element( 'strong' );
\r
187 * <b>p.append( strong );</b>
\r
189 * var em = <b>p.append( 'em' );</b>
\r
191 * // result: "<p><strong></strong><em></em></p>"
\r
193 append : function( node, toStart )
\r
195 if ( typeof node == 'string' )
\r
196 node = this.getDocument().createElement( node );
\r
199 this.$.insertBefore( node.$, this.$.firstChild );
\r
201 this.$.appendChild( node.$ );
\r
206 appendHtml : function( html )
\r
208 if ( !this.$.childNodes.length )
\r
209 this.setHtml( html );
\r
212 var temp = new CKEDITOR.dom.element( 'div', this.getDocument() );
\r
213 temp.setHtml( html );
\r
214 temp.moveChildren( this );
\r
219 * Append text to this element.
\r
220 * @param {String} text The text to be appended.
\r
221 * @returns {CKEDITOR.dom.node} The appended node.
\r
223 * var p = new CKEDITOR.dom.element( 'p' );
\r
224 * p.appendText( 'This is' );
\r
225 * p.appendText( ' some text' );
\r
227 * // result: "<p>This is some text</p>"
\r
229 appendText : function( text )
\r
231 if ( this.$.text != undefined )
\r
232 this.$.text += text;
\r
234 this.append( new CKEDITOR.dom.text( text ) );
\r
237 appendBogus : function()
\r
239 var lastChild = this.getLast() ;
\r
241 // Ignore empty/spaces text.
\r
242 while ( lastChild && lastChild.type == CKEDITOR.NODE_TEXT && !CKEDITOR.tools.rtrim( lastChild.getText() ) )
\r
243 lastChild = lastChild.getPrevious();
\r
244 if ( !lastChild || !lastChild.is || !lastChild.is( 'br' ) )
\r
246 var bogus = CKEDITOR.env.opera ?
\r
247 this.getDocument().createText('') :
\r
248 this.getDocument().createElement( 'br' );
\r
250 CKEDITOR.env.gecko && bogus.setAttribute( 'type', '_moz' );
\r
252 this.append( bogus );
\r
257 * Breaks one of the ancestor element in the element position, moving
\r
258 * this element between the broken parts.
\r
259 * @param {CKEDITOR.dom.element} parent The anscestor element to get broken.
\r
261 * // Before breaking:
\r
262 * // <b>This <i>is some<span /> sample</i> test text</b>
\r
263 * // If "element" is <span /> and "parent" is <i>:
\r
264 * // <b>This <i>is some</i><span /><i> sample</i> test text</b>
\r
265 * element.breakParent( parent );
\r
267 * // Before breaking:
\r
268 * // <b>This <i>is some<span /> sample</i> test text</b>
\r
269 * // If "element" is <span /> and "parent" is <b>:
\r
270 * // <b>This <i>is some</i></b><span /><b><i> sample</i> test text</b>
\r
271 * element.breakParent( parent );
\r
273 breakParent : function( parent )
\r
275 var range = new CKEDITOR.dom.range( this.getDocument() );
\r
277 // We'll be extracting part of this element, so let's use our
\r
278 // range to get the correct piece.
\r
279 range.setStartAfter( this );
\r
280 range.setEndAfter( parent );
\r
283 var docFrag = range.extractContents();
\r
285 // Move the element outside the broken element.
\r
286 range.insertNode( this.remove() );
\r
288 // Re-insert the extracted piece after the element.
\r
289 docFrag.insertAfterNode( this );
\r
293 CKEDITOR.env.ie || CKEDITOR.env.webkit ?
\r
298 return node.type != CKEDITOR.NODE_ELEMENT ?
\r
299 $.contains( node.getParent().$ ) :
\r
300 $ != node.$ && $.contains( node.$ );
\r
305 return !!( this.$.compareDocumentPosition( node.$ ) & 16 );
\r
309 * Moves the selection focus to this element.
\r
311 * var element = CKEDITOR.document.getById( 'myTextarea' );
\r
312 * <b>element.focus()</b>;
\r
316 // IE throws error if the element is not visible.
\r
326 * Gets the inner HTML of this element.
\r
327 * @returns {String} The inner HTML of this element.
\r
329 * var element = CKEDITOR.dom.element.createFromHtml( '<div><b>Example</b></div>' );
\r
330 * alert( <b>p.getHtml()</b> ); // "<b>Example</b>"
\r
332 getHtml : function()
\r
334 var retval = this.$.innerHTML;
\r
335 // Strip <?xml:namespace> tags in IE. (#3341).
\r
336 return CKEDITOR.env.ie ? retval.replace( /<\?[^>]*>/g, '' ) : retval;
\r
339 getOuterHtml : function()
\r
341 if ( this.$.outerHTML )
\r
343 // IE includes the <?xml:namespace> tag in the outerHTML of
\r
344 // namespaced element. So, we must strip it here. (#3341)
\r
345 return this.$.outerHTML.replace( /<\?[^>]*>/, '' );
\r
348 var tmpDiv = this.$.ownerDocument.createElement( 'div' );
\r
349 tmpDiv.appendChild( this.$.cloneNode( true ) );
\r
350 return tmpDiv.innerHTML;
\r
354 * Sets the inner HTML of this element.
\r
355 * @param {String} html The HTML to be set for this element.
\r
356 * @returns {String} The inserted HTML.
\r
358 * var p = new CKEDITOR.dom.element( 'p' );
\r
359 * <b>p.setHtml( '<b>Inner</b> HTML' );</b>
\r
361 * // result: "<p><b>Inner</b> HTML</p>"
\r
363 setHtml : function( html )
\r
365 return ( this.$.innerHTML = html );
\r
369 * Sets the element contents as plain text.
\r
370 * @param {String} text The text to be set.
\r
371 * @returns {String} The inserted text.
\r
373 * var element = new CKEDITOR.dom.element( 'div' );
\r
374 * element.setText( 'A > B & C < D' );
\r
375 * alert( element.innerHTML ); // "A &gt; B &amp; C &lt; D"
\r
377 setText : function( text )
\r
379 CKEDITOR.dom.element.prototype.setText = ( this.$.innerText != undefined ) ?
\r
382 return this.$.innerText = text;
\r
386 return this.$.textContent = text;
\r
389 return this.setText( text );
\r
393 * Gets the value of an element attribute.
\r
395 * @param {String} name The attribute name.
\r
396 * @returns {String} The attribute value or null if not defined.
\r
398 * var element = CKEDITOR.dom.element.createFromHtml( '<input type="text" />' );
\r
399 * alert( <b>element.getAttribute( 'type' )</b> ); // "text"
\r
401 getAttribute : (function()
\r
403 var standard = function( name )
\r
405 return this.$.getAttribute( name, 2 );
\r
408 if ( CKEDITOR.env.ie && ( CKEDITOR.env.ie7Compat || CKEDITOR.env.ie6Compat ) )
\r
410 return function( name )
\r
415 name = 'className';
\r
419 var tabIndex = standard.call( this, name );
\r
421 // IE returns tabIndex=0 by default for all
\r
422 // elements. For those elements,
\r
423 // getAtrribute( 'tabindex', 2 ) returns 32768
\r
424 // instead. So, we must make this check to give a
\r
425 // uniform result among all browsers.
\r
426 if ( tabIndex !== 0 && this.$.tabIndex === 0 )
\r
434 var attr = this.$.attributes.getNamedItem( name ),
\r
435 attrValue = attr.specified ? attr.nodeValue // For value given by parser.
\r
436 : this.$.checked; // For value created via DOM interface.
\r
438 return attrValue ? 'checked' : null;
\r
442 return this.$.hspace;
\r
445 // IE does not return inline styles via getAttribute(). See #2947.
\r
446 return this.$.style.cssText;
\r
449 return standard.call( this, name );
\r
456 getChildren : function()
\r
458 return new CKEDITOR.dom.nodeList( this.$.childNodes );
\r
462 * Gets the current computed value of one of the element CSS style
\r
465 * @param {String} propertyName The style property name.
\r
466 * @returns {String} The property value.
\r
468 * var element = new CKEDITOR.dom.element( 'span' );
\r
469 * alert( <b>element.getComputedStyle( 'display' )</b> ); // "inline"
\r
473 function( propertyName )
\r
475 return this.$.currentStyle[ CKEDITOR.tools.cssStyleToDomStyle( propertyName ) ];
\r
478 function( propertyName )
\r
480 return this.getWindow().$.getComputedStyle( this.$, '' ).getPropertyValue( propertyName );
\r
484 * Gets the DTD entries for this element.
\r
485 * @returns {Object} An object containing the list of elements accepted
\r
488 getDtd : function()
\r
490 var dtd = CKEDITOR.dtd[ this.getName() ];
\r
492 this.getDtd = function()
\r
500 getElementsByTag : CKEDITOR.dom.document.prototype.getElementsByTag,
\r
503 * Gets the computed tabindex for this element.
\r
505 * @returns {Number} The tabindex value.
\r
507 * var element = CKEDITOR.document.getById( 'myDiv' );
\r
508 * alert( <b>element.getTabIndex()</b> ); // e.g. "-1"
\r
514 var tabIndex = this.$.tabIndex;
\r
516 // IE returns tabIndex=0 by default for all elements. In
\r
517 // those cases we must check that the element really has
\r
518 // the tabindex attribute set to zero, or it is one of
\r
519 // those element that should have zero by default.
\r
520 if ( tabIndex === 0 && !CKEDITOR.dtd.$tabIndex[ this.getName() ] && parseInt( this.getAttribute( 'tabindex' ), 10 ) !== 0 )
\r
525 : CKEDITOR.env.webkit ?
\r
528 var tabIndex = this.$.tabIndex;
\r
530 // Safari returns "undefined" for elements that should not
\r
531 // have tabindex (like a div). So, we must try to get it
\r
532 // from the attribute.
\r
533 // https://bugs.webkit.org/show_bug.cgi?id=20596
\r
534 if ( tabIndex == undefined )
\r
536 tabIndex = parseInt( this.getAttribute( 'tabindex' ), 10 );
\r
538 // If the element don't have the tabindex attribute,
\r
539 // then we should return -1.
\r
540 if ( isNaN( tabIndex ) )
\r
549 return this.$.tabIndex;
\r
553 * Gets the text value of this element.
\r
555 * Only in IE (which uses innerText), <br> will cause linebreaks,
\r
556 * and sucessive whitespaces (including line breaks) will be reduced to
\r
557 * a single space. This behavior is ok for us, for now. It may change
\r
559 * @returns {String} The text value.
\r
561 * var element = CKEDITOR.dom.element.createFromHtml( '<div>Same <i>text</i>.</div>' );
\r
562 * alert( <b>element.getText()</b> ); // "Sample text."
\r
564 getText : function()
\r
566 return this.$.textContent || this.$.innerText || '';
\r
570 * Gets the window object that contains this element.
\r
571 * @returns {CKEDITOR.dom.window} The window object.
\r
574 getWindow : function()
\r
576 return this.getDocument().getWindow();
\r
580 * Gets the value of the "id" attribute of this element.
\r
581 * @returns {String} The element id, or null if not available.
\r
583 * var element = CKEDITOR.dom.element.createFromHtml( '<p id="myId"></p>' );
\r
584 * alert( <b>element.getId()</b> ); // "myId"
\r
588 return this.$.id || null;
\r
592 * Gets the value of the "name" attribute of this element.
\r
593 * @returns {String} The element name, or null if not available.
\r
595 * var element = CKEDITOR.dom.element.createFromHtml( '<input name="myName"></input>' );
\r
596 * alert( <b>element.getNameAtt()</b> ); // "myName"
\r
598 getNameAtt : function()
\r
600 return this.$.name || null;
\r
604 * Gets the element name (tag name). The returned name is guaranteed to
\r
605 * be always full lowercased.
\r
606 * @returns {String} The element name.
\r
608 * var element = new CKEDITOR.dom.element( 'span' );
\r
609 * alert( <b>element.getName()</b> ); // "span"
\r
611 getName : function()
\r
613 // Cache the lowercased name inside a closure.
\r
614 var nodeName = this.$.nodeName.toLowerCase();
\r
616 if ( CKEDITOR.env.ie )
\r
618 var scopeName = this.$.scopeName;
\r
619 if ( scopeName != 'HTML' )
\r
620 nodeName = scopeName.toLowerCase() + ':' + nodeName;
\r
624 this.getName = function()
\r
631 * Gets the value set to this element. This value is usually available
\r
632 * for form field elements.
\r
633 * @returns {String} The element value.
\r
635 getValue : function()
\r
637 return this.$.value;
\r
641 * Gets the first child node of this element.
\r
642 * @param {Function} evaluator Filtering the result node.
\r
643 * @returns {CKEDITOR.dom.node} The first child node or null if not
\r
646 * var element = CKEDITOR.dom.element.createFromHtml( '<div><b>Example</b></div>' );
\r
647 * var first = <b>element.getFirst()</b>;
\r
648 * alert( first.getName() ); // "b"
\r
650 getFirst : function( evaluator )
\r
652 var first = this.$.firstChild,
\r
653 retval = first && new CKEDITOR.dom.node( first );
\r
654 if ( retval && evaluator && !evaluator( retval ) )
\r
655 retval = retval.getNext( evaluator );
\r
661 * @param {Function} evaluator Filtering the result node.
\r
663 getLast : function( evaluator )
\r
665 var last = this.$.lastChild,
\r
666 retval = last && new CKEDITOR.dom.node( last );
\r
667 if ( retval && evaluator && !evaluator( retval ) )
\r
668 retval = retval.getPrevious( evaluator );
\r
673 getStyle : function( name )
\r
675 return this.$.style[ CKEDITOR.tools.cssStyleToDomStyle( name ) ];
\r
679 * Checks if the element name matches one or more names.
\r
680 * @param {String} name[,name[,...]] One or more names to be checked.
\r
681 * @returns {Boolean} true if the element name matches any of the names.
\r
683 * var element = new CKEDITOR.element( 'span' );
\r
684 * alert( <b>element.is( 'span' )</b> ); "true"
\r
685 * alert( <b>element.is( 'p', 'span' )</b> ); "true"
\r
686 * alert( <b>element.is( 'p' )</b> ); "false"
\r
687 * alert( <b>element.is( 'p', 'div' )</b> ); "false"
\r
691 var name = this.getName();
\r
692 for ( var i = 0 ; i < arguments.length ; i++ )
\r
694 if ( arguments[ i ] == name )
\r
700 isEditable : function()
\r
702 // Get the element name.
\r
703 var name = this.getName();
\r
705 // Get the element DTD (defaults to span for unknown elements).
\r
706 var dtd = !CKEDITOR.dtd.$nonEditable[ name ]
\r
707 && ( CKEDITOR.dtd[ name ] || CKEDITOR.dtd.span );
\r
709 // In the DTD # == text node.
\r
710 return ( dtd && dtd['#'] );
\r
713 isIdentical : function( otherElement )
\r
715 if ( this.getName() != otherElement.getName() )
\r
718 var thisAttribs = this.$.attributes,
\r
719 otherAttribs = otherElement.$.attributes;
\r
721 var thisLength = thisAttribs.length,
\r
722 otherLength = otherAttribs.length;
\r
724 if ( !CKEDITOR.env.ie && thisLength != otherLength )
\r
727 for ( var i = 0 ; i < thisLength ; i++ )
\r
729 var attribute = thisAttribs[ i ];
\r
731 if ( ( !CKEDITOR.env.ie || ( attribute.specified && attribute.nodeName != '_cke_expando' ) ) && attribute.nodeValue != otherElement.getAttribute( attribute.nodeName ) )
\r
735 // For IE, we have to for both elements, because it's difficult to
\r
736 // know how the atttibutes collection is organized in its DOM.
\r
737 if ( CKEDITOR.env.ie )
\r
739 for ( i = 0 ; i < otherLength ; i++ )
\r
741 attribute = otherAttribs[ i ];
\r
742 if ( attribute.specified && attribute.nodeName != '_cke_expando'
\r
743 && attribute.nodeValue != this.getAttribute( attribute.nodeName ) )
\r
752 * Checks if this element is visible. May not work if the element is
\r
753 * child of an element with visibility set to "hidden", but works well
\r
754 * on the great majority of cases.
\r
755 * @return {Boolean} True if the element is visible.
\r
757 isVisible : function()
\r
759 var isVisible = !!this.$.offsetHeight && this.getComputedStyle( 'visibility' ) != 'hidden',
\r
761 elementWindowFrame;
\r
763 // Webkit and Opera report non-zero offsetHeight despite that
\r
764 // element is inside an invisible iframe. (#4542)
\r
765 if ( isVisible && ( CKEDITOR.env.webkit || CKEDITOR.env.opera ) )
\r
767 elementWindow = this.getWindow();
\r
769 if ( !elementWindow.equals( CKEDITOR.document.getWindow() )
\r
770 && ( elementWindowFrame = elementWindow.$.frameElement ) )
\r
772 isVisible = new CKEDITOR.dom.element( elementWindowFrame ).isVisible();
\r
780 * Indicates that the element has defined attributes.
\r
781 * @returns {Boolean} True if the element has attributes.
\r
783 * var element = CKEDITOR.dom.element.createFromHtml( '<div title="Test">Example</div>' );
\r
784 * alert( <b>element.hasAttributes()</b> ); "true"
\r
786 * var element = CKEDITOR.dom.element.createFromHtml( '<div>Example</div>' );
\r
787 * alert( <b>element.hasAttributes()</b> ); "false"
\r
790 CKEDITOR.env.ie && ( CKEDITOR.env.ie7Compat || CKEDITOR.env.ie6Compat ) ?
\r
793 var attributes = this.$.attributes;
\r
795 for ( var i = 0 ; i < attributes.length ; i++ )
\r
797 var attribute = attributes[i];
\r
799 switch ( attribute.nodeName )
\r
802 // IE has a strange bug. If calling removeAttribute('className'),
\r
803 // the attributes collection will still contain the "class"
\r
804 // attribute, which will be marked as "specified", even if the
\r
805 // outerHTML of the element is not displaying the class attribute.
\r
806 // Note : I was not able to reproduce it outside the editor,
\r
807 // but I've faced it while working on the TC of #1391.
\r
808 if ( this.getAttribute( 'class' ) )
\r
811 // Attributes to be ignored.
\r
812 case '_cke_expando' :
\r
818 if ( attribute.specified )
\r
828 var attributes = this.$.attributes;
\r
829 return ( attributes.length > 1 || ( attributes.length == 1 && attributes[0].nodeName != '_cke_expando' ) );
\r
833 * Indicates whether a specified attribute is defined for this element.
\r
834 * @returns {Boolean} True if the specified attribute is defined.
\r
835 * @param (String) name The attribute name.
\r
838 hasAttribute : function( name )
\r
840 var $attr = this.$.attributes.getNamedItem( name );
\r
841 return !!( $attr && $attr.specified );
\r
845 * Hides this element (display:none).
\r
847 * var element = CKEDITOR.dom.element.getById( 'myElement' );
\r
848 * <b>element.hide()</b>;
\r
852 this.setStyle( 'display', 'none' );
\r
855 moveChildren : function( target, toStart )
\r
867 while ( ( child = $.lastChild ) )
\r
868 target.insertBefore( $.removeChild( child ), target.firstChild );
\r
872 while ( ( child = $.firstChild ) )
\r
873 target.appendChild( $.removeChild( child ) );
\r
878 * Shows this element (display it).
\r
880 * var element = CKEDITOR.dom.element.getById( 'myElement' );
\r
881 * <b>element.show()</b>;
\r
893 * Sets the value of an element attribute.
\r
894 * @param {String} name The name of the attribute.
\r
895 * @param {String} value The value to be set to the attribute.
\r
897 * @returns {CKEDITOR.dom.element} This element instance.
\r
899 * var element = CKEDITOR.dom.element.getById( 'myElement' );
\r
900 * <b>element.setAttribute( 'class', 'myClass' )</b>;
\r
901 * <b>element.setAttribute( 'title', 'This is an example' )</b>;
\r
903 setAttribute : (function()
\r
905 var standard = function( name, value )
\r
907 this.$.setAttribute( name, value );
\r
911 if ( CKEDITOR.env.ie && ( CKEDITOR.env.ie7Compat || CKEDITOR.env.ie6Compat ) )
\r
913 return function( name, value )
\r
915 if ( name == 'class' )
\r
916 this.$.className = value;
\r
917 else if ( name == 'style' )
\r
918 this.$.style.cssText = value;
\r
919 else if ( name == 'tabindex' ) // Case sensitive.
\r
920 this.$.tabIndex = value;
\r
921 else if ( name == 'checked' )
\r
922 this.$.checked = value;
\r
924 standard.apply( this, arguments );
\r
933 * Sets the value of several element attributes.
\r
934 * @param {Object} attributesPairs An object containing the names and
\r
935 * values of the attributes.
\r
936 * @returns {CKEDITOR.dom.element} This element instance.
\r
938 * var element = CKEDITOR.dom.element.getById( 'myElement' );
\r
939 * <b>element.setAttributes({
\r
940 * 'class' : 'myClass',
\r
941 * 'title' : 'This is an example' })</b>;
\r
943 setAttributes : function( attributesPairs )
\r
945 for ( var name in attributesPairs )
\r
946 this.setAttribute( name, attributesPairs[ name ] );
\r
951 * Sets the element value. This function is usually used with form
\r
953 * @param {String} value The element value.
\r
954 * @returns {CKEDITOR.dom.element} This element instance.
\r
956 setValue : function( value )
\r
958 this.$.value = value;
\r
963 * Removes an attribute from the element.
\r
964 * @param {String} name The attribute name.
\r
967 * var element = CKEDITOR.dom.element.createFromHtml( '<div class="classA"></div>' );
\r
968 * element.removeAttribute( 'class' );
\r
970 removeAttribute : (function()
\r
972 var standard = function( name )
\r
974 this.$.removeAttribute( name );
\r
977 if ( CKEDITOR.env.ie && ( CKEDITOR.env.ie7Compat || CKEDITOR.env.ie6Compat ) )
\r
979 return function( name )
\r
981 if ( name == 'class' )
\r
982 name = 'className';
\r
983 else if ( name == 'tabindex' )
\r
985 standard.call( this, name );
\r
992 removeAttributes : function ( attributes )
\r
994 if ( CKEDITOR.tools.isArray( attributes ) )
\r
996 for ( var i = 0 ; i < attributes.length ; i++ )
\r
997 this.removeAttribute( attributes[ i ] );
\r
1001 for ( var attr in attributes )
\r
1002 attributes.hasOwnProperty( attr ) && this.removeAttribute( attr );
\r
1007 * Removes a style from the element.
\r
1008 * @param {String} name The style name.
\r
1011 * var element = CKEDITOR.dom.element.createFromHtml( '<div style="display:none"></div>' );
\r
1012 * element.removeStyle( 'display' );
\r
1014 removeStyle : function( name )
\r
1016 this.setStyle( name, '' );
\r
1017 if ( this.$.style.removeAttribute )
\r
1018 this.$.style.removeAttribute( CKEDITOR.tools.cssStyleToDomStyle( name ) );
\r
1020 if ( !this.$.style.cssText )
\r
1021 this.removeAttribute( 'style' );
\r
1025 * Sets the value of an element style.
\r
1026 * @param {String} name The name of the style. The CSS naming notation
\r
1027 * must be used (e.g. "background-color").
\r
1028 * @param {String} value The value to be set to the style.
\r
1029 * @returns {CKEDITOR.dom.element} This element instance.
\r
1031 * var element = CKEDITOR.dom.element.getById( 'myElement' );
\r
1032 * <b>element.setStyle( 'background-color', '#ff0000' )</b>;
\r
1033 * <b>element.setStyle( 'margin-top', '10px' )</b>;
\r
1034 * <b>element.setStyle( 'float', 'right' )</b>;
\r
1036 setStyle : function( name, value )
\r
1038 this.$.style[ CKEDITOR.tools.cssStyleToDomStyle( name ) ] = value;
\r
1043 * Sets the value of several element styles.
\r
1044 * @param {Object} stylesPairs An object containing the names and
\r
1045 * values of the styles.
\r
1046 * @returns {CKEDITOR.dom.element} This element instance.
\r
1048 * var element = CKEDITOR.dom.element.getById( 'myElement' );
\r
1049 * <b>element.setStyles({
\r
1050 * 'position' : 'absolute',
\r
1051 * 'float' : 'right' })</b>;
\r
1053 setStyles : function( stylesPairs )
\r
1055 for ( var name in stylesPairs )
\r
1056 this.setStyle( name, stylesPairs[ name ] );
\r
1061 * Sets the opacity of an element.
\r
1062 * @param {Number} opacity A number within the range [0.0, 1.0].
\r
1064 * var element = CKEDITOR.dom.element.getById( 'myElement' );
\r
1065 * <b>element.setOpacity( 0.75 )</b>;
\r
1067 setOpacity : function( opacity )
\r
1069 if ( CKEDITOR.env.ie )
\r
1071 opacity = Math.round( opacity * 100 );
\r
1072 this.setStyle( 'filter', opacity >= 100 ? '' : 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + opacity + ')' );
\r
1075 this.setStyle( 'opacity', opacity );
\r
1079 * Makes the element and its children unselectable.
\r
1082 * var element = CKEDITOR.dom.element.getById( 'myElement' );
\r
1083 * element.unselectable();
\r
1086 CKEDITOR.env.gecko ?
\r
1089 this.$.style.MozUserSelect = 'none';
\r
1091 : CKEDITOR.env.webkit ?
\r
1094 this.$.style.KhtmlUserSelect = 'none';
\r
1099 if ( CKEDITOR.env.ie || CKEDITOR.env.opera )
\r
1101 var element = this.$,
\r
1105 element.unselectable = 'on';
\r
1107 while ( ( e = element.all[ i++ ] ) )
\r
1109 switch ( e.tagName.toLowerCase() )
\r
1115 /* Ignore the above tags */
\r
1118 e.unselectable = 'on';
\r
1124 getPositionedAncestor : function()
\r
1126 var current = this;
\r
1127 while ( current.getName() != 'html' )
\r
1129 if ( current.getComputedStyle( 'position' ) != 'static' )
\r
1132 current = current.getParent();
\r
1137 getDocumentPosition : function( refDocument )
\r
1140 body = this.getDocument().getBody(),
\r
1141 quirks = this.getDocument().$.compatMode == 'BackCompat';
\r
1143 var doc = this.getDocument();
\r
1145 if ( document.documentElement[ "getBoundingClientRect" ] )
\r
1147 var box = this.$.getBoundingClientRect(),
\r
1149 $docElem = $doc.documentElement;
\r
1151 var clientTop = $docElem.clientTop || body.$.clientTop || 0,
\r
1152 clientLeft = $docElem.clientLeft || body.$.clientLeft || 0,
\r
1153 needAdjustScrollAndBorders = true;
\r
1156 * #3804: getBoundingClientRect() works differently on IE and non-IE
\r
1157 * browsers, regarding scroll positions.
\r
1159 * On IE, the top position of the <html> element is always 0, no matter
\r
1160 * how much you scrolled down.
\r
1162 * On other browsers, the top position of the <html> element is negative
\r
1165 if ( CKEDITOR.env.ie )
\r
1167 var inDocElem = doc.getDocumentElement().contains( this ),
\r
1168 inBody = doc.getBody().contains( this );
\r
1170 needAdjustScrollAndBorders = ( quirks && inBody ) || ( !quirks && inDocElem );
\r
1173 if ( needAdjustScrollAndBorders )
\r
1175 x = box.left + ( !quirks && $docElem.scrollLeft || body.$.scrollLeft );
\r
1177 y = box.top + ( !quirks && $docElem.scrollTop || body.$.scrollTop );
\r
1183 var current = this, previous = null, offsetParent;
\r
1184 while ( current && !( current.getName() == 'body' || current.getName() == 'html' ) )
\r
1186 x += current.$.offsetLeft - current.$.scrollLeft;
\r
1187 y += current.$.offsetTop - current.$.scrollTop;
\r
1189 // Opera includes clientTop|Left into offsetTop|Left.
\r
1190 if ( !current.equals( this ) )
\r
1192 x += ( current.$.clientLeft || 0 );
\r
1193 y += ( current.$.clientTop || 0 );
\r
1196 var scrollElement = previous;
\r
1197 while ( scrollElement && !scrollElement.equals( current ) )
\r
1199 x -= scrollElement.$.scrollLeft;
\r
1200 y -= scrollElement.$.scrollTop;
\r
1201 scrollElement = scrollElement.getParent();
\r
1204 previous = current;
\r
1205 current = ( offsetParent = current.$.offsetParent ) ?
\r
1206 new CKEDITOR.dom.element( offsetParent ) : null;
\r
1210 if ( refDocument )
\r
1212 var currentWindow = this.getWindow(),
\r
1213 refWindow = refDocument.getWindow();
\r
1215 if ( !currentWindow.equals( refWindow ) && currentWindow.$.frameElement )
\r
1217 var iframePosition = ( new CKEDITOR.dom.element( currentWindow.$.frameElement ) ).getDocumentPosition( refDocument );
\r
1219 x += iframePosition.x;
\r
1220 y += iframePosition.y;
\r
1224 if ( !document.documentElement[ "getBoundingClientRect" ] )
\r
1226 // In Firefox, we'll endup one pixel before the element positions,
\r
1227 // so we must add it here.
\r
1228 if ( CKEDITOR.env.gecko && !quirks )
\r
1230 x += this.$.clientLeft ? 1 : 0;
\r
1231 y += this.$.clientTop ? 1 : 0;
\r
1235 return { x : x, y : y };
\r
1238 scrollIntoView : function( alignTop )
\r
1240 // Get the element window.
\r
1241 var win = this.getWindow(),
\r
1242 winHeight = win.getViewPaneSize().height;
\r
1244 // Starts from the offset that will be scrolled with the negative value of
\r
1245 // the visible window height.
\r
1246 var offset = winHeight * -1;
\r
1248 // Append the view pane's height if align to top.
\r
1249 // Append element height if we are aligning to the bottom.
\r
1251 offset += winHeight;
\r
1254 offset += this.$.offsetHeight || 0;
\r
1256 // Consider the margin in the scroll, which is ok for our current needs, but
\r
1257 // needs investigation if we will be using this function in other places.
\r
1258 offset += parseInt( this.getComputedStyle( 'marginBottom' ) || 0, 10 ) || 0;
\r
1261 // Append the offsets for the entire element hierarchy.
\r
1262 var elementPosition = this.getDocumentPosition();
\r
1263 offset += elementPosition.y;
\r
1265 // offset value might be out of range(nagative), fix it(#3692).
\r
1266 offset = offset < 0 ? 0 : offset;
\r
1268 // Scroll the window to the desired position, if not already visible(#3795).
\r
1269 var currentScroll = win.getScrollPosition().y;
\r
1270 if ( offset > currentScroll || offset < currentScroll - winHeight )
\r
1271 win.$.scrollTo( 0, offset );
\r
1274 setState : function( state )
\r
1278 case CKEDITOR.TRISTATE_ON :
\r
1279 this.addClass( 'cke_on' );
\r
1280 this.removeClass( 'cke_off' );
\r
1281 this.removeClass( 'cke_disabled' );
\r
1283 case CKEDITOR.TRISTATE_DISABLED :
\r
1284 this.addClass( 'cke_disabled' );
\r
1285 this.removeClass( 'cke_off' );
\r
1286 this.removeClass( 'cke_on' );
\r
1289 this.addClass( 'cke_off' );
\r
1290 this.removeClass( 'cke_on' );
\r
1291 this.removeClass( 'cke_disabled' );
\r
1297 * Returns the inner document of this IFRAME element.
\r
1298 * @returns {CKEDITOR.dom.document} The inner document.
\r
1300 getFrameDocument : function()
\r
1306 // In IE, with custom document.domain, it may happen that
\r
1307 // the iframe is not yet available, resulting in "Access
\r
1308 // Denied" for the following property access.
\r
1309 $.contentWindow.document;
\r
1313 // Trick to solve this issue, forcing the iframe to get ready
\r
1314 // by simply setting its "src" property.
\r
1317 // In IE6 though, the above is not enough, so we must pause the
\r
1318 // execution for a while, giving it time to think.
\r
1319 if ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 )
\r
1321 window.showModalDialog(
\r
1322 'javascript:document.write("' +
\r
1324 'window.setTimeout(' +
\r
1325 'function(){window.close();}' +
\r
1331 return $ && new CKEDITOR.dom.document( $.contentWindow.document );
\r
1335 * Copy all the attributes from one node to the other, kinda like a clone
\r
1336 * skipAttributes is an object with the attributes that must NOT be copied.
\r
1337 * @param {CKEDITOR.dom.element} dest The destination element.
\r
1338 * @param {Object} skipAttributes A dictionary of attributes to skip.
\r
1341 copyAttributes : function( dest, skipAttributes )
\r
1343 var attributes = this.$.attributes;
\r
1344 skipAttributes = skipAttributes || {};
\r
1346 for ( var n = 0 ; n < attributes.length ; n++ )
\r
1348 var attribute = attributes[n];
\r
1350 // Lowercase attribute name hard rule is broken for
\r
1351 // some attribute on IE, e.g. CHECKED.
\r
1352 var attrName = attribute.nodeName.toLowerCase(),
\r
1355 // We can set the type only once, so do it with the proper value, not copying it.
\r
1356 if ( attrName in skipAttributes )
\r
1359 if ( attrName == 'checked' && ( attrValue = this.getAttribute( attrName ) ) )
\r
1360 dest.setAttribute( attrName, attrValue );
\r
1361 // IE BUG: value attribute is never specified even if it exists.
\r
1362 else if ( attribute.specified ||
\r
1363 ( CKEDITOR.env.ie && attribute.nodeValue && attrName == 'value' ) )
\r
1365 attrValue = this.getAttribute( attrName );
\r
1366 if ( attrValue === null )
\r
1367 attrValue = attribute.nodeValue;
\r
1369 dest.setAttribute( attrName, attrValue );
\r
1374 if ( this.$.style.cssText !== '' )
\r
1375 dest.$.style.cssText = this.$.style.cssText;
\r
1379 * Changes the tag name of the current element.
\r
1380 * @param {String} newTag The new tag for the element.
\r
1382 renameNode : function( newTag )
\r
1384 // If it's already correct exit here.
\r
1385 if ( this.getName() == newTag )
\r
1388 var doc = this.getDocument();
\r
1390 // Create the new node.
\r
1391 var newNode = new CKEDITOR.dom.element( newTag, doc );
\r
1393 // Copy all attributes.
\r
1394 this.copyAttributes( newNode );
\r
1396 // Move children to the new node.
\r
1397 this.moveChildren( newNode );
\r
1399 // Replace the node.
\r
1400 this.$.parentNode.replaceChild( newNode.$, this.$ );
\r
1401 newNode.$._cke_expando = this.$._cke_expando;
\r
1402 this.$ = newNode.$;
\r
1406 * Gets a DOM tree descendant under the current node.
\r
1407 * @param {Array|Number} indices The child index or array of child indices under the node.
\r
1408 * @returns {CKEDITOR.dom.node} The specified DOM child under the current node. Null if child does not exist.
\r
1410 * var strong = p.getChild(0);
\r
1412 getChild : function( indices )
\r
1414 var rawNode = this.$;
\r
1416 if ( !indices.slice )
\r
1417 rawNode = rawNode.childNodes[ indices ];
\r
1420 while ( indices.length > 0 && rawNode )
\r
1421 rawNode = rawNode.childNodes[ indices.shift() ];
\r
1424 return rawNode ? new CKEDITOR.dom.node( rawNode ) : null;
\r
1427 getChildCount : function()
\r
1429 return this.$.childNodes.length;
\r
1432 disableContextMenu : function()
\r
1434 this.on( 'contextmenu', function( event )
\r
1436 // Cancel the browser context menu.
\r
1437 if ( !event.data.getTarget().hasClass( 'cke_enable_context_menu' ) )
\r
1438 event.data.preventDefault();
\r