<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.kde.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.6"
          urlbase="https://bugs.kde.org/"
          
          maintainer="sysadmin@kde.org"
>

    <bug>
          <bug_id>128944</bug_id>
          
          <creation_ts>2006-06-10 13:46:17 +0000</creation_ts>
          <short_desc>http://www.spiegel.de is not displayed properly by Konqueror</short_desc>
          <delta_ts>2006-07-03 23:06:49 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>2</classification_id>
          <classification>Applications</classification>
          <product>konqueror</product>
          <component>general</component>
          <version>unspecified</version>
          <rep_platform>Ubuntu</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>NOR</priority>
          <bug_severity>normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter name="Tobias Heinemann">theine</reporter>
          <assigned_to name="Konqueror Bugs">konqueror-bugs-null</assigned_to>
          <cc>matthaei</cc>
    
    <cc>michse</cc>
    
    <cc>sven.burmeister</cc>
          
          <cf_commitlink></cf_commitlink>
          <cf_versionfixedin></cf_versionfixedin>
          <cf_sentryurl></cf_sentryurl>
          <votes>20</votes>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>445575</commentid>
    <comment_count>0</comment_count>
    <who name="Tobias Heinemann">theine</who>
    <bug_when>2006-06-10 13:46:17 +0000</bug_when>
    <thetext>Version:            (using KDE KDE 3.5.3)
Installed from:    Ubuntu Packages
Compiler:          gcc 4.0.3 
OS:                Linux

Linked articles on http://www.spiegel.de (for instance http://www.spiegel.de/sport/fussball/0,1518,420592,00.html) are not displayed properly in in Konqueror 3.5.3. This does work in 3.5.2.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>445883</commentid>
    <comment_count>1</comment_count>
    <who name="Carsten Lohrke">carstenlohrke</who>
    <bug_when>2006-06-11 23:57:14 +0000</bug_when>
    <thetext>Can reproduce the issue. Only the flash advert is displayed. When I enable my filter rules, the advert gets filtered and I can see the article. So this bug seems to be related to bug 128566.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>445892</commentid>
    <comment_count>2</comment_count>
    <who name="Hp News">hp.news</who>
    <bug_when>2006-06-12 00:34:44 +0000</bug_when>
    <thetext>Hmm, are you sure it works with your KDE 3.5.2?

I&apos;ve got KDE 3.5.2 here (debian packages) and I can confirm this bug: Page is only displayed after filtering the advert.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>445895</commentid>
    <comment_count>3</comment_count>
    <who name="Tobias Heinemann">theine</who>
    <bug_when>2006-06-12 00:43:18 +0000</bug_when>
    <thetext>I was only told that it works under KDE 3.5.3 -- apparently by someone who has enabled AdBlocK filters.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>445896</commentid>
    <comment_count>4</comment_count>
    <who name="Tobias Heinemann">theine</who>
    <bug_when>2006-06-12 00:44:51 +0000</bug_when>
    <thetext>Obviously, I meant to write &quot;KDE 3.5.2&quot; in the above comment.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>446095</commentid>
    <comment_count>5</comment_count>
    <who name="Stefan Borggraefe">Stefan.Borggraefe</who>
    <bug_when>2006-06-12 22:09:25 +0000</bug_when>
    <thetext>*** Bug 129053 has been marked as a duplicate of this bug. ***</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>447447</commentid>
    <comment_count>6</comment_count>
    <who name="Tommi Tervo">tommi.tervo</who>
    <bug_when>2006-06-17 23:19:17 +0000</bug_when>
    <thetext>*** Bug 129335 has been marked as a duplicate of this bug. ***</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>447751</commentid>
    <comment_count>7</comment_count>
    <who name="Germain Garand">germain</who>
    <bug_when>2006-06-19 01:21:57 +0000</bug_when>
    <thetext>SVN commit 552743 by ggarand:

for the sake of all things sacred, stop eating Coolo&apos;s football news :(

BUG: 128944
3.5.3 regression




 M  +3 -2      htmltokenizer.cpp  


--- branches/KDE/3.5/kdelibs/khtml/html/htmltokenizer.cpp #552742:552743
@@ -388,9 +388,10 @@
 
     // Scripts following a frameset element should not be executed or even loaded in the case of extern scripts.
     bool followingFrameset = (parser-&gt;doc()-&gt;body() &amp;&amp; parser-&gt;doc()-&gt;body()-&gt;id() == ID_FRAMESET);
+    bool effectiveScript = !parser-&gt;skipMode() &amp;&amp; !followingFrameset;
     bool deferredScript = false;
 
-    if ( !parser-&gt;skipMode() &amp;&amp; !followingFrameset) {
+    if ( effectiveScript ) {
         CachedScript* cs = 0;
 
         // forget what we just got, load from src url instead
@@ -419,7 +420,7 @@
     script = false;
     scriptCodeSize = scriptCodeResync = 0;
 
-    if (parser-&gt;skipMode() || followingFrameset)
+    if ( !effectiveScript )
         return;
 
     if ( !m_executingScript &amp;&amp; cachedScript.isEmpty() ) {
</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>451443</commentid>
    <comment_count>8</comment_count>
    <who name="Tommi Tervo">tommi.tervo</who>
    <bug_when>2006-07-03 23:06:49 +0000</bug_when>
    <thetext>*** Bug 130223 has been marked as a duplicate of this bug. ***</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>