[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:09:14 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 17981f4a79f3d757b1b71a019aa24a8dfd848f1b
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 4 22:50:16 2003 +0000

            Reviewed by Ken.
    
            * khtml/ecma/kjs_window.cpp: Don't make event read-only, some
    	sites want to set their own top-level function named "event" and
    	will hang if they can't.
            * khtml/ecma/kjs_window.lut.h: Regenerated.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5384 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 747055c..660de9a 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-11-04  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Ken.
+
+        * khtml/ecma/kjs_window.cpp: Don't make event read-only, some
+	sites want to set their own top-level function named "event" and
+	will hang if they can't.
+        * khtml/ecma/kjs_window.lut.h: Regenerated.
+
 2003-11-03  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3472167, for shrink-to-fit style printing, grow the width of the initial containing block
diff --git a/WebCore/khtml/ecma/kjs_window.cpp b/WebCore/khtml/ecma/kjs_window.cpp
index f667d52..a7fc843 100644
--- a/WebCore/khtml/ecma/kjs_window.cpp
+++ b/WebCore/khtml/ecma/kjs_window.cpp
@@ -190,7 +190,7 @@ const ClassInfo Window::info = { "Window", 0, &WindowTable, 0 };
   CSSRule	Window::CSSRule		DontDelete
   frames	Window::Frames		DontDelete|ReadOnly
   history	Window::_History	DontDelete|ReadOnly
-  event		Window::Event		DontDelete|ReadOnly
+  event		Window::Event		DontDelete
   innerHeight	Window::InnerHeight	DontDelete|ReadOnly
   innerWidth	Window::InnerWidth	DontDelete|ReadOnly
   length	Window::Length		DontDelete|ReadOnly
diff --git a/WebCore/khtml/ecma/kjs_window.lut.h b/WebCore/khtml/ecma/kjs_window.lut.h
index ae5262f..9aefec9 100644
--- a/WebCore/khtml/ecma/kjs_window.lut.h
+++ b/WebCore/khtml/ecma/kjs_window.lut.h
@@ -34,7 +34,7 @@ const struct HashEntry WindowTableEntries[] = {
    { 0, 0, 0, 0, 0 },
    { "DOMException", Window::DOMException, DontDelete, 0, &WindowTableEntries[103] },
    { "closed", Window::Closed, DontDelete|ReadOnly, 0, &WindowTableEntries[96] },
-   { "event", Window::Event, DontDelete|ReadOnly, 0, &WindowTableEntries[108] },
+   { "event", Window::Event, DontDelete, 0, &WindowTableEntries[108] },
    { 0, 0, 0, 0, 0 },
    { "onload", Window::Onload, DontDelete, 0, 0 },
    { "frames", Window::Frames, DontDelete|ReadOnly, 0, 0 },

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list