SVN commit 852716 by orlovich: This is case insensitive... M +1 -1 kjs_html.cpp --- branches/KDE/4.1/kdelibs/khtml/ecma/kjs_html.cpp #852715:852716 @@ -461,7 +461,7 @@ return; } case DesignMode: - doc.setDesignMode((value->toString(exec).qstring()=="on")); + doc.setDesignMode((value->toString(exec).qstring().toLower()=="on")); return; }