From fe018c5b954001a6cfd88f892e9d199006ca4858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20Reinmar=20Koszuli=C5=84ski?= Date: Fri, 20 Sep 2013 12:23:13 +0200 Subject: [PATCH 1/2] Make img:hover style invalid for IE8 to avoid crashes. --- contents.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contents.css b/contents.css index b90aaa63e84..f5ac8c6ed47 100644 --- a/contents.css +++ b/contents.css @@ -89,7 +89,8 @@ img.left padding: 5px; } -img:hover +/* #10868: We use :not() selector to exclude IE8, which crashes on img:hover style. */ +:not(.ie8) img:hover { opacity: .9; filter: alpha(opacity = 90); From f15a9bf075091487ffd3c9d8c0495a5601e12f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20Reinmar=20Koszuli=C5=84ski?= Date: Mon, 30 Sep 2013 10:26:01 +0200 Subject: [PATCH 2/2] Changelog entry. --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index f503a598d80..85902ea2e50 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,7 @@ CKEditor 4 Changelog Fixed Issues: +* [#10868](http://dev.ckeditor.com/ticket/10868): Prevent from Internet Explorer 8 crashing when applying a cite style. * [#10915](http://dev.ckeditor.com/ticket/10915): CSS filter in Kama skin pull request. * [#10914](http://dev.ckeditor.com/ticket/10914): Plugins indentlist and indentblock included into building config. * [#10812](http://dev.ckeditor.com/ticket/10812): Fixed range#createBookmark2 incorrectly normalizing offsets. This bug was causing many issues: [#10850](http://dev.ckeditor.com/ticket/10850), [#10847](http://dev.ckeditor.com/ticket/10847), [#10842](http://dev.ckeditor.com/ticket/10842).