[webkit-changes] cvs commit: WebCore/khtml/ecma kjs_window.cpp
Andre
aboule at opensource.apple.com
Fri Dec 2 12:58:03 PST 2005
aboule 05/12/02 12:58:03
Modified: . ChangeLog
khtml/ecma kjs_window.cpp
Log:
Reviewed by rjw.
Added #else for XSLT ifdef to make sure switch case
doesn't fall through when feature turned off.
* khtml/ecma/kjs_window.cpp:
(KJS::Window::getValueProperty):
Revision Changes Path
1.453 +10 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.452
retrieving revision 1.453
diff -u -r1.452 -r1.453
--- ChangeLog 2 Dec 2005 20:23:35 -0000 1.452
+++ ChangeLog 2 Dec 2005 20:57:57 -0000 1.453
@@ -1,3 +1,13 @@
+2005-12-02 Andre Boule <aboule at apple.com>
+
+ Reviewed by rjw.
+
+ Added #else for XSLT ifdef to make sure switch case
+ doesn't fall through when feature turned off.
+
+ * khtml/ecma/kjs_window.cpp:
+ (KJS::Window::getValueProperty):
+
2005-12-02 David Hyatt <hyatt at apple.com>
Fix for overflow clipping bug when a positioned element is
1.192 +3 -0 WebCore/khtml/ecma/kjs_window.cpp
Index: kjs_window.cpp
===================================================================
RCS file: /cvs/root/WebCore/khtml/ecma/kjs_window.cpp,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- kjs_window.cpp 1 Dec 2005 10:32:10 -0000 1.191
+++ kjs_window.cpp 2 Dec 2005 20:58:02 -0000 1.192
@@ -842,6 +842,9 @@
#ifdef KHTML_XSLT
case XSLTProcessor:
return new XSLTProcessorConstructorImp(exec);
+#else
+ case XSLTProcessor:
+ return Undefined();
#endif
case FrameElement:
if (DocumentImpl *doc = m_part->xmlDocImpl())
More information about the webkit-changes
mailing list