summaryrefslogtreecommitdiffstats
path: root/opensuse/core/tdelibs/google-mail.diff
diff options
context:
space:
mode:
authorRobert Xu <robxu9@gmail.com>2011-11-10 18:04:39 -0500
committerRobert Xu <robxu9@gmail.com>2011-11-10 18:04:39 -0500
commit21fcfa3348213aa87f0e3aef62ca4720c6d31cb7 (patch)
tree2cfb64c59322628e613ed0895e3c3694d3abe6bd /opensuse/core/tdelibs/google-mail.diff
parent8667643bff14a60d8571c599efd3e48bed3e3b12 (diff)
downloadtde-packaging-21fcfa3348213aa87f0e3aef62ca4720c6d31cb7.tar.gz
tde-packaging-21fcfa3348213aa87f0e3aef62ca4720c6d31cb7.zip
initial commit to suse branch: eclipse integration
Diffstat (limited to 'opensuse/core/tdelibs/google-mail.diff')
-rw-r--r--opensuse/core/tdelibs/google-mail.diff18
1 files changed, 18 insertions, 0 deletions
diff --git a/opensuse/core/tdelibs/google-mail.diff b/opensuse/core/tdelibs/google-mail.diff
new file mode 100644
index 000000000..59b132529
--- /dev/null
+++ b/opensuse/core/tdelibs/google-mail.diff
@@ -0,0 +1,18 @@
+Index: khtml/html/html_elementimpl.cpp
+===================================================================
+--- khtml/html/html_elementimpl.cpp.orig
++++ khtml/html/html_elementimpl.cpp
+@@ -565,6 +565,13 @@ DocumentFragment HTMLElementImpl::create
+
+ void HTMLElementImpl::setInnerHTML( const DOMString &html, int &exceptioncode )
+ {
++ // Works line innerText in Gecko
++ // ### test if needed for ID_SCRIPT as well.
++ if ( id() == ID_STYLE ) {
++ setInnerText(html, exceptioncode);
++ return;
++ }
++
+ DocumentFragment fragment = createContextualFragment( html );
+ if ( fragment.isNull() ) {
+ exceptioncode = DOMException::NO_MODIFICATION_ALLOWED_ERR;