Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / src / core / test / unit / spec / dom / Element.insertion.js
index d7032ee..ab3deaa 100644 (file)
@@ -12,8 +12,8 @@ This file may be used under the terms of the GNU General Public License version
 If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
 
 */
-describe("Ext.core.Element.insertion", function() {
-    var proto = Ext.core.Element.prototype,
+describe("Ext.Element.insertion", function() {
+    var proto = Ext.Element.prototype,
         el, testEl,
         span, testSpanEl,
         child1, child2, child3;
@@ -33,8 +33,8 @@ describe("Ext.core.Element.insertion", function() {
             tag : 'span'
         });
         
-        el    = new Ext.core.Element(Ext.getDom(testEl));
-        span = new Ext.core.Element(Ext.getDom(testSpanEl));
+        el    = new Ext.Element(Ext.getDom(testEl));
+        span = new Ext.Element(Ext.getDom(testSpanEl));
         
         child1 = Ext.get('child1');
         child2 = Ext.get('child2');
@@ -143,7 +143,7 @@ describe("Ext.core.Element.insertion", function() {
             });
         });
         
-        describe("when Ext.core.Element", function() {
+        describe("when Ext.Element", function() {
             describe("after", function() {
                 it("should move the element next to the el", function() {
                     var nodes = Ext.getDom(el).childNodes;