diff options
author | John Resig <jeresig@gmail.com> | 2007-07-08 16:33:23 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2007-07-08 16:33:23 +0000 |
commit | b83a6b7a323d63280fe325b06e1c38d26b5031a9 (patch) | |
tree | 26013431ac68bbdd621846056a5cc2aea059635d | |
parent | 6f0c9a5fd751d590be07e890758b8229e630413d (diff) | |
download | jquery-b83a6b7a323d63280fe325b06e1c38d26b5031a9.tar.gz jquery-b83a6b7a323d63280fe325b06e1c38d26b5031a9.zip |
.ownerDocument should be null on document.
-rw-r--r-- | build/runtest/env.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/runtest/env.js b/build/runtest/env.js index 23b413640..7a1352af1 100644 --- a/build/runtest/env.js +++ b/build/runtest/env.js @@ -106,7 +106,7 @@ var window = this; return makeNode( this._dom.getDocumentElement() ); }, get ownerDocument(){ - return this; + return null; }, addEventListener: function(){}, removeEventListener: function(){}, |